diff --git a/.env.example b/.env.example
new file mode 100644
index 0000000..e8922d7
--- /dev/null
+++ b/.env.example
@@ -0,0 +1,13 @@
+# connect to local Stoat instance
+VITE_API_URL=http://localhost:14702
+VITE_WS_URL=ws://localhost:14703
+VITE_MEDIA_URL=http://localhost:14704
+VITE_PROXY_URL=http://localhost:14705
+VITE_GIFBOX_URL=http://localhost:14706
+
+# specify hCaptcha sitekey
+VITE_HCAPTCHA_SITEKEY=
+
+# specify Sentry DSN
+VITE_SENTRY_DSN=
+VITE_SENTRY_TUNNEL=
diff --git a/.eslintrc.json b/.eslintrc.json
deleted file mode 100644
index 2d7aa60..0000000
--- a/.eslintrc.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "env": {
- "browser": true,
- "es6": true,
- "node": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:import/recommended",
- "plugin:import/electron",
- "plugin:import/typescript"
- ],
- "parser": "@typescript-eslint/parser"
-}
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 62df344..541a8f2 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -7,7 +7,7 @@ on:
jobs:
build:
name: Build App
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
steps:
- name: Checkout
@@ -16,13 +16,43 @@ jobs:
- name: Checkout assets
run: git -c submodule."assets".update=checkout submodule update --init assets
- - name: Setup Mise
- uses: immich-app/devtools/actions/use-mise@cd24790a7f5f6439ac32cc94f5523cb2de8bfa8c # use-mise-action-v1.1.0
+ - name: Install Linux system dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y \
+ libwebkit2gtk-4.1-dev \
+ build-essential \
+ curl \
+ wget \
+ file \
+ libxdo-dev \
+ libssl-dev \
+ libayatana-appindicator3-dev \
+ librsvg2-dev
+
+ - name: Install Rust stable
+ uses: dtolnay/rust-toolchain@stable
+
+ - name: Rust cache
+ uses: swatinem/rust-cache@v2
with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
+ workspaces: src-tauri
+
+ - name: Install pnpm
+ uses: pnpm/action-setup@v4
+ with:
+ run_install: false
+
+ - name: Install Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: 22
+ cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
- run: pnpm run package
+ run: pnpm tauri build
+ env:
+ VITE_API_URL: ${{ secrets.VITE_API_URL }}
diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml
index 8ae9db7..bc60061 100644
--- a/.github/workflows/release-please.yml
+++ b/.github/workflows/release-please.yml
@@ -20,6 +20,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.rp.outputs.release_created }}
+ tag_name: ${{ steps.rp.outputs.tag_name }}
steps:
- id: rp
uses: googleapis/release-please-action@v4
@@ -31,14 +32,25 @@ jobs:
name: Publish App
needs: release-please
if: needs.release-please.outputs.release_created == 'true'
- runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.settings.os }}
permissions:
contents: write
strategy:
+ fail-fast: false
matrix:
- os: [ubuntu-latest, windows-latest, macos-latest]
+ settings:
+ - os: ubuntu-22.04
+ target: x86_64-unknown-linux-gnu
+ - os: ubuntu-22.04
+ target: aarch64-unknown-linux-gnu
+ - os: windows-latest
+ target: x86_64-pc-windows-msvc
+ - os: macos-latest
+ target: x86_64-apple-darwin
+ - os: macos-latest
+ target: aarch64-apple-darwin
steps:
- name: Checkout
@@ -47,6 +59,39 @@ jobs:
- name: Checkout assets
run: git -c submodule."assets".update=checkout submodule update --init assets
+ - name: Install Linux system dependencies
+ if: matrix.settings.os == 'ubuntu-22.04'
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y \
+ libwebkit2gtk-4.1-dev \
+ build-essential \
+ curl \
+ wget \
+ file \
+ libxdo-dev \
+ libssl-dev \
+ libayatana-appindicator3-dev \
+ librsvg2-dev
+
+ - name: Install aarch64 cross-compilation tools
+ if: matrix.settings.target == 'aarch64-unknown-linux-gnu'
+ run: |
+ sudo apt-get install -y \
+ gcc-aarch64-linux-gnu \
+ libwebkit2gtk-4.1-dev:arm64
+
+ - name: Install Rust stable
+ uses: dtolnay/rust-toolchain@stable
+ with:
+ targets: ${{ matrix.settings.target }}
+
+ - name: Rust cache
+ uses: swatinem/rust-cache@v2
+ with:
+ workspaces: src-tauri
+ key: ${{ matrix.settings.target }}
+
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
@@ -61,26 +106,15 @@ jobs:
- name: Install dependencies
run: pnpm install
- - name: Publish
- run: |
- pnpm run publish
+ - name: Build and publish Tauri app
+ uses: tauri-apps/tauri-action@v0
env:
- PLATFORM: ${{ matrix.os }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- VITE_API_URL: ${{ secrets.VITE_API_URL }}
-
- - name: Publish macOS x64
- if: matrix.os == 'macos-latest'
- run: pnpm run publish --arch=x64
- env:
- PLATFORM: ${{ matrix.os }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- VITE_API_URL: ${{ secrets.VITE_API_URL }}
-
- - name: Publish Linux arm64
- if: matrix.os == 'ubuntu-latest'
- run: pnpm run publish --arch=arm64
- env:
- PLATFORM: ${{ matrix.os }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VITE_API_URL: ${{ secrets.VITE_API_URL }}
+ with:
+ tagName: ${{ needs.release-please.outputs.tag_name }}
+ releaseName: ${{ needs.release-please.outputs.tag_name }}
+ releaseBody: ""
+ releaseDraft: false
+ prerelease: false
+ args: --target ${{ matrix.settings.target }}
diff --git a/.github/workflows/release-webhook.yml b/.github/workflows/release-webhook.yml
deleted file mode 100644
index 46504b1..0000000
--- a/.github/workflows/release-webhook.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: Release Webhook
-
-on:
- workflow_dispatch:
- release:
- types: [published]
-
-jobs:
- release-webhook:
- name: Send Release Webhook
- runs-on: ubuntu-latest
-
- steps:
- - name: Send release notification webhook
- env:
- TAG_NAME: ${{ github.event.release.tag_name }}
- REPOSITORY: ${{ github.repository }}
- WEBHOOK_URL: ${{ secrets.STOAT_WEBHOOK_UPDATES_URL }}
- run: |
- RELEASE_URL="https://github.com/${REPOSITORY}/releases/tag/${TAG_NAME}"
- curl -X POST "$WEBHOOK_URL" \
- -H "Content-Type: application/json" \
- -d "{\"content\": \"$RELEASE_URL\"}"
\ No newline at end of file
diff --git a/.github/workflows/validate-pr-title.yml b/.github/workflows/validate-pr-title.yml
deleted file mode 100644
index 6af0930..0000000
--- a/.github/workflows/validate-pr-title.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-name: "Lint PR"
-
-on:
- pull_request_target:
- types:
- - opened
- - reopened
- - edited
- - synchronize
-
-jobs:
- main:
- name: Validate PR title
- runs-on: ubuntu-latest
- permissions:
- pull-requests: read
- steps:
- - uses: amannn/action-semantic-pull-request@v6
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 8296128..cfa1069 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,92 +1,18 @@
-# Logs
-logs
-*.log
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-lerna-debug.log*
+node_modules
+dist
-# Diagnostic reports (https://nodejs.org/api/report.html)
-report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
+public/assets
-# Runtime data
-pids
-*.pid
-*.seed
-*.pid.lock
-.DS_Store
+## Panda
+styled-system
+styled-system-studio
+*storybook.log
-# Directory for instrumented libs generated by jscoverage/JSCover
-lib-cov
+# Playwright
+/test-results/
+/playwright-report/
+/blob-report/
+/playwright/.cache/
+/playwright/.auth/
-# Coverage directory used by tools like istanbul
-coverage
-*.lcov
-
-# nyc test coverage
-.nyc_output
-
-# node-waf configuration
-.lock-wscript
-
-# Compiled binary addons (https://nodejs.org/api/addons.html)
-build/Release
-
-# Dependency directories
-node_modules/
-jspm_packages/
-
-# TypeScript v1 declaration files
-typings/
-
-# TypeScript cache
-*.tsbuildinfo
-
-# Optional npm cache directory
-.npm
-
-# Optional eslint cache
-.eslintcache
-
-# Optional REPL history
-.node_repl_history
-
-# Output of 'npm pack'
-*.tgz
-
-# Yarn Integrity file
-.yarn-integrity
-
-# dotenv environment variables file
.env
-.env.test
-
-# parcel-bundler cache (https://parceljs.org/)
-.cache
-
-# next.js build output
-.next
-
-# nuxt.js build output
-.nuxt
-
-# vuepress build output
-.vuepress/dist
-
-# Serverless directories
-.serverless/
-
-# FuseBox cache
-.fusebox/
-
-# DynamoDB Local files
-.dynamodb/
-
-# Webpack
-.webpack/
-
-# Vite
-.vite/
-
-# Electron-Forge
-out/
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
deleted file mode 100644
index 3ed3ffc..0000000
--- a/.release-please-manifest.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- ".": "1.4.2"
-}
\ No newline at end of file
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..24d7cc6
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,3 @@
+{
+ "recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index 35d980e..0000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "editor.formatOnSave": true,
- "files.exclude": {
- "**/node_modules": true,
- "**/tsconfig.json": false
- },
- "editor.detectIndentation": false,
- "editor.insertSpaces": true,
- "editor.tabSize": 2,
- "[typescriptreact]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[typescript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[javascript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "nixEnvSelector.nixFile": "${workspaceFolder}/default.nix"
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index ed3c1f5..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,101 +0,0 @@
-# Changelog
-
-## [1.4.2](https://github.com/Qinbeans/stoat/compare/v1.4.1...v1.4.2) (2026-02-26)
-
-
-### Bug Fixes
-
-* update application metadata and default build URL ([087df8a](https://github.com/Qinbeans/stoat/commit/087df8abfe5ea1ef03a2ce3a9e38b4e19e0ae651))
-
-## [1.4.1](https://github.com/Qinbeans/stoat/compare/v1.4.0...v1.4.1) (2026-02-26)
-
-
-### Bug Fixes
-
-* update GitHub repository owner and name in configuration ([d88150b](https://github.com/Qinbeans/stoat/commit/d88150b092159a1c4d2a7cd452597eac82fb5276))
-
-## [1.4.0](https://github.com/Qinbeans/stoat/compare/v1.3.0...v1.4.0) (2026-02-26)
-
-
-### Features
-
-* initial commit ([7ab6795](https://github.com/Qinbeans/stoat/commit/7ab6795a881e0dd41f21b9fbef1161bb1ff54be0))
-* minimise-to-tray-on-startup ([#126](https://github.com/Qinbeans/stoat/issues/126)) ([8284117](https://github.com/Qinbeans/stoat/commit/8284117e76c0fcff4091de3ef623014e4594a593))
-* new branding ([#87](https://github.com/Qinbeans/stoat/issues/87)) ([8910dcb](https://github.com/Qinbeans/stoat/commit/8910dcba923b55df789c0541b59a6a6321a28768))
-* persist and restore window size and position ([#74](https://github.com/Qinbeans/stoat/issues/74)) ([3bf697d](https://github.com/Qinbeans/stoat/commit/3bf697d1a9aba739b6954c8469223f51093497cc))
-* Reload/Refresh shortcut ([#119](https://github.com/Qinbeans/stoat/issues/119)) ([2e99b19](https://github.com/Qinbeans/stoat/commit/2e99b19353fbd45d9fdf1d148bae3a8a19c788ed))
-
-
-### Bug Fixes
-
-* Add common zoom-reset shortcut. ([#112](https://github.com/Qinbeans/stoat/issues/112)) ([def29f9](https://github.com/Qinbeans/stoat/commit/def29f9b3c1205944aab58beb8000815d41633b5))
-* add NixOS compatibility for electron startup ([#23](https://github.com/Qinbeans/stoat/issues/23)) ([3eb9b8e](https://github.com/Qinbeans/stoat/commit/3eb9b8e84bf05debf9843b80c468911fd095f4a0))
-* allow CTRL+"+" to also zoom in. ([#108](https://github.com/Qinbeans/stoat/issues/108)) ([2b962c5](https://github.com/Qinbeans/stoat/commit/2b962c5d066787601223368ee7dcc1e46a345b8a))
-* App Autostart ([#68](https://github.com/Qinbeans/stoat/issues/68)) ([127d143](https://github.com/Qinbeans/stoat/commit/127d1430a9c630e0429c9cc50d57ee316a63ebe5))
-* App-maximized-2nd-monitor ([897d706](https://github.com/Qinbeans/stoat/commit/897d706983a347938a2fb42ba8e58e40794bba13))
-* correctly handle config updates ([2517f41](https://github.com/Qinbeans/stoat/commit/2517f412abe78bcf8e8f4aece19cfc5336dbc98f))
-* correctly load badge count; expose to renderer ([#25](https://github.com/Qinbeans/stoat/issues/25)) ([6817b55](https://github.com/Qinbeans/stoat/commit/6817b554e57c5a65b7b4aca7d1cc4e05cd6f01b7))
-* don't re-enable abutostart ([63b9ea8](https://github.com/Qinbeans/stoat/commit/63b9ea818a9f32ca8535948e18752726c0f50a12))
-* event listener accumulation from rpc client ([#26](https://github.com/Qinbeans/stoat/issues/26)) ([96fa8cc](https://github.com/Qinbeans/stoat/commit/96fa8cc647029cb53e5d619b94debc6cdfdf32f6))
-* firstLaunch = false after initial setup ([#131](https://github.com/Qinbeans/stoat/issues/131)) ([63b9ea8](https://github.com/Qinbeans/stoat/commit/63b9ea818a9f32ca8535948e18752726c0f50a12))
-* flatpak icons not building correctly and wayland support ([#132](https://github.com/Qinbeans/stoat/issues/132)) ([ffe17ec](https://github.com/Qinbeans/stoat/commit/ffe17ec2c54fca6967435b8a4ada7fa8d4da7b33))
-* hide menu when custom frame is off ([2517f41](https://github.com/Qinbeans/stoat/commit/2517f412abe78bcf8e8f4aece19cfc5336dbc98f))
-* include empty cert pass ([864571d](https://github.com/Qinbeans/stoat/commit/864571df56339919cfe1af79ff23ebd279d6def5))
-* **macos:** tray icon size ([5eecab5](https://github.com/Qinbeans/stoat/commit/5eecab59431cb4966eaa1fc907a8e5c16c813230))
-* remove unused GitHub App token creation step from release workflow ([cdc392f](https://github.com/Qinbeans/stoat/commit/cdc392f1dda919f4cbfa05a7a714c73badf8f552))
-* replace default dialog with notification ([#98](https://github.com/Qinbeans/stoat/issues/98)) ([7d2f296](https://github.com/Qinbeans/stoat/commit/7d2f296ca72bbd7ad694c66a917d47067f883fc5))
-* rpc should define largeImageText ([#21](https://github.com/Qinbeans/stoat/issues/21)) ([cb373b6](https://github.com/Qinbeans/stoat/commit/cb373b6dc62630147151039c3711aef74c8c2d88))
-* send config on web contents load ([2517f41](https://github.com/Qinbeans/stoat/commit/2517f412abe78bcf8e8f4aece19cfc5336dbc98f))
-* synchronise updates to config with preload ([2517f41](https://github.com/Qinbeans/stoat/commit/2517f412abe78bcf8e8f4aece19cfc5336dbc98f))
-* toggle window visibility on tray click instead of always showing ([#103](https://github.com/Qinbeans/stoat/issues/103)) ([742a95f](https://github.com/Qinbeans/stoat/commit/742a95f3cb820c5b5398c815b7b45017b6b06053))
-* try to restore maximised windows to correct display ([#92](https://github.com/Qinbeans/stoat/issues/92)) ([897d706](https://github.com/Qinbeans/stoat/commit/897d706983a347938a2fb42ba8e58e40794bba13))
-* update GitHub token usage in release workflow ([54c5957](https://github.com/Qinbeans/stoat/commit/54c595767691b05550e6fe18d4b2fd43e4136679))
-* use template icon for macOS tray, use higher res icons for other platforms ([#130](https://github.com/Qinbeans/stoat/issues/130)) ([58ccb63](https://github.com/Qinbeans/stoat/commit/58ccb63d23541a03e05a48a37a98f883a2ba0d3f))
-* use the correct argument for auto start ([#22](https://github.com/Qinbeans/stoat/issues/22)) ([532af4a](https://github.com/Qinbeans/stoat/commit/532af4a680069f72734148b0ccdacec6c435e640)), closes [#20](https://github.com/Qinbeans/stoat/issues/20)
-
-## [1.3.0](https://github.com/stoatchat/for-desktop/compare/v1.2.0...v1.3.0) (2026-02-18)
-
-
-### Features
-
-* minimise-to-tray-on-startup ([#126](https://github.com/stoatchat/for-desktop/issues/126)) ([8284117](https://github.com/stoatchat/for-desktop/commit/8284117e76c0fcff4091de3ef623014e4594a593))
-* Reload/Refresh shortcut ([#119](https://github.com/stoatchat/for-desktop/issues/119)) ([2e99b19](https://github.com/stoatchat/for-desktop/commit/2e99b19353fbd45d9fdf1d148bae3a8a19c788ed))
-
-
-### Bug Fixes
-
-* Add common zoom-reset shortcut. ([#112](https://github.com/stoatchat/for-desktop/issues/112)) ([def29f9](https://github.com/stoatchat/for-desktop/commit/def29f9b3c1205944aab58beb8000815d41633b5))
-* allow CTRL+"+" to also zoom in. ([#108](https://github.com/stoatchat/for-desktop/issues/108)) ([2b962c5](https://github.com/stoatchat/for-desktop/commit/2b962c5d066787601223368ee7dcc1e46a345b8a))
-* App-maximized-2nd-monitor ([897d706](https://github.com/stoatchat/for-desktop/commit/897d706983a347938a2fb42ba8e58e40794bba13))
-* don't re-enable abutostart ([63b9ea8](https://github.com/stoatchat/for-desktop/commit/63b9ea818a9f32ca8535948e18752726c0f50a12))
-* firstLaunch = false after initial setup ([#131](https://github.com/stoatchat/for-desktop/issues/131)) ([63b9ea8](https://github.com/stoatchat/for-desktop/commit/63b9ea818a9f32ca8535948e18752726c0f50a12))
-* flatpak icons not building correctly and wayland support ([#132](https://github.com/stoatchat/for-desktop/issues/132)) ([ffe17ec](https://github.com/stoatchat/for-desktop/commit/ffe17ec2c54fca6967435b8a4ada7fa8d4da7b33))
-* replace default dialog with notification ([#98](https://github.com/stoatchat/for-desktop/issues/98)) ([7d2f296](https://github.com/stoatchat/for-desktop/commit/7d2f296ca72bbd7ad694c66a917d47067f883fc5))
-* toggle window visibility on tray click instead of always showing ([#103](https://github.com/stoatchat/for-desktop/issues/103)) ([742a95f](https://github.com/stoatchat/for-desktop/commit/742a95f3cb820c5b5398c815b7b45017b6b06053))
-* try to restore maximised windows to correct display ([#92](https://github.com/stoatchat/for-desktop/issues/92)) ([897d706](https://github.com/stoatchat/for-desktop/commit/897d706983a347938a2fb42ba8e58e40794bba13))
-* use template icon for macOS tray, use higher res icons for other platforms ([#130](https://github.com/stoatchat/for-desktop/issues/130)) ([58ccb63](https://github.com/stoatchat/for-desktop/commit/58ccb63d23541a03e05a48a37a98f883a2ba0d3f))
-
-## [1.2.0](https://github.com/stoatchat/for-desktop/compare/v1.1.12...v1.2.0) (2026-02-14)
-
-
-### Features
-
-* new branding ([#87](https://github.com/stoatchat/for-desktop/issues/87)) ([8910dcb](https://github.com/stoatchat/for-desktop/commit/8910dcba923b55df789c0541b59a6a6321a28768))
-* persist and restore window size and position ([#74](https://github.com/stoatchat/for-desktop/issues/74)) ([3bf697d](https://github.com/stoatchat/for-desktop/commit/3bf697d1a9aba739b6954c8469223f51093497cc))
-
-
-### Bug Fixes
-
-* App Autostart ([#68](https://github.com/stoatchat/for-desktop/issues/68)) ([127d143](https://github.com/stoatchat/for-desktop/commit/127d1430a9c630e0429c9cc50d57ee316a63ebe5))
-
-## [1.1.12](https://github.com/stoatchat/for-desktop/compare/v1.1.11...v1.1.12) (2025-12-29)
-
-
-### Bug Fixes
-
-* add NixOS compatibility for electron startup ([#23](https://github.com/stoatchat/for-desktop/issues/23)) ([3eb9b8e](https://github.com/stoatchat/for-desktop/commit/3eb9b8e84bf05debf9843b80c468911fd095f4a0))
-* correctly load badge count; expose to renderer ([#25](https://github.com/stoatchat/for-desktop/issues/25)) ([6817b55](https://github.com/stoatchat/for-desktop/commit/6817b554e57c5a65b7b4aca7d1cc4e05cd6f01b7))
-* event listener accumulation from rpc client ([#26](https://github.com/stoatchat/for-desktop/issues/26)) ([96fa8cc](https://github.com/stoatchat/for-desktop/commit/96fa8cc647029cb53e5d619b94debc6cdfdf32f6))
-* **macos:** tray icon size ([5eecab5](https://github.com/stoatchat/for-desktop/commit/5eecab59431cb4966eaa1fc907a8e5c16c813230))
-* rpc should define largeImageText ([#21](https://github.com/stoatchat/for-desktop/issues/21)) ([cb373b6](https://github.com/stoatchat/for-desktop/commit/cb373b6dc62630147151039c3711aef74c8c2d88))
-* use the correct argument for auto start ([#22](https://github.com/stoatchat/for-desktop/issues/22)) ([532af4a](https://github.com/stoatchat/for-desktop/commit/532af4a680069f72734148b0ccdacec6c435e640)), closes [#20](https://github.com/stoatchat/for-desktop/issues/20)
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 594933d..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,661 +0,0 @@
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
- Stoat for Desktop
- Copyright (C) 2025 Pawel Makles
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
- .
diff --git a/README.md b/README.md
index 31ee82c..1049ceb 100644
--- a/README.md
+++ b/README.md
@@ -1,84 +1,11 @@
-
-
- Stoat for Desktop
+# Revamped [Stoat Desktop App](https://github.com/stoatchat/for-desktop) for QStoat
- [](https://github.com/stoatchat/for-desktop/stargazers)
- [](https://github.com/stoatchat/for-desktop/network/members)
- [](https://github.com/stoatchat/for-desktop/pulls)
- [](https://github.com/stoatchat/for-desktop/issues)
- [](https://github.com/stoatchat/for-desktop/graphs/contributors)
- [](https://github.com/stoatchat/for-desktop/blob/main/LICENSE)
-
-Application for Windows, macOS, and Linux.
-
-
+QStoat is stoat for stoat.qinbeans.net. Specific to the friend group of the author, but can be used by anyone. It is a desktop application built with [Tauri](https://tauri.app/) with the modified frontend of the original [Stoat Web](https://github.com/stoatchat/for-web).
-## Installation
+## Recommended IDE Setup
-
-
-
+- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
-- All downloads and instructions for Stoat can be found on our [Website](https://stoat.chat/download).
+**Modified GIF backend to use Klipy**
-## Development Guide
-
-_Contribution guidelines for Desktop app TBA!_
-
-
-
-Before getting started, you'll want to install:
-
-- Git
-- Node.js
-- pnpm (run `corepack enable`)
-
-Then proceed to setup:
-
-```bash
-# clone the repository
-git clone --recursive https://github.com/stoatchat/for-desktop stoat-for-desktop
-cd stoat-for-desktop
-
-# install all packages
-pnpm i --frozen-lockfile
-
-# start the application
-pnpm start
-# ... or build the bundle
-pnpm package
-# ... or build all distributables
-pnpm make
-```
-
-Various useful commands for development testing:
-
-```bash
-# connect to the development server
-pnpm start -- --force-server http://localhost:5173
-
-# test the flatpak (after `make`)
-pnpm install:flatpak
-pnpm run:flatpak
-# ... also connect to dev server like so:
-pnpm run:flatpak --force-server http://localhost:5173
-
-# Nix-specific instructions for testing
-pnpm package
-pnpm run:nix
-# ... as before:
-pnpm run:nix --force-server=http://localhost:5173
-# a better solution would be telling
-# Electron Forge where system Electron is
-```
-
-### Pulling in Stoat's assets
-
-If you want to pull in Stoat brand assets after pulling, run the following:
-
-```bash
-# update the assets
-git -c submodule."assets".update=checkout submodule update --init assets
-```
-
-Currently, this is required to build, any forks are expected to provide their own assets.
+This is not meant for other people to use, but if you want to use it, you will likely need to modify many pieces to get it to work with your own stoat instance.
diff --git a/chat.stoat.StoatDesktop.desktop b/chat.stoat.StoatDesktop.desktop
deleted file mode 100644
index b0e0b55..0000000
--- a/chat.stoat.StoatDesktop.desktop
+++ /dev/null
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=Stoat
-Comment=Open source, user-first chat platform
-Exec=stoat-desktop
-Terminal=false
-Type=Application
-Icon=chat.stoat.StoatDesktop
-Categories=Network;InstantMessaging
-StartupWMClass=stoat-desktop
-X-Desktop-File-Install-Version=0.26
-X-Flatpak=chat.stoat.StoatDesktop
diff --git a/chat.stoat.StoatDesktop.metainfo.xml b/chat.stoat.StoatDesktop.metainfo.xml
deleted file mode 100644
index 11cbaf3..0000000
--- a/chat.stoat.StoatDesktop.metainfo.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
- chat.stoat.StoatDesktop
- chat.stoat.StoatDesktop.desktop
- Stoat
-
- Revolt Platforms Ltd
-
- Open source, user-first chat platform
- CC0-1.0
- AGPL-3.0
-
- https://raw.githubusercontent.com/stoatchat/assets/f106946659af67ad4f008588ac51570029b2fd47/desktop/icon.png
-
- Stoat is an open source, user-first chat platform. Send messages, share
- images, mention users, and join voice channels — all from a native desktop
- application.
-
-
-
- Main window
- screenshot.png
-
-
-
-
-
- Features:
-
- New Branding
- Persist and restore window size and position
-
- Bug Fixes:
-
-
-
-
-
- Bug fixes:
-
- Add NixOS compatibility for electron startup
- Correctly load badge count; expose to renderer
- Fix event listener accumulation from rpc client
- Fix macOS tray icon size
- Fix RPC largeImageText
- Use the correct argument for auto start
-
-
-
-
- https://github.com/stoatchat/for-desktop/issues
- https://stoat.qinbeans.net
- https://github.com/stoatchat/for-desktop
-
- intense
- intense
- intense
- intense
-
-
- 940
- always
-
-
- keyboard
- pointing
-
-
diff --git a/codegen.plugin.ts b/codegen.plugin.ts
new file mode 100644
index 0000000..779d765
--- /dev/null
+++ b/codegen.plugin.ts
@@ -0,0 +1,64 @@
+import { readdirSync } from "node:fs";
+
+const fileRegex = /\.tsx$/;
+const codegenRegex = /\/\/ @codegen (.*)/g;
+
+const DIRECTIVES = readdirSync("./components/ui/directives")
+ .filter((x) => x !== "index.ts")
+ .map((x) => x.substring(0, x.length - 3));
+
+const directiveRegex = new RegExp("use:(" + DIRECTIVES.join("|") + ")");
+
+export default function codegenPlugin() {
+ return {
+ name: "codegen",
+ enforce: "pre" as const,
+ transform(src: string, id: string) {
+ if (fileRegex.test(id)) {
+ src = src.replace(codegenRegex, (substring, group1) => {
+ const rawArgs: string[] = group1.split(" ");
+ const type = rawArgs.shift();
+
+ const args = rawArgs.reduce(
+ (d, arg) => {
+ const [key, value] = arg.split("=");
+ return {
+ ...d,
+ [key]: value,
+ };
+ },
+ { type },
+ ) as {
+ type: "directives";
+ props?: string;
+ include?: string;
+ };
+
+ switch (args.type) {
+ case "directives": {
+ // Generate directives forwarding
+ const source = args.props ?? "props";
+ const permitted: string[] =
+ args.include?.split(",") ?? DIRECTIVES;
+ return DIRECTIVES.filter((d) => permitted.includes(d))
+ .map((d) => `use:${d}={${source}["use:${d}"]}`)
+ .join("\n");
+ }
+ default:
+ return substring;
+ }
+ });
+
+ if (directiveRegex.test(src)) {
+ if (!id.endsWith("client/components/ui/index.tsx"))
+ src =
+ `import { ${DIRECTIVES.join(
+ ", ",
+ )} } from "@revolt/ui/directives";\n` + src;
+ }
+
+ return src;
+ }
+ },
+ };
+}
diff --git a/components/app/index.tsx b/components/app/index.tsx
new file mode 100644
index 0000000..9c987e3
--- /dev/null
+++ b/components/app/index.tsx
@@ -0,0 +1,6 @@
+export { DraftMessages } from "./interface/channels/text/DraftMessages";
+export { Message } from "./interface/channels/text/Message";
+export { Messages } from "./interface/channels/text/Messages";
+
+export * from "./interface/settings";
+export * from "./menus";
diff --git a/components/app/interface/channels/text/DraftMessage.tsx b/components/app/interface/channels/text/DraftMessage.tsx
new file mode 100644
index 0000000..0eadf3b
--- /dev/null
+++ b/components/app/interface/channels/text/DraftMessage.tsx
@@ -0,0 +1,114 @@
+import { For, Match, Switch } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import type { Channel } from "stoat.js";
+import { styled } from "styled-system/jsx";
+
+import { useClient, useUser } from "@revolt/client";
+import { Markdown } from "@revolt/markdown";
+import { userInformation } from "@revolt/markdown/users";
+import { useState } from "@revolt/state";
+import type { UnsentMessage } from "@revolt/state/stores/Draft";
+import {
+ Avatar,
+ MessageContainer,
+ MessageReply,
+ SizedContent,
+ Text,
+ Username,
+} from "@revolt/ui";
+
+import { DraftMessageContextMenu } from "../../../menus/DraftMessageContextMenu";
+
+interface Props {
+ draft: UnsentMessage;
+ channel: Channel;
+ tail?: boolean;
+}
+
+/**
+ * Unsent message preview
+ */
+export function DraftMessage(props: Props) {
+ const user = useUser();
+ const state = useState();
+ const client = useClient();
+ const userInfo = () => userInformation(user(), props.channel.server?.member);
+
+ return (
+ }
+ timestamp={
+ props.draft.status === "sending" ? (
+ Sending...
+ ) : props.draft.status === "failed" ? (
+ Failed to send
+ ) : (
+ Unsent message
+ )
+ }
+ sendStatus={props.draft.status === "sending" ? "sending" : "failed"}
+ username={ }
+ header={
+
+ {(reply) => (
+
+ )}
+
+ }
+ contextMenu={() => (
+
+ )}
+ compact={state.settings.getValue("appearance:compact_mode")}
+ >
+
+
+
+
+ {(id) => {
+ const file = state.draft.getFile(id);
+
+ return (
+ <>
+
+ Uploading file `{file.file.name}`...{" "}
+ {(file.uploadProgress[0]() * 100).toFixed()}%
+
+
+
+
+
+
+
+
+ >
+ );
+ }}
+
+
+ );
+}
+
+/**
+ * Break all text and prevent overflow from math blocks
+ */
+const BreakText = styled("div", {
+ base: {
+ wordBreak: "break-word",
+
+ "& .math": {
+ overflowX: "auto",
+ overflowY: "hidden",
+ maxHeight: "100vh",
+ },
+ },
+});
diff --git a/components/app/interface/channels/text/DraftMessages.tsx b/components/app/interface/channels/text/DraftMessages.tsx
new file mode 100644
index 0000000..1de054c
--- /dev/null
+++ b/components/app/interface/channels/text/DraftMessages.tsx
@@ -0,0 +1,50 @@
+import { For } from "solid-js";
+
+import { Channel } from "stoat.js";
+
+import { useState } from "@revolt/state";
+
+import { DraftMessage } from "./DraftMessage";
+
+interface Props {
+ channel: Channel;
+ tail: boolean;
+ sentIds: string[];
+}
+
+/**
+ *
+ * @param props
+ * @returns
+ */
+export function DraftMessages(props: Props) {
+ const state = useState();
+
+ const unsent = () =>
+ state.draft
+ .getPendingMessages(props.channel.id)
+ .filter((draft) => draft.status === "sending")
+ .filter((draft) => !props.sentIds.includes(draft.idempotencyKey));
+
+ const failed = () =>
+ state.draft
+ .getPendingMessages(props.channel.id)
+ .filter((draft) => draft.status !== "sending");
+
+ return (
+ <>
+
+ {(draft, index) => (
+
+ )}
+
+
+ {(draft) => }
+
+ >
+ );
+}
diff --git a/components/app/interface/channels/text/EditMessage.tsx b/components/app/interface/channels/text/EditMessage.tsx
new file mode 100644
index 0000000..e0d1e7b
--- /dev/null
+++ b/components/app/interface/channels/text/EditMessage.tsx
@@ -0,0 +1,103 @@
+import { Match, Switch } from "solid-js";
+
+import { useMutation } from "@tanstack/solid-query";
+import { Message } from "stoat.js";
+import { css } from "styled-system/css";
+import { styled } from "styled-system/jsx";
+
+import { useClient } from "@revolt/client";
+import { KeybindAction, createKeybind } from "@revolt/keybinds";
+import { useModals } from "@revolt/modal";
+import { useState } from "@revolt/state";
+import { Text } from "@revolt/ui";
+import { TextEditor2 } from "@revolt/ui/components/features/texteditor/TextEditor2";
+import { useSearchSpace } from "@revolt/ui/components/utils/autoComplete";
+
+export function EditMessage(props: { message: Message }) {
+ const state = useState();
+ const client = useClient();
+ const { openModal, isOpen, pop } = useModals();
+
+ const initialValue = [state.draft.editingMessageContent || ""] as const;
+
+ const change = useMutation(() => ({
+ mutationFn: (content: string) => props.message.edit({ content }),
+ onSuccess() {
+ state.draft.setEditingMessage(undefined);
+ },
+ onError(error) {
+ openModal({ type: "error2", error });
+ },
+ }));
+
+ function saveMessage() {
+ const content = state.draft.editingMessageContent;
+
+ if (content?.length) {
+ state.draft._setNodeReplacement?.(["_focus"]); // focus message box
+ change.mutate(content);
+ } else if (isOpen("delete_message")) {
+ void props.message.delete();
+ pop();
+ } else {
+ openModal({
+ type: "delete_message",
+ message: props.message,
+ });
+ }
+ }
+
+ createKeybind(KeybindAction.CHAT_CANCEL_EDITING, () => {
+ state.draft.setEditingMessage(undefined);
+ state.draft._setNodeReplacement?.(["_focus"]); // focus message box
+ });
+
+ const searchSpace = useSearchSpace(() => props.message, client);
+
+ return (
+ <>
+
+
+
+
+
+ escape to{" "}
+ state.draft.setEditingMessage(undefined)}>
+ cancel
+ {" "}
+ · enter to save
+
+ }
+ >
+
+ Saving message...
+
+
+ >
+ );
+}
+
+const EditorBox = styled("div", {
+ base: {
+ background: "var(--md-sys-color-surface-container-highest)",
+ color: "var(--md-sys-color-on-surface-container)",
+ borderRadius: "var(--borderRadius-sm)",
+ padding: "var(--gap-md)",
+ },
+});
+
+const Action = styled("span", {
+ base: {
+ fontWeight: 600,
+ cursor: "pointer",
+ color: "var(--md-sys-color-primary)",
+ },
+});
diff --git a/components/app/interface/channels/text/Message.tsx b/components/app/interface/channels/text/Message.tsx
new file mode 100644
index 0000000..1200cba
--- /dev/null
+++ b/components/app/interface/channels/text/Message.tsx
@@ -0,0 +1,365 @@
+import { For, Match, Show, Switch, createSignal, onMount } from "solid-js";
+
+import { useLingui } from "@lingui-solid/solid/macro";
+import { ImageEmbed, Message as MessageInterface, WebsiteEmbed } from "stoat.js";
+import { cva } from "styled-system/css";
+import { styled } from "styled-system/jsx";
+import { decodeTime } from "ulid";
+
+import { useClient } from "@revolt/client";
+import { useTime } from "@revolt/i18n";
+import { Markdown } from "@revolt/markdown";
+import { useState } from "@revolt/state";
+import {
+ Attachment,
+ Avatar,
+ Embed,
+ MessageContainer,
+ MessageReply,
+ Reactions,
+ SystemMessage,
+ SystemMessageIcon,
+ Tooltip,
+ Username,
+} from "@revolt/ui";
+import { Symbol } from "@revolt/ui/components/utils/Symbol";
+
+import { MessageContextMenu } from "../../../menus/MessageContextMenu";
+import {
+ floatingUserMenus,
+ floatingUserMenusFromMessage,
+} from "../../../menus/UserContextMenu";
+
+import { EditMessage } from "./EditMessage";
+
+/**
+ * Regex for matching URLs
+ */
+const RE_URL =
+ /[(http(s)?)://(www.)?a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/;
+
+interface Props {
+ /**
+ * Message
+ */
+ message: MessageInterface;
+
+ /**
+ * Whether this is the tail of another message
+ */
+ tail?: boolean;
+
+ /**
+ * Whether to highlight this message
+ */
+ highlight?: boolean;
+
+ /**
+ * Whether to replace content with editor
+ */
+ editing?: boolean;
+
+ /**
+ * Whether this message is a link
+ */
+ isLink?: boolean;
+}
+
+/**
+ * Render a Message with or without a tail
+ */
+export function Message(props: Props) {
+ const dayjs = useTime();
+ const state = useState();
+ const { t } = useLingui();
+ const client = useClient();
+
+ const [isHovering, setIsHovering] = createSignal(false);
+
+ /**
+ * Determine whether this message only contains a GIF
+ */
+ const isOnlyGIF = () => {
+ if (
+ !props.message.embeds ||
+ props.message.embeds.length !== 1 ||
+ !props.message.content ||
+ props.message.content.replace(RE_URL, "").length
+ ) {
+ return false;
+ }
+
+ const embed = props.message.embeds[0];
+
+ if (embed.type === "Image") {
+ return (embed as ImageEmbed).url?.startsWith("https://static.klipy.com");
+ }
+
+ if (embed.type === "Website") {
+ const websiteEmbed = embed as WebsiteEmbed;
+ const gifProviders = ["https://tenor.com", "https://klipy.com"];
+ return (
+ websiteEmbed.specialContent?.type === "GIF" ||
+ gifProviders.some((provider) =>
+ websiteEmbed.originalUrl?.startsWith(provider),
+ )
+ );
+ }
+
+ return false;
+ };
+
+ /**
+ * React with an emoji
+ * @param emoji Emoji
+ */
+ const react = (emoji: string) => props.message.react(emoji);
+
+ /**
+ * Remove emoji reaction
+ * @param emoji Emoji
+ */
+ const unreact = (emoji: string) => props.message.unreact(emoji);
+
+ return (
+
+
+
+ }
+ avatar={
+
+ }
+ contextMenu={() => }
+ timestamp={props.message.createdAt}
+ edited={props.message.editedAt}
+ mentioned={props.message.mentioned}
+ highlight={props.highlight}
+ editing={props.editing}
+ isLink={props.isLink}
+ tail={props.tail || state.settings.getValue("appearance:compact_mode")}
+ header={
+
+
+ {(reply_id) => {
+ /**
+ * Signal the actual message
+ */
+ const message = () => client().messages.get(reply_id);
+
+ onMount(() => {
+ if (!message()) {
+ props.message.channel!.fetchMessage(reply_id);
+ }
+ });
+
+ return (
+
+ );
+ }}
+
+
+ }
+ info={
+ }>
+
+
+ link
+
+
+
+
+ brightness_alert
+
+
+
+
+
+ smart_toy
+
+
+
+
+
+
+ cloud
+
+
+
+
+
+
+ notifications_off
+
+
+
+
+
+
+
+ spa
+
+
+
+
+
+
+
+ spa
+
+
+
+ {/*
+
+ placeholder ·
+ */}
+
+ }
+ compact={
+ !!props.message.systemMessage ||
+ state.settings.getValue("appearance:compact_mode")
+ }
+ infoMatch={
+
+
+
+ }
+ >
+
+
+ user
+ ? floatingUserMenus(
+ user!,
+ // TODO: try to fetch on demand member
+ props.message.server?.getMember(user!.id),
+ )
+ : {}
+ }
+ isServer={!!props.message.server}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {(attachment) => (
+
+ )}
+
+
+
+
+ {(embed) => }
+
+
+ >}
+ interactions={props.message.interactions}
+ userId={client().user!.id}
+ addReaction={react}
+ removeReaction={unreact}
+ sendGIF={(content) =>
+ props.message?.channel?.sendMessage({
+ content,
+ replies: [{ id: props.message.id, mention: true }],
+ })
+ }
+ />
+
+ );
+}
+
+/**
+ * New user indicator
+ */
+const NewUser = styled("div", {
+ base: {
+ fill: "var(--md-sys-color-primary)",
+ },
+});
+
+/**
+ * Avatar container
+ */
+const avatarContainer = cva({
+ base: {
+ height: "fit-content",
+ borderRadius: "var(--borderRadius-circle)",
+ },
+});
+
+/**
+ * Break all text and prevent overflow from math blocks
+ */
+const BreakText = styled("div", {
+ base: {
+ wordBreak: "break-word",
+
+ "& .math": {
+ overflowX: "auto",
+ overflowY: "hidden",
+ maxHeight: "100vh",
+ },
+ },
+});
diff --git a/components/app/interface/channels/text/MessageCache.tsx b/components/app/interface/channels/text/MessageCache.tsx
new file mode 100644
index 0000000..f2a90c4
--- /dev/null
+++ b/components/app/interface/channels/text/MessageCache.tsx
@@ -0,0 +1,105 @@
+import {
+ type JSX,
+ createContext,
+ createEffect,
+ on,
+ onCleanup,
+ onMount,
+ useContext,
+} from "solid-js";
+
+import { Channel, Client, Message } from "stoat.js";
+
+import { useClientLifecycle } from "@revolt/client";
+import { State } from "@revolt/client/Controller";
+
+type ChannelState = {
+ messages: Message[];
+ atStart: boolean;
+ atEnd: boolean;
+ scrollTop?: number;
+};
+
+const CacheContext = createContext<{
+ manage(channel: Channel, state: ChannelState): void;
+ unmanage(channel: Channel): ChannelState | void;
+ // preload(channel: Channel): void; :: future optimisation feature
+}>();
+
+/**
+ * Persistent message & channel state cache
+ */
+export function MessageCache(props: { client: Client; children: JSX.Element }) {
+ const lifecycle = useClientLifecycle();
+ const cache: Record = {};
+
+ /**
+ * Handle incoming messages
+ * @param message Message object
+ */
+ function onMessage(message: Message) {
+ const entry = cache[message.channelId];
+ if (entry?.atEnd) {
+ entry.messages = [message, ...entry.messages].slice(0, 50);
+ }
+ }
+
+ /**
+ * Handle deleted messages
+ */
+ function onMessageDelete(message: { id: string; channelId: string }) {
+ const entry = cache[message.channelId];
+ if (entry) {
+ entry.messages = entry.messages.filter((msg) => msg.id !== message.id);
+ }
+ }
+
+ // Add listener for messages
+ onMount(() => {
+ props.client.addListener("messageCreate", onMessage);
+ props.client.addListener("messageDelete", onMessageDelete);
+ });
+
+ onCleanup(() => {
+ props.client.removeListener("messageCreate", onMessage);
+ props.client.removeListener("messageDelete", onMessageDelete);
+ });
+
+ // Clear cache when we reconnect
+ createEffect(
+ on(
+ () => lifecycle.lifecycle.state(),
+ (state) => {
+ if (state === State.Connected) {
+ for (const key of Object.keys(cache)) {
+ delete cache[key];
+ }
+ }
+ },
+ { defer: true },
+ ),
+ );
+
+ return (
+
+ {props.children}
+
+ );
+}
+
+export function useMessageCache() {
+ return useContext(CacheContext);
+}
diff --git a/components/app/interface/channels/text/Messages.tsx b/components/app/interface/channels/text/Messages.tsx
new file mode 100644
index 0000000..eba9e2b
--- /dev/null
+++ b/components/app/interface/channels/text/Messages.tsx
@@ -0,0 +1,1026 @@
+import {
+ Accessor,
+ For,
+ JSX,
+ Match,
+ Show,
+ Switch,
+ batch,
+ createEffect,
+ createMemo,
+ createSignal,
+ on,
+ onCleanup,
+ onMount,
+ splitProps,
+} from "solid-js";
+
+import isEqual from "lodash.isequal";
+import { Channel, Message as MessageInterface } from "stoat.js";
+import { styled } from "styled-system/jsx";
+
+import { useClient, useClientLifecycle } from "@revolt/client";
+import { State } from "@revolt/client/Controller";
+import { useTime } from "@revolt/i18n";
+import { useState } from "@revolt/state";
+import {
+ BlockedMessage,
+ ConversationStart,
+ Deferred,
+ JumpToBottom,
+ MessageDivider,
+} from "@revolt/ui";
+
+import {
+ ListView2,
+ ListView2Update,
+} from "@revolt/ui/components/utils/ListView2";
+import { Message } from "./Message";
+import { useMessageCache } from "./MessageCache";
+
+/**
+ * Initial fetch limit
+ */
+const INITIAL_FETCH_LIMIT = 30;
+
+/**
+ * Fetch limit
+ */
+const FETCH_LIMIT = 50;
+
+/**
+ * Display limit
+ */
+const DISPLAY_LIMIT = 150;
+
+interface Props {
+ /**
+ * Channel to fetch messages from
+ */
+ channel: Channel;
+
+ /**
+ * Pending messages to render at the end of the list
+ */
+ pendingMessages?: (props: { tail: boolean; ids: string[] }) => JSX.Element;
+
+ /**
+ * Display typing indicator instead of padding
+ */
+ typingIndicator?: JSX.Element;
+
+ /**
+ * Highlighted message id
+ */
+ highlightedMessageId: Accessor;
+
+ /**
+ * Last read message id
+ */
+ lastReadId: Accessor;
+
+ /**
+ * Clear the highlighted message
+ */
+ clearHighlightedMessage: () => void;
+
+ /**
+ * Bind the initial messages function to the parent component
+ * @param fn Function
+ */
+ jumpToBottomRef?: (fn: (nearby?: string) => void) => void;
+
+ /**
+ * Bind the atEnd signal to the parent component
+ * @param fn Function
+ */
+ atEndRef?: (fn: () => boolean) => void;
+}
+
+/**
+ * Render messages in a Channel
+ */
+export function Messages(props: Props) {
+ const cache = useMessageCache();
+ const lifecycle = useClientLifecycle();
+ const client = useClient();
+ const state = useState();
+ const dayjs = useTime();
+
+ /**
+ * Loaded messages
+ */
+ const [messages, setMessages] = createSignal([]);
+
+ /**
+ * Whether we've reached the start of the conversation
+ */
+ const [atStart, setStart] = createSignal(false);
+
+ /**
+ * Whether we've reached the end of the conversation
+ */
+ const [atEnd, setEnd] = createSignal(true);
+
+ /**
+ * The current direction of fetching
+ */
+ const [fetching, setFetching] = createSignal<
+ "initial" | "upwards" | "downwards" | "jump_end" | "jump_msg"
+ >();
+
+ /**
+ * Whether the current fetch has failed
+ */
+ const [failure, setFailure] = createSignal(false);
+
+ /**
+ * Collect messages during fetches
+ *
+ * The new message handler should write into this if it
+ * is defined as opposed to appending to messages[] list
+ */
+ let collectedMessages: MessageInterface[] | undefined;
+
+ /**
+ * Pre-empt the current fetch
+ */
+ let preemptFetch: () => void | undefined;
+
+ /**
+ * Reference for the list container so we can scroll to elements
+ */
+ let listRef: HTMLDivElement | undefined;
+
+ /**
+ * Whether we can fetch
+ * @returns Boolean
+ */
+ function canFetch() {
+ return !fetching() || failure();
+ }
+
+ /**
+ * Pre-empt the current fetch
+ */
+ function preempt() {
+ batch(() => {
+ setFetching();
+ setFailure(false);
+ preemptFetch?.();
+ });
+ }
+
+ /**
+ * Helper for checking if we've been pre-empted
+ * @returns Function to check if we have been pre-empted
+ */
+ function newPreempted() {
+ let preempted = false;
+ preemptFetch = () => {
+ preempted = true;
+ };
+
+ return () => preempted;
+ }
+
+ /**
+ * Safely update messages by applying consistency checks
+ * @param messagesArr Array of message arrays
+ */
+ function setMessagesSafely(...messagesArr: MessageInterface[][]) {
+ setMessages(
+ messagesArr.flat().toSorted((a, b) => b.id.localeCompare(a.id)),
+ );
+ }
+
+ /**
+ * Initial load subroutine
+ * @param nearby Message we should load around (and then scroll to)
+ */
+ async function caseInitialLoad(nearby?: string) {
+ // Pre-empt any fetches
+ preempt();
+ setFetching("initial");
+
+ // Handle incoming pre-emptions
+ const preempted = newPreempted();
+
+ // Clear the messages list
+ // NB. component does not remount on channel switch
+ setMessages([]);
+
+ // Set the initial position
+ setStart(false);
+ setEnd(true);
+
+ // Start collecting messages
+ collectedMessages = [];
+
+ try {
+ // Fetch messages for channel
+ let messages;
+
+ const existingState = cache!.unmanage(props.channel);
+ const useExistingState = existingState && !nearby;
+
+ if (useExistingState) {
+ messages = existingState.messages;
+ } else {
+ messages = await props.channel
+ .fetchMessagesWithUsers({
+ limit: INITIAL_FETCH_LIMIT,
+ nearby,
+ })
+ .then(({ messages }) => messages);
+ }
+
+ // Cancel if we've been pre-empted
+ if (preempted()) return;
+
+ // Assume we are not at the end if we jumped to a message
+ // NB. we set this late to not display the "jump to bottom" bar
+ if (typeof nearby === "string") {
+ setEnd(
+ // If the messages fetched include the latest message,
+ // then we are at the end and mark the channel as such.
+ messages.findIndex(
+ (msg) => msg.id === props.channel.lastMessageId,
+ ) !== -1,
+ );
+ }
+ // Check if we're at the start of the conversation otherwise
+ else if (!useExistingState && messages.length < INITIAL_FETCH_LIMIT) {
+ setStart(true);
+ }
+ // Apply existing state if present
+ else if (existingState) {
+ setStart(existingState.atStart);
+ setEnd(existingState.atEnd);
+ }
+
+ // Merge list with any new ones that have come in if we are at the end
+ if (atEnd()) {
+ const knownIds = new Set(collectedMessages!.map((x) => x.id));
+ setMessagesSafely(
+ collectedMessages!,
+ messages.filter((x) => !knownIds.has(x.id)),
+ );
+ }
+ // Otherwise just replace the whole list
+ else {
+ setMessages(messages);
+ }
+
+ // Stop collecting messages
+ collectedMessages = [];
+
+ // Mark as fetching has ended
+ setFetching();
+
+ // If we're not at the end, restore scroll position
+ if (existingState && !existingState.atEnd) {
+ setTimeout(() =>
+ listRef!.scrollTo({
+ top: existingState.scrollTop!,
+ behavior: "instant",
+ }),
+ );
+ }
+ // Or... reset scroll to the end
+ else if (atEnd()) {
+ setTimeout(() =>
+ listRef!.scrollTo({
+ top: 9999999,
+ behavior: "instant",
+ }),
+ );
+ }
+ } catch {
+ // Keep track of any failures (and allow retry / other actions)
+ setFailure(true);
+ setFetching();
+ }
+ }
+
+ /**
+ * Fetch upwards from current position
+ */
+ async function caseFetchUpwards(): Promise {
+ // Pre-conditions:
+ // - Must not already be at the start
+ // - Must not already be fetching (or otherwise the fetch must have failed)
+ if (atStart() || !canFetch()) return;
+
+ // Indicate we are fetching upwards
+ setFetching("upwards");
+
+ // Handle incoming pre-emptions
+ const preempted = newPreempted();
+
+ try {
+ // Fetch messages for channel
+ const result = await props.channel.fetchMessagesWithUsers({
+ limit: FETCH_LIMIT,
+ // Take the id of the oldest message currently fetched
+ before: messages().slice(-1)[0].id,
+ });
+
+ // Cancel if we've been pre-empted
+ if (preempted()) return;
+
+ // If it's less than we expected, we are at the start
+ if (result.messages.length < FETCH_LIMIT) {
+ setStart(true);
+ }
+
+ // Prepend messages if we received any
+ if (result.messages.length) {
+ // Calculate how much we need to cut off the other end
+ const tooManyBy = Math.max(
+ 0,
+ result.messages.length + messages().length - DISPLAY_LIMIT,
+ );
+
+ // If it's at least one element, we are no longer at the end
+ if (tooManyBy > 0) {
+ setEnd(false);
+ }
+
+ const msgs = messages();
+ return {
+ scrollAnchorId: msgs[msgs.length - 1].id,
+ commitToDOM() {
+ setMessagesSafely(messages(), result.messages);
+
+ if (tooManyBy) {
+ setMessages((prev) => {
+ return prev.slice(tooManyBy);
+ });
+ }
+
+ setFetching();
+ },
+ };
+ } else {
+ setFetching();
+ }
+ } catch {
+ // Keep track of any failures (and allow retry / other actions)
+ setFailure(true);
+ setFetching();
+ }
+ }
+
+ /**
+ * Fetch downwards from current position
+ */
+ async function caseFetchDownwards(): Promise {
+ // Pre-conditions:
+ // - Must not already be at the end
+ // - Must not already be fetching (or otherwise the fetch must have failed)
+ if (atEnd() || !canFetch()) return;
+
+ // Indicate we are fetching downwards
+ setFetching("downwards");
+
+ // Handle incoming pre-emptions
+ const preempted = newPreempted();
+
+ try {
+ // Fetch messages after the newest message we have
+ const result = await props.channel.fetchMessagesWithUsers({
+ limit: FETCH_LIMIT,
+ after: messages()[0].id,
+ sort: "Oldest",
+ });
+
+ // Cancel if we've been pre-empted
+ if (preempted()) return;
+
+ // If it's less than we expected, we are at the end
+ if (result.messages.length < FETCH_LIMIT) {
+ setEnd(true);
+ }
+
+ // If we received any messages at all, append them to the bottom
+ if (result.messages.length) {
+ // Calculate how much we need to cut off the other end
+ const tooManyBy = Math.max(
+ 0,
+ result.messages.length + messages().length - DISPLAY_LIMIT,
+ );
+
+ // If it's at least one element, we are no longer at the start
+ if (tooManyBy > 0) {
+ setStart(false);
+ }
+
+ return {
+ scrollAnchorId: messages()[0].id,
+ commitToDOM() {
+ setMessages(() => {
+ return [...result.messages.reverse(), ...messages()];
+ });
+
+ if (tooManyBy) {
+ setMessages((prev) => prev.slice(0, -tooManyBy));
+ }
+
+ setFetching();
+ },
+ };
+ } else {
+ // Mark as fetching has ended
+ setFetching();
+ }
+ } catch {
+ // Keep track of any failures (and allow retry / other actions)
+ setFailure(true);
+ setFetching();
+ }
+ }
+
+ /**
+ * Jump to the present messages
+ */
+ async function caseJumpToBottom() {
+ /**
+ * Helper function to find the closest parent scroll container
+ * @param el Element
+ * @returns Element
+ */
+ function findScrollContainer(el: Element | null) {
+ if (!el) {
+ return null;
+ } else if (getComputedStyle(el).overflowY === "scroll") {
+ return el;
+ } else {
+ return el.parentElement;
+ }
+ }
+
+ // Scroll to the bottom if we're already at the end
+ if (atEnd()) {
+ const containerChild = findScrollContainer(listRef!)!.children[0];
+ containerChild!.scrollIntoView({
+ behavior: "smooth",
+ block: "end",
+ });
+ }
+ // Otherwise fetch present messages
+ else {
+ // Pre-empty any fetches
+ preempt();
+ setFetching("jump_end");
+
+ // Handle incoming pre-emptions
+ const preempted = newPreempted();
+
+ // Start collecting messages
+ collectedMessages = [];
+
+ try {
+ // Fetch messages for channel
+ const { messages } = await props.channel.fetchMessagesWithUsers({
+ limit: FETCH_LIMIT,
+ });
+
+ // Cancel if we've been pre-empted
+ if (preempted()) return;
+
+ // Check if we're at the start of the conversation
+ // NB. this may be counter-intuitive because we are in history but,
+ // this could be a very rare edge case for large moderation actions
+ if (messages.length < FETCH_LIMIT) {
+ setStart(true);
+ } else {
+ setStart(false);
+ }
+
+ // Indicate we are at the end now
+ setEnd(true);
+
+ // Merge list with any new ones that have come in
+ const knownIds = new Set(collectedMessages!.map((x) => x.id));
+ setMessagesSafely(
+ collectedMessages!,
+ messages.filter((x) => !knownIds.has(x.id)),
+ );
+
+ // Stop collecting messages
+ collectedMessages = [];
+
+ // Animate scroll to bottom
+ setTimeout(() => {
+ const containerChild = findScrollContainer(listRef!)!.children[0];
+
+ containerChild!.scrollIntoView({
+ behavior: "instant",
+ block: "start",
+ });
+
+ setTimeout(() => {
+ containerChild!.scrollIntoView({
+ behavior: "smooth",
+ block: "end",
+ });
+
+ // Mark as fetching has ended
+ setFetching();
+ });
+ });
+ } catch {
+ // Keep track of any failures (and allow retry / other actions)
+ setFailure(true);
+ setFetching();
+ }
+ }
+ }
+
+ /**
+ * Jump to a given message
+ * @param messageId Message Id
+ */
+ async function caseJumpToMessage(messageId: string) {
+ /**
+ * Scroll to the nearest message (to the id) in history
+ */
+ const scrollToNearestMessage = () => {
+ const index = messagesWithTail().findIndex(
+ (entry) => entry.t === 0 && entry.message.id === messageId,
+ ); // use localeCompare
+
+ listRef!.children[index + (atStart() ? 1 : 0)].scrollIntoView({
+ behavior: "smooth",
+ block: "center",
+ });
+ };
+
+ if (messages().find((message) => message.id === messageId)) {
+ scrollToNearestMessage();
+ return;
+ }
+
+ // Pre-empty any fetches
+ preempt();
+ setFetching("jump_msg");
+
+ // Handle incoming pre-emptions
+ const preempted = newPreempted();
+
+ try {
+ // Fetch messages for channel
+ const { messages } = await props.channel.fetchMessagesWithUsers({
+ limit: FETCH_LIMIT,
+ nearby: messageId,
+ });
+
+ // Cancel if we've been pre-empted
+ if (preempted()) return;
+
+ // Assume we are somewhere in history
+ // NB. we could be clever here, but best not to be
+ setStart(false);
+ setEnd(false);
+
+ // Replace the messages
+ setMessagesSafely(messages);
+
+ setTimeout(() => {
+ // Scroll to the message
+ scrollToNearestMessage();
+
+ // Mark as fetching has ended
+ setTimeout(() => {
+ setFetching();
+ }, 300 /* probably long enough for scroll to finish */);
+ });
+ } catch {
+ // Keep track of any failures (and allow retry / other actions)
+ setFailure(true);
+ setFetching();
+ }
+ }
+
+ // Setup references if they exists
+ onMount(() => {
+ props.jumpToBottomRef?.(jumpToBottom);
+ props.atEndRef?.(atEnd);
+ });
+
+ /**
+ * Fetch messages on channel mount
+ */
+ createEffect(
+ on(
+ () => props.channel,
+ (channel) => {
+ caseInitialLoad(props.highlightedMessageId());
+
+ // move state into cache when navigating away
+ onCleanup(() => {
+ if (fetching() !== "initial") {
+ cache!.manage(channel, {
+ messages: messages(),
+ atStart: atStart(),
+ atEnd: atEnd(),
+ scrollTop: listRef?.scrollTop,
+ });
+ }
+ });
+ },
+ ),
+ );
+
+ /**
+ * Jump to highlighted message
+ */
+ createEffect(
+ on(
+ () => props.highlightedMessageId(),
+ (messageId) => {
+ // Jump only if messages are loaded
+ if (messageId && messages()) {
+ caseJumpToMessage(messageId);
+ }
+ },
+ ),
+ );
+
+ /**
+ * Handle incoming messages
+ * @param message Message object
+ */
+ function onMessage(message: MessageInterface) {
+ if (message.channelId === props.channel.id && atEnd()) {
+ setMessages([message, ...messages()]);
+ }
+ }
+
+ /**
+ * Handle deleted messages
+ */
+ function onMessageDelete(message: { id: string; channelId: string }) {
+ if (
+ message.channelId === props.channel.id &&
+ messages().find((msg) => msg.id === message.id)
+ ) {
+ setMessages((messages) =>
+ messages.filter((msg) => msg.id !== message.id),
+ );
+ }
+ }
+
+ // Add listener for messages
+ onMount(() => {
+ const c = client();
+ c.addListener("messageCreate", onMessage);
+ c.addListener("messageDelete", onMessageDelete);
+ });
+
+ onCleanup(() => {
+ const c = client();
+ c.removeListener("messageCreate", onMessage);
+ c.removeListener("messageDelete", onMessageDelete);
+ });
+
+ // Ensure that we reload when lifecycle state changes
+ createEffect(
+ on(
+ () => lifecycle.lifecycle.state(),
+ (state) => {
+ if (
+ state === State.Connected &&
+ atEnd() &&
+ !props.highlightedMessageId
+ ) {
+ caseInitialLoad();
+ }
+ },
+ { defer: true },
+ ),
+ );
+
+ // We need to cache created objects to prevent needless re-rendering
+ const objectCache = new Map();
+
+ // Determine which messages have a tail and add message dividers
+ const messagesWithTail = createMemo(() => {
+ const messagesWithTail: ListEntry[] = [];
+ const lastReadId = props.lastReadId() ?? "0";
+
+ let blockedMessages = 0;
+ let insertedUnreadDivider = false;
+
+ /**
+ * Create blocked message divider
+ */
+ const createBlockedMessageCount = () => {
+ if (blockedMessages) {
+ messagesWithTail.push({
+ t: 2,
+ count: blockedMessages,
+ });
+
+ blockedMessages = 0;
+ }
+ };
+
+ const arr = messages();
+ arr.forEach((message, index) => {
+ const next = arr[index + 1];
+ let tail = true;
+
+ // If there is a next message, compare it to the current message
+ let date = null;
+ if (next) {
+ // Compare dates between messages
+ const adate = message.createdAt,
+ bdate = next.createdAt,
+ atime = +adate,
+ btime = +bdate;
+
+ if (
+ adate.getFullYear() !== bdate.getFullYear() ||
+ adate.getMonth() !== bdate.getMonth() ||
+ adate.getDate() !== bdate.getDate()
+ ) {
+ date = adate;
+ }
+
+ // Compare time and properties of messages
+ if (
+ // split up different authors
+ message.authorId !== next.authorId ||
+ // split up chains which are too far apart
+ Math.abs(btime - atime) >= 420000 ||
+ // treat masquerade as a change in author
+ !isEqual(message.masquerade, next.masquerade) ||
+ // ensure all system messages render independently
+ message.systemMessage ||
+ next.systemMessage ||
+ // replies present on current message
+ message.replyIds?.length ||
+ // next message in history has already been read
+ // so there will be a message divider present
+ (next.id.localeCompare(lastReadId) === -1 && !insertedUnreadDivider)
+ ) {
+ tail = false;
+ }
+ } else {
+ tail = false;
+ }
+
+ // Try to add the unread divider
+ if (
+ !insertedUnreadDivider &&
+ message.id.localeCompare(lastReadId) === -1
+ ) {
+ insertedUnreadDivider = true;
+
+ messagesWithTail.push(
+ objectCache.get(true) ?? {
+ t: 1,
+ unread: true,
+ },
+ );
+ }
+
+ if (message.author?.relationship === "Blocked") {
+ blockedMessages++;
+ } else {
+ // Push any blocked messages if they haven't been yet
+ createBlockedMessageCount();
+
+ // Add message to list, retrieve if it exists in the cache
+ messagesWithTail.push(
+ objectCache.get(`${message.id}:${tail}`) ?? {
+ t: 0,
+ message,
+ tail,
+ },
+ );
+ }
+
+ // Add date to list, retrieve if it exists in the cache
+ if (date) {
+ messagesWithTail.push(
+ objectCache.get(date) ?? {
+ t: 1,
+ date: dayjs(date).format("LL"),
+ },
+ );
+ }
+ });
+
+ // Push remainder of blocked messages
+ createBlockedMessageCount();
+
+ // Strip unread divider if it is the first item
+ // (hence would show alone at the bottom of messages)
+ if (messagesWithTail[0]?.t === 1) {
+ messagesWithTail.shift();
+ }
+
+ // Flush cache
+ objectCache.clear();
+
+ // Populate cache with current objects
+ for (const object of messagesWithTail) {
+ if (object.t === 0) {
+ objectCache.set(`${object.message.id}:${object.tail}`, object);
+ } else if (object.t === 1) {
+ objectCache.set(object.unread ?? object.date, object);
+ }
+ }
+
+ return messagesWithTail.reverse();
+ });
+
+ /**
+ * Jump to the bottom of the chat
+ */
+ function jumpToBottom() {
+ caseJumpToBottom();
+
+ if (props.highlightedMessageId()) {
+ props.clearHighlightedMessage();
+ }
+ }
+
+ /**
+ * Select last message for editing if signal is true
+ */
+ createEffect(
+ on(
+ () => state.draft.editingMessageId,
+ (shouldSetEditingMessageId) =>
+ shouldSetEditingMessageId === true &&
+ state.draft.setEditingMessage(
+ messages().find((message) => message.author?.self),
+ ),
+ ),
+ );
+
+ /**
+ * Check whether to trail the currently pending messages
+ * @returns Whether to trail pending message
+ */
+ function pendingMessageIsTrailing() {
+ const messages = messagesWithTail();
+ const lastMessage = messages[messages.length - 1];
+
+ return lastMessage &&
+ lastMessage.t === 0 &&
+ // check if last message is authored by us
+ lastMessage.message.author?.self &&
+ // split up chains that are too far apart
+ Math.abs(+new Date() - +lastMessage.message.createdAt) < 420000
+ ? true
+ : false;
+ }
+
+ /**
+ * Message ids
+ * @returns List of message ids
+ */
+ function sentMessageIdempotency() {
+ return messages().map((msg) => msg.nonce!);
+ }
+
+ return (
+ <>
+ typeof fetching() !== "string"}
+ >
+
+
+
+
+
+
+ {/* TODO: else show (loading icon) OR (load more) */}
+
+ {(entry) => (
+
+ )}
+
+ {/* TODO: show (loading icon) OR (load more) */}
+
+ {props.pendingMessages?.({
+ tail: pendingMessageIsTrailing(),
+ ids: sentMessageIdempotency(),
+ })}
+ {props.typingIndicator ?? }
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
+
+/**
+ * Anchor to the end of the messages list
+ */
+const AnchorToEnd = styled("div", {
+ base: {
+ zIndex: 30,
+ position: "relative",
+
+ "& > div": {
+ width: "100%",
+ position: "absolute",
+ bottom: "var(--gap-md)",
+ },
+ },
+});
+
+/**
+ * Container padding
+ */
+const Padding = styled("div", {
+ base: {
+ height: "24px",
+ },
+});
+
+/**
+ * List entries
+ */
+type ListEntry =
+ | {
+ // Message
+ t: 0;
+ message: MessageInterface;
+ tail: boolean;
+ highlight: boolean;
+ }
+ | {
+ // Message Divider
+ t: 1;
+ date?: string;
+ unread?: boolean;
+ }
+ | {
+ // Blocked messages
+ t: 2;
+ count: number;
+ };
+
+/**
+ * Render individual list entry
+ */
+function Entry(
+ props: ListEntry &
+ Pick & { editingMessageId?: string },
+) {
+ const [local, other] = splitProps(props, [
+ "t",
+ "highlightedMessageId",
+ "editingMessageId",
+ ]);
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/components/app/interface/desktop/Titlebar.tsx b/components/app/interface/desktop/Titlebar.tsx
new file mode 100644
index 0000000..25fbf80
--- /dev/null
+++ b/components/app/interface/desktop/Titlebar.tsx
@@ -0,0 +1,213 @@
+import { Match, Show, Switch, createSignal } from "solid-js";
+import { Motion, Presence } from "solid-motionone";
+
+import { css } from "styled-system/css";
+import { styled } from "styled-system/jsx";
+
+import { useClientLifecycle } from "@revolt/client";
+import { State, TransitionType } from "@revolt/client/Controller";
+import { Button, Ripple, symbolSize, typography } from "@revolt/ui";
+
+import MdBuild from "@material-symbols/svg-400/outlined/build.svg?component-solid";
+import MdClose from "@material-symbols/svg-400/outlined/close.svg?component-solid";
+import MdCollapseContent from "@material-symbols/svg-400/outlined/collapse_content.svg?component-solid";
+import MdExpandContent from "@material-symbols/svg-400/outlined/expand_content.svg?component-solid";
+import MdMinimize from "@material-symbols/svg-400/outlined/minimize.svg?component-solid";
+
+import Wordmark from "../../../../public/assets/web/wordmark.svg?component-solid";
+import { pendingUpdate } from "../../../../src/serviceWorkerInterface";
+
+export function Titlebar() {
+ const [isMaximised, setIsMaximised] = createSignal(
+ window.native ? window.desktopConfig.get().windowState.isMaximised : false,
+ );
+ const { lifecycle } = useClientLifecycle();
+
+ function isDisconnected() {
+ return [
+ State.Connecting,
+ State.Disconnected,
+ State.Reconnecting,
+ State.Offline,
+ ].includes(lifecycle.state());
+ }
+
+ function maximise() {
+ window.native.maximise();
+ setIsMaximised((t) => !t);
+ }
+
+ return (
+
+
+
+
+
+ {" "}
+
+
+
+
+
+
+
+ Connecting
+
+ {/* Connected */}
+
+ Disconnected
+
+ lifecycle.transition({
+ type: TransitionType.Retry,
+ })
+ }
+ >
+ (reconnect now)
+
+
+
+ Reconnecting
+
+
+ Device is offline
+
+ lifecycle.transition({
+ type: TransitionType.Retry,
+ })
+ }
+ style={{
+ "-webkit-app-region": "no-drag",
+ }}
+ >
+ (reconnect now)
+
+
+
+
+ {" "}
+
+
+ Update
+
+
+
+
+
+
+
+
+
+
+
+ }
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+const Base = styled("div", {
+ base: {
+ flexShrink: 0,
+ height: "29px",
+ userSelect: "none",
+
+ display: "flex",
+ alignItems: "center",
+
+ fill: "var(--md-sys-color-on-surface)",
+ },
+ variants: {
+ disconnected: {
+ true: {
+ color: "var(--md-sys-color-on-primary-container)",
+ background: "var(--md-sys-color-primary-container)",
+ },
+ false: {
+ color: "var(--md-sys-color-outline)",
+ background: "var(--md-sys-color-surface-container-high)",
+ },
+ },
+ },
+});
+
+const Title = styled("div", {
+ base: {
+ display: "flex",
+ gap: "var(--gap-md)",
+ alignItems: "center",
+ paddingInlineStart: "var(--gap-md)",
+
+ color: "var(--md-sys-color-on-surface)",
+ ...typography.raw({ class: "title", size: "small" }),
+ },
+});
+
+const DragHandle = styled("div", {
+ base: {
+ flexGrow: 1,
+ height: "100%",
+
+ display: "flex",
+ gap: "var(--gap-md)",
+ alignItems: "center",
+ paddingInlineStart: "var(--gap-md)",
+
+ ...typography.raw({ class: "label", size: "large" }),
+ },
+});
+
+const Action = styled("a", {
+ base: {
+ cursor: "pointer",
+ position: "relative",
+
+ display: "grid",
+ placeItems: "center",
+
+ height: "100%",
+ aspectRatio: "3/2",
+ },
+});
diff --git a/components/app/interface/settings/ChannelSettings.tsx b/components/app/interface/settings/ChannelSettings.tsx
new file mode 100644
index 0000000..d00fa69
--- /dev/null
+++ b/components/app/interface/settings/ChannelSettings.tsx
@@ -0,0 +1,168 @@
+import {
+ BiRegularListUl,
+ BiSolidCloud,
+ BiSolidInfoCircle,
+ BiSolidTrash,
+} from "solid-icons/bi";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import { Channel } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { TextWithEmoji } from "@revolt/markdown";
+import { useModals } from "@revolt/modal";
+import { ColouredText } from "@revolt/ui";
+
+import { SettingsConfiguration } from ".";
+import ChannelOverview from "./channel/Overview";
+import { ChannelPermissionsEditor } from "./channel/permissions/ChannelPermissionsEditor";
+import { ChannelPermissionsOverview } from "./channel/permissions/ChannelPermissionsOverview";
+import { ViewWebhook } from "./channel/webhooks/ViewWebhook";
+import { WebhooksList } from "./channel/webhooks/WebhooksList";
+
+const Config: SettingsConfiguration = {
+ /**
+ * Page titles
+ */
+ title(ctx, key) {
+ const client = useClient();
+ const { t } = useLingui();
+
+ if (key.startsWith("webhooks/")) {
+ const webhook = client().channelWebhooks.get(key.substring(9));
+ if (webhook) return webhook.name;
+ }
+
+ if (key.startsWith("permissions/")) {
+ if (key === "permissions/default") return t`Default Permissions`;
+
+ return ctx.context.server?.roles.get(key.substring(12))?.name ?? "";
+ }
+
+ return ctx.entries
+ .flatMap((category) => category.entries)
+ .find((entry) => entry.id === key)?.title as string;
+ },
+
+ /**
+ * Render the current channel settings page
+ */
+ // we take care of the reactivity ourselves
+ /* eslint-disable solid/components-return-once */
+ render(props, channel) {
+ const id = props.page();
+ const client = useClient();
+
+ if (id?.startsWith("webhooks/")) {
+ const webhook = client().channelWebhooks.get(id.substring(9));
+ return ;
+ }
+
+ if (id?.startsWith("permissions/")) {
+ if (id === "permissions/default") {
+ return (
+
+ );
+ }
+
+ return (
+
+ );
+ }
+
+ switch (id) {
+ case "overview":
+ return ;
+ case "permissions":
+ switch (channel.type) {
+ case "Group":
+ return ;
+ case "TextChannel":
+ return ;
+ default:
+ return null;
+ }
+ case "webhooks":
+ return ;
+ default:
+ return null;
+ }
+ },
+ /* eslint-enable solid/components-return-once */
+
+ /**
+ * Generate list of categories / entries for channel settings
+ * @returns List
+ */
+ list(channel) {
+ const { openModal } = useModals();
+
+ return {
+ context: channel,
+ entries: [
+ {
+ title: ,
+ entries: [
+ {
+ id: "overview",
+ icon: ,
+ title: Overview ,
+ },
+ {
+ hidden:
+ channel.type === "SavedMessages" ||
+ !channel.havePermission("ManagePermissions"),
+ id: "permissions",
+ icon: ,
+ title: Permissions ,
+ },
+ {
+ hidden:
+ !channel.havePermission("ManageWebhooks") &&
+ import.meta.env.DEV,
+ id: "webhooks",
+ icon: ,
+ title: Webhooks ,
+ },
+ ],
+ },
+ {
+ hidden: !(
+ channel.type !== "Group" && channel.havePermission("ManageChannel")
+ ),
+ entries: [
+ {
+ icon: (
+
+ ),
+ title: (
+
+ Delete Channel
+
+ ),
+ onClick() {
+ openModal({
+ type: "delete_channel",
+ channel,
+ });
+ },
+ },
+ ],
+ },
+ ],
+ };
+ },
+};
+
+export default Config;
+
+export type ChannelSettingsProps = {
+ /**
+ * Channel
+ */
+ channel: Channel;
+};
diff --git a/components/app/interface/settings/ServerSettings.tsx b/components/app/interface/settings/ServerSettings.tsx
new file mode 100644
index 0000000..c7b4800
--- /dev/null
+++ b/components/app/interface/settings/ServerSettings.tsx
@@ -0,0 +1,191 @@
+import {
+ BiSolidEnvelope,
+ BiSolidFlagAlt,
+ BiSolidGroup,
+ BiSolidHappyBeaming,
+ BiSolidInfoCircle,
+ BiSolidTrash,
+ BiSolidUserX,
+} from "solid-icons/bi";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import { Server } from "stoat.js";
+
+import { useUser } from "@revolt/client";
+import { TextWithEmoji } from "@revolt/markdown";
+import { useModals } from "@revolt/modal";
+import { ColouredText } from "@revolt/ui";
+
+import { SettingsConfiguration } from ".";
+import { ChannelPermissionsEditor } from "./channel/permissions/ChannelPermissionsEditor";
+import Overview from "./server/Overview";
+import { ListServerBans } from "./server/bans/ListBans";
+import { EmojiList } from "./server/emojis/EmojiList";
+import { ListServerInvites } from "./server/invites/ListServerInvites";
+import { ServerRoleEditor } from "./server/roles/ServerRoleEditor";
+import { ServerRoleOverview } from "./server/roles/ServerRoleOverview";
+
+const Config: SettingsConfiguration = {
+ /**
+ * Page titles
+ * @param key
+ */
+ title(ctx, key) {
+ const { t } = useLingui();
+
+ if (key.startsWith("roles/")) {
+ if (key === "roles/default") return t`Default Permissions`;
+
+ return ctx.context.roles.get(key.substring(6))?.name ?? "";
+ }
+
+ return ctx.entries
+ .flatMap((category) => category.entries)
+ .find((entry) => entry.id === key)?.title as string;
+ },
+
+ /**
+ * Render the current server settings page
+ */
+ // we take care of the reactivity ourselves
+ /* eslint-disable solid/components-return-once */
+ render(props, server) {
+ const id = props.page();
+
+ if (!server.$exists) {
+ useModals().pop();
+ return null;
+ }
+
+ if (id?.startsWith("roles/")) {
+ if (id === "roles/default") {
+ return (
+
+ );
+ }
+
+ return ;
+ }
+
+ switch (id) {
+ case "overview":
+ return ;
+ case "emojis":
+ return ;
+ case "roles":
+ return ;
+ case "invites":
+ return ;
+ case "bans":
+ return ;
+
+ default:
+ return null;
+ }
+ },
+ /* eslint-enable solid/components-return-once */
+
+ /**
+ * Generate list of categories / entries for server settings
+ * @returns List
+ */
+ list(server) {
+ const user = useUser();
+ const { openModal } = useModals();
+
+ return {
+ context: server,
+ entries: [
+ {
+ title: ,
+ entries: [
+ {
+ id: "overview",
+ icon: ,
+ title: Overview ,
+ },
+ ],
+ },
+ {
+ hidden: !server.havePermission("ManageCustomisation"),
+ title: Customisation ,
+ entries: [
+ {
+ id: "emojis",
+ icon: ,
+ title: Emojis ,
+ },
+ ],
+ },
+ {
+ hidden:
+ !server.havePermission("ManageServer") &&
+ !server.havePermission("BanMembers"),
+ title: User Management ,
+ entries: [
+ {
+ hidden: true,
+ id: "members",
+ icon: ,
+ title: Members ,
+ },
+ {
+ hidden: !(
+ server.havePermission("ManageRole") ||
+ server.havePermission("ManagePermissions")
+ ),
+ id: "roles",
+ icon: ,
+ title: Roles ,
+ },
+ {
+ hidden: !server.havePermission("ManageServer"),
+ id: "invites",
+ icon: ,
+ title: Invites ,
+ },
+ {
+ hidden: !server.havePermission("BanMembers"),
+ id: "bans",
+ icon: ,
+ title: Bans ,
+ },
+ ],
+ },
+ {
+ hidden: !(server.ownerId === user()?.id),
+ entries: [
+ {
+ icon: (
+
+ ),
+ title: (
+
+ Delete Server
+
+ ),
+ /**
+ * Handle server deletion request
+ */
+ onClick() {
+ openModal({
+ type: "delete_server",
+ server,
+ });
+ },
+ },
+ ],
+ },
+ ],
+ };
+ },
+};
+
+export default Config;
+
+export type ServerSettingsProps = {
+ /**
+ * Server
+ */
+ server: Server;
+};
diff --git a/components/app/interface/settings/Settings.tsx b/components/app/interface/settings/Settings.tsx
new file mode 100644
index 0000000..bd60cad
--- /dev/null
+++ b/components/app/interface/settings/Settings.tsx
@@ -0,0 +1,174 @@
+import {
+ type JSX,
+ Accessor,
+ createContext,
+ createMemo,
+ createSignal,
+ untrack,
+ useContext,
+} from "solid-js";
+import { Motion, Presence } from "solid-motionone";
+
+import { Rerun } from "@solid-primitives/keyed";
+
+import { SettingsConfiguration, SettingsEntry, SettingsList } from ".";
+import { SettingsContent } from "./_layout/Content";
+import { SettingsSidebar } from "./_layout/Sidebar";
+
+export interface SettingsProps {
+ /**
+ * Close settings
+ */
+ onClose?: () => void;
+
+ /**
+ * Settings context
+ */
+ context: never;
+}
+
+/**
+ * Transition animation
+ */
+export type SettingsTransition = "normal" | "to-child" | "to-parent";
+
+/**
+ * Provide navigation to child components
+ */
+const SettingsNavigationContext = createContext<{
+ page: Accessor;
+ navigate: (path: string | SettingsEntry) => void;
+}>();
+
+/**
+ * Generic Settings component
+ */
+export function Settings(props: SettingsProps & SettingsConfiguration) {
+ const [page, setPage] = createSignal(
+ // eslint-disable-next-line
+ (props.context as any)?.page,
+ );
+ const [transition, setTransition] =
+ createSignal("normal");
+
+ /**
+ * Navigate to a certain page
+ */
+ function navigate(entry: string | SettingsEntry) {
+ let id;
+ if (typeof entry === "object") {
+ if (entry.onClick) {
+ entry.onClick();
+ } else if (entry.href) {
+ window.open(entry.href, "_blank");
+ } else if (entry.id) {
+ id = entry.id;
+ }
+ } else {
+ id = entry;
+ }
+
+ if (!id) return;
+
+ const current = page();
+ if (current?.startsWith(id)) {
+ setTransition("to-parent");
+ } else if (current && id.startsWith(current)) {
+ setTransition("to-child");
+ } else {
+ setTransition("normal");
+ }
+
+ setPage(id);
+ }
+
+ return (
+
+
+ {(list) => (
+ <>
+
+
+
+
+
+ untrack(transition) !== "normal" &&
+ setTimeout(() => (el.style.visibility = "visible"), 250)
+ }
+ initial={
+ transition() === "normal"
+ ? { opacity: 0, y: 50 }
+ : transition() === "to-child"
+ ? {
+ x: "100vw",
+ }
+ : { x: "-100vw" }
+ }
+ animate={{
+ opacity: 1,
+ x: 0,
+ y: 0,
+ }}
+ exit={
+ transition() === "normal"
+ ? undefined
+ : transition() === "to-child"
+ ? {
+ x: "-100vw",
+ }
+ : { x: "100vw" }
+ }
+ transition={{
+ duration: 0.2,
+ easing: [0.17, 0.67, 0.58, 0.98],
+ }}
+ >
+ {props.render({ page }, props.context)}
+
+
+
+
+ >
+ )}
+
+
+ );
+}
+
+/**
+ * Memoise the list but generate it within context
+ */
+function MemoisedList(props: {
+ context: never;
+ list: (context: never) => SettingsList;
+ children: (list: Accessor>) => JSX.Element;
+}) {
+ /**
+ * Generate list of categories / links
+ */
+ const list = createMemo(() => props.list(props.context));
+
+ return <>{props.children(list)}>;
+}
+
+/**
+ * Use settings navigation context
+ */
+export const useSettingsNavigation = () =>
+ useContext(SettingsNavigationContext)!;
diff --git a/components/app/interface/settings/UserSettings.tsx b/components/app/interface/settings/UserSettings.tsx
new file mode 100644
index 0000000..ba02230
--- /dev/null
+++ b/components/app/interface/settings/UserSettings.tsx
@@ -0,0 +1,306 @@
+import { Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { Server } from "stoat.js";
+import { css } from "styled-system/css";
+
+import { useClient, useClientLifecycle } from "@revolt/client";
+import { useUser } from "@revolt/markdown/users";
+import { useModals } from "@revolt/modal";
+import { ColouredText, Column, Text, iconSize } from "@revolt/ui";
+import { Symbol } from "@revolt/ui/components/utils/Symbol";
+
+import MdAccountCircle from "@material-design-icons/svg/outlined/account_circle.svg?component-solid";
+import MdCoffee from "@material-design-icons/svg/outlined/coffee.svg?component-solid";
+import MdLanguage from "@material-design-icons/svg/outlined/language.svg?component-solid";
+import MdLogout from "@material-design-icons/svg/outlined/logout.svg?component-solid";
+import MdMemory from "@material-design-icons/svg/outlined/memory.svg?component-solid";
+import MdMic from "@material-design-icons/svg/outlined/mic.svg?component-solid";
+import MdPalette from "@material-design-icons/svg/outlined/palette.svg?component-solid";
+import MdRateReview from "@material-design-icons/svg/outlined/rate_review.svg?component-solid";
+import MdScience from "@material-design-icons/svg/outlined/science.svg?component-solid";
+import MdSmartToy from "@material-design-icons/svg/outlined/smart_toy.svg?component-solid";
+import MdVerifiedUser from "@material-design-icons/svg/outlined/verified_user.svg?component-solid";
+import MdWorkspacePremium from "@material-design-icons/svg/outlined/workspace_premium.svg?component-solid";
+
+import pkg from "../../../../package.json";
+
+import { SettingsConfiguration } from ".";
+import { MyAccount } from "./user/Account";
+import AdvancedSettings from "./user/Advanced";
+import { Feedback } from "./user/Feedback";
+import { LanguageSettings } from "./user/Language";
+import Native from "./user/Native";
+import { Sessions } from "./user/Sessions";
+import { AccountCard } from "./user/_AccountCard";
+import { AppearanceMenu } from "./user/appearance";
+import { MyBots, ViewBot } from "./user/bots";
+import { EditProfile } from "./user/profile";
+import { EditSubscription } from "./user/subscriptions";
+import { VoiceSettings } from "./user/voice/VoiceSettings";
+
+const Config: SettingsConfiguration<{ server: Server }> = {
+ /**
+ * Page titles
+ * @param key
+ */
+ title(ctx, key) {
+ if (key.startsWith("bots/")) {
+ const user = useUser(key.substring(5));
+ return user()!.username;
+ }
+
+ return ctx.entries
+ .flatMap((category) => category.entries)
+ .find((entry) => entry.id === key)?.title as string;
+ },
+
+ /**
+ * Render the current client settings page
+ */
+ // we take care of the reactivity ourselves
+ /* eslint-disable solid/reactivity */
+ /* eslint-disable solid/components-return-once */
+ render(props) {
+ const id = props.page();
+ const client = useClient();
+
+ if (id?.startsWith("bots/")) {
+ const bot = client().bots.get(id.substring("bots/".length))!;
+ return ;
+ }
+
+ switch (id) {
+ case "account":
+ return ;
+ case "appearance":
+ return ;
+ case "advanced":
+ return ;
+ case "profile":
+ return ;
+ case "sessions":
+ return ;
+ case "bots":
+ return ;
+ case "language":
+ return ;
+ case "feedback":
+ return ;
+ case "subscribe":
+ return ;
+ case "native":
+ return ;
+ case "voice":
+ return ;
+ default:
+ return null;
+ }
+ },
+ /* eslint-enable solid/reactivity */
+ /* eslint-enable solid/components-return-once */
+
+ /**
+ * Generate list of categories / entries for client settings
+ * @returns List
+ */
+ list() {
+ const { pop } = useModals();
+ const { logout } = useClientLifecycle();
+
+ return {
+ context: null!,
+ prepend: (
+
+
+
+
+ ),
+ append: (
+
+
+
+ Version:
+ {" "}
+
+ {pkg.version} ({pkg["version-date"]})
+
+
+
+
+ Stoat for Desktop {window.native.versions.desktop()}
+
+
+
+ {window.native.versions.electron()},{" "}
+ {window.native.versions.node()},{" "}
+ {window.native.versions.chrome()}
+
+
+
+
+ ),
+ entries: [
+ {
+ title: User Settings ,
+ entries: [
+ {
+ id: "account",
+ icon: <>>,
+ title: <>>,
+ hidden: true,
+ },
+ {
+ id: "profile",
+ icon: ,
+ title: Profile ,
+ },
+ {
+ id: "sessions",
+ icon: ,
+ title: Sessions ,
+ },
+ ],
+ },
+ {
+ title: "Stoat",
+ entries: [
+ {
+ id: "bots",
+ icon: ,
+ title: My Bots ,
+ },
+ {
+ id: "feedback",
+ icon: ,
+ title: Feedback ,
+ },
+ ],
+ },
+ {
+ title: Subscriptions ,
+ hidden: import.meta.env.PROD,
+ entries: [
+ {
+ id: "subscribe",
+ icon: ,
+ title: "[premium]",
+ },
+ ],
+ },
+ {
+ title: Client Settings ,
+ entries: [
+ // {
+ // id: "audio",
+ // icon: ,
+ // title: t("app.settings.pages.audio.title"),
+ // hidden:
+ // !getController("state").experiments.isEnabled("voice_chat"),
+ // },
+ {
+ id: "voice",
+ icon: ,
+ title: Voice ,
+ },
+ {
+ id: "appearance",
+ icon: ,
+ title: Appearance ,
+ },
+ // {
+ // id: "accessibility",
+ // icon: ,
+ // title: t("app.settings.pages.accessibility.title"),
+ // },
+ // {
+ // id: "plugins",
+ // icon: ,
+ // title: t("app.settings.pages.plugins.title"),
+ // hidden: !getController("state").experiments.isEnabled("plugins"),
+ // },
+ // {
+ // id: "notifications",
+ // icon: ,
+ // title: t("app.settings.pages.notifications.title"),
+ // },
+ // {
+ // id: "keybinds",
+ // icon: ,
+ // title: t("app.settings.pages.keybinds.title"),
+ // },
+ {
+ id: "language",
+ icon: ,
+ title: Language ,
+ },
+ // {
+ // id: "sync",
+ // icon: ,
+ // title: t("app.settings.pages.sync.title"),
+ // },
+ {
+ id: "native",
+ hidden: !window.native,
+ icon: desktop_windows ,
+ title: Desktop ,
+ },
+ // {
+ // id: "experiments",
+ // icon: ,
+ // title: Experiments ,
+ // },
+ ],
+ },
+ {
+ entries: [
+ // {
+ // onClick: () =>
+ // getController("modal").push({ type: "changelog", posts: [] }),
+ // icon: ,
+ // title: t("app.special.modals.changelogs.title"),
+ // },
+ {
+ href: "https://github.com/stoatchat",
+ icon: ,
+ title: Source Code ,
+ },
+ {
+ id: "advanced",
+ icon: ,
+ title: Advanced ,
+ },
+ {
+ href: "https://ko-fi.com/stoatchat",
+ icon: ,
+ title: Donate ,
+ },
+ {
+ id: "logout",
+ icon: (
+
+ ),
+ title: (
+
+ Log Out
+
+ ),
+ onClick() {
+ pop();
+ logout();
+ },
+ },
+ ],
+ },
+ ],
+ };
+ },
+};
+
+export default Config;
diff --git a/components/app/interface/settings/_layout/Content.tsx b/components/app/interface/settings/_layout/Content.tsx
new file mode 100644
index 0000000..75d0fc1
--- /dev/null
+++ b/components/app/interface/settings/_layout/Content.tsx
@@ -0,0 +1,130 @@
+import { Accessor, JSX, Show } from "solid-js";
+
+import { css, cva } from "styled-system/css";
+import { styled } from "styled-system/jsx";
+
+import { Breadcrumbs, IconButton, Text } from "@revolt/ui";
+
+import MdClose from "@material-design-icons/svg/outlined/close.svg?component-solid";
+
+import { SettingsList } from "..";
+import { useSettingsNavigation } from "../Settings";
+
+/**
+ * Content portion of the settings menu
+ */
+export function SettingsContent(props: {
+ onClose?: () => void;
+ children: JSX.Element;
+ list: Accessor>;
+ title: (ctx: SettingsList, key: string) => string;
+ page: Accessor;
+}) {
+ const { navigate } = useSettingsNavigation();
+
+ return (
+
+
+
+
+
+
+ props.title(props.list() as SettingsList, key)
+ }
+ navigate={(keys) => navigate(keys.join("/"))}
+ />
+
+ {props.children}
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+/**
+ * Base styles
+ */
+const base = cva({
+ base: {
+ minWidth: 0,
+ flex: "1 1 800px",
+ flexDirection: "row",
+ display: "flex",
+ background: "var(--md-sys-color-surface-container-low)",
+ borderStartStartRadius: "30px",
+ borderEndStartRadius: "30px",
+
+ "& > a": {
+ textDecoration: "none",
+ },
+ },
+});
+
+/**
+ * Settings pane
+ */
+const InnerContent = styled("div", {
+ base: {
+ gap: "13px",
+ minWidth: 0,
+ width: "100%",
+ display: "flex",
+ maxWidth: "740px",
+ padding: "80px 32px",
+ justifyContent: "stretch",
+ zIndex: 1,
+ },
+});
+
+/**
+ * Pane content column
+ */
+const InnerColumn = styled("div", {
+ base: {
+ width: "100%",
+ gap: "var(--gap-md)",
+ display: "flex",
+ flexDirection: "column",
+ marginBlockEnd: "80px",
+ },
+});
+
+/**
+ * Positioning for close button
+ */
+const CloseAction = styled("div", {
+ base: {
+ flexGrow: 1,
+ flexShrink: 0,
+ padding: "80px 8px",
+ visibility: "visible",
+ position: "sticky",
+ top: 0,
+
+ "&:after": {
+ content: '"ESC"',
+ marginTop: "4px",
+ display: "flex",
+ justifyContent: "center",
+ width: "36px",
+ fontWeight: 600,
+ color: "var(--md-sys-color-on-surface)",
+ fontSize: "0.75rem",
+ },
+ },
+});
diff --git a/components/app/interface/settings/_layout/Sidebar.tsx b/components/app/interface/settings/_layout/Sidebar.tsx
new file mode 100644
index 0000000..c395090
--- /dev/null
+++ b/components/app/interface/settings/_layout/Sidebar.tsx
@@ -0,0 +1,146 @@
+import { Accessor, For, Setter, Show, onMount } from "solid-js";
+
+import { styled } from "styled-system/jsx";
+
+import { Column, OverflowingText, Ripple } from "@revolt/ui";
+
+// import MdError from "@material-design-icons/svg/filled/error.svg?component-solid";
+// import MdOpenInNew from "@material-design-icons/svg/filled/open_in_new.svg?component-solid";
+import { SettingsList } from "..";
+import { useSettingsNavigation } from "../Settings";
+
+import {
+ SidebarButton,
+ SidebarButtonContent,
+ SidebarButtonTitle,
+} from "./SidebarButton";
+
+/**
+ * Settings Sidebar Layout
+ */
+export function SettingsSidebar(props: {
+ list: Accessor>;
+
+ setPage: Setter;
+ page: Accessor;
+}) {
+ const { navigate } = useSettingsNavigation();
+
+ /**
+ * Select first page on load
+ */
+ onMount(() => {
+ if (!props.page()) {
+ props.setPage(props.list().entries[0].entries[0].id);
+ }
+ });
+
+ return (
+
+
+
+
+ {props.list().prepend}
+
+ {(category) => (
+
+
+
+ {category.title}
+
+
+
+ {(entry) => (
+
+ navigate(entry)}
+ aria-selected={
+ props.page()?.split("/")[0] ===
+ entry.id?.split("/")[0]
+ }
+ >
+
+
+ {entry.icon}
+
+
+ {entry.title}
+
+
+
+ {/*
+
+
+ */}
+
+
+ )}
+
+
+
+
+ )}
+
+ {props.list().append}
+
+
+
+
+ );
+}
+
+/**
+ * Base layout of the sidebar
+ */
+const Base = styled("div", {
+ base: {
+ display: "flex",
+ flex: "1 0 218px",
+ paddingLeft: "8px",
+ justifyContent: "flex-end",
+ },
+});
+
+/**
+ * Aligned content within the sidebar
+ */
+const Content = styled("div", {
+ base: {
+ minWidth: "230px",
+ maxWidth: "300px",
+ padding: "74px 0 8px",
+ display: "flex",
+ gap: "2px",
+
+ flexDirection: "column",
+
+ "& a > div": {
+ margin: 0,
+ },
+ },
+});
+
+/**
+ * Titles for each category
+ */
+const CategoryTitle = styled("span", {
+ base: {
+ overflow: "hidden",
+ whiteSpace: "nowrap",
+ textOverflow: "ellipsis",
+
+ textTransform: "uppercase",
+ fontSize: "0.75rem",
+ fontWeight: 700,
+ margin: "0 8px",
+ marginInlineEnd: "20px",
+
+ color: "var(--md-sys-color-outline)",
+ },
+});
diff --git a/components/app/interface/settings/_layout/SidebarButton.tsx b/components/app/interface/settings/_layout/SidebarButton.tsx
new file mode 100644
index 0000000..a24c271
--- /dev/null
+++ b/components/app/interface/settings/_layout/SidebarButton.tsx
@@ -0,0 +1,67 @@
+import { styled } from "styled-system/jsx";
+
+/**
+ * Sidebar button
+ */
+export const SidebarButton = styled("a", {
+ base: {
+ // for :
+ position: "relative",
+
+ minWidth: 0,
+
+ display: "flex",
+ alignItems: "center",
+ padding: "6px 8px",
+ borderRadius: "8px",
+ fontWeight: 500,
+ marginInlineEnd: "12px",
+ fontSize: "15px",
+ userSelect: "none",
+ transition: "background-color 0.1s ease-in-out",
+ color: "var(--md-sys-color-on-surface)",
+ fill: "var(--md-sys-color-on-surface)",
+ background: "unset",
+
+ "& svg": {
+ flexShrink: 0,
+ },
+ },
+ variants: {
+ "aria-selected": {
+ true: {
+ background: "var(--md-sys-color-primary-container)",
+ },
+ },
+ },
+});
+
+export const SidebarButtonTitle = styled("div", {
+ base: {
+ display: "flex",
+ alignItems: "center",
+ gap: "8px",
+ flexGrow: 1,
+ minWidth: 0,
+ paddingInlineEnd: "8px",
+ },
+});
+
+export const SidebarButtonContent = styled("div", {
+ base: {
+ minWidth: 0,
+ display: "flex",
+ flexDirection: "column",
+ },
+});
+
+export const SidebarButtonIcon = styled("div", {
+ base: {
+ display: "flex",
+ overflow: "hidden",
+ textOverflow: "ellipsis",
+ whiteSpace: "nowrap",
+ flexShrink: 0,
+ gap: "2px",
+ },
+});
diff --git a/components/app/interface/settings/channel/Overview.tsx b/components/app/interface/settings/channel/Overview.tsx
new file mode 100644
index 0000000..97f42c1
--- /dev/null
+++ b/components/app/interface/settings/channel/Overview.tsx
@@ -0,0 +1,147 @@
+import { createFormControl, createFormGroup } from "solid-forms";
+import { Match, Show, Switch } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import type { API } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import { useModals } from "@revolt/modal";
+import { Button, CircularProgress, Column, Form2, Row, Text } from "@revolt/ui";
+
+import { ChannelSettingsProps } from "../ChannelSettings";
+
+/**
+ * Channel overview
+ */
+export default function ChannelOverview(props: ChannelSettingsProps) {
+ const { t } = useLingui();
+ const client = useClient();
+ const { openModal } = useModals();
+
+ /* eslint-disable solid/reactivity */
+ // we want to take the initial value only
+ const editGroup = createFormGroup({
+ name: createFormControl(props.channel.name),
+ description: createFormControl(props.channel.description || ""),
+ icon: createFormControl(
+ props.channel.animatedIconURL,
+ ),
+ });
+ /* eslint-enable solid/reactivity */
+
+ function onReset() {
+ editGroup.controls.name.setValue(props.channel.name);
+ editGroup.controls.description.setValue(props.channel.description || "");
+ editGroup.controls.icon.setValue(props.channel.animatedIconURL ?? null);
+ }
+
+ async function onSubmit() {
+ const changes: API.DataEditChannel = {
+ remove: [],
+ };
+
+ if (editGroup.controls.name.isDirty) {
+ changes.name = editGroup.controls.name.value.trim();
+ }
+
+ if (editGroup.controls.description.isDirty) {
+ const description = editGroup.controls.description.value.trim();
+
+ if (description) {
+ changes.description = description;
+ } else {
+ changes.remove!.push("Description");
+ }
+ }
+
+ if (editGroup.controls.icon.isDirty) {
+ if (!editGroup.controls.icon.value) {
+ changes.remove!.push("Icon");
+ } else if (Array.isArray(editGroup.controls.icon.value)) {
+ const body = new FormData();
+ body.append("file", editGroup.controls.icon.value[0]);
+
+ const [key, value] = client().authenticationHeader;
+ const data: { id: string } = await fetch(
+ `${CONFIGURATION.DEFAULT_MEDIA_URL}/icons`,
+ {
+ method: "POST",
+ body,
+ headers: {
+ [key]: value,
+ },
+ },
+ ).then((res) => res.json());
+
+ changes.icon = data.id;
+ }
+ }
+
+ await props.channel.edit(changes);
+ }
+
+ const submit = Form2.useSubmitHandler(editGroup, onSubmit, onReset);
+
+ return (
+
+
+
+
+ Mark as Mature
+
+
+
+ Users will be asked to confirm their age before opening this
+ channel.
+
+
+
+
+ openModal({
+ type: "channel_toggle_mature",
+ channel: props.channel,
+ })
+ }
+ >
+ Mark as Mature}>
+
+ Unmark as Mature
+
+
+
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx b/components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
new file mode 100644
index 0000000..a08e18e
--- /dev/null
+++ b/components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
@@ -0,0 +1,580 @@
+import { For, Match, Show, Switch, createSignal } from "solid-js";
+
+import { useLingui } from "@lingui-solid/solid/macro";
+import {
+ API,
+ Channel,
+ DEFAULT_PERMISSION_DIRECT_MESSAGE,
+ Server,
+} from "stoat.js";
+import { css } from "styled-system/css";
+import { styled } from "styled-system/jsx";
+
+import { Button, Checkbox2, OverrideSwitch, Row, Text } from "@revolt/ui";
+
+type Props =
+ | { type: "server_default"; context: Server }
+ | { type: "server_role"; context: Server; roleId: string }
+ | { type: "channel_default"; context: Channel }
+ | { type: "channel_role"; context: Channel; roleId: string }
+ | { type: "group"; context: Channel };
+
+type Context = API.Channel["channel_type"] | "Server";
+
+/**
+ * Generic editor for any channel permissions
+ */
+export function ChannelPermissionsEditor(props: Props) {
+ const { t } = useLingui();
+
+ const context: Context =
+ // eslint-disable-next-line solid/reactivity
+ props.context instanceof Server ? "Server" : props.context.type;
+
+ /**
+ * Current permission value, normalised to [allow, deny]
+ * @returns [allow, deny] BigInts
+ */
+ function currentValue() {
+ switch (props.type) {
+ case "server_default":
+ return [BigInt(props.context.defaultPermissions), BigInt(0)];
+ case "server_role":
+ return [
+ BigInt(props.context.roles?.get(props.roleId)?.permissions.a || 0),
+ BigInt(props.context.roles?.get(props.roleId)?.permissions.d || 0),
+ ];
+ case "channel_default":
+ return [
+ BigInt(props.context.defaultPermissions?.a || 0),
+ BigInt(props.context.defaultPermissions?.d || 0),
+ ];
+ case "channel_role":
+ return [
+ BigInt(props.context.rolePermissions?.[props.roleId]?.a || 0),
+ BigInt(props.context.rolePermissions?.[props.roleId]?.d || 0),
+ ];
+ case "group":
+ return [
+ BigInt(
+ props.context.permissions ?? DEFAULT_PERMISSION_DIRECT_MESSAGE,
+ ),
+ BigInt(0),
+ ];
+ }
+ }
+
+ /**
+ * Current edited values
+ */
+ const [value, setValue] = createSignal(currentValue());
+
+ /**
+ * Whether there is a pending save
+ */
+ function unsavedChanges() {
+ const [a1, a2] = currentValue(),
+ [b1, b2] = value();
+
+ return a1 !== b1 || a2 !== b2;
+ }
+
+ /**
+ * Reset to the current value
+ */
+ function reset() {
+ setValue(currentValue());
+ }
+
+ /**
+ * Commit changes
+ * @todo mutator
+ */
+ function save() {
+ switch (props.type) {
+ case "server_default":
+ props.context.setPermissions(undefined, Number(value()[0]));
+ break;
+ case "server_role":
+ props.context.setPermissions(props.roleId, {
+ allow: Number(value()[0]),
+ deny: Number(value()[1]),
+ });
+ break;
+ case "channel_default":
+ props.context.setPermissions(undefined, {
+ allow: Number(value()[0]),
+ deny: Number(value()[1]),
+ });
+ break;
+ case "channel_role":
+ props.context.setPermissions(props.roleId, {
+ allow: Number(value()[0]),
+ deny: Number(value()[1]),
+ });
+ break;
+ case "group":
+ props.context.setPermissions(undefined, Number(value()[0]));
+ break;
+ }
+ }
+
+ const Permissions: {
+ heading?: string;
+ key: string;
+ value: bigint;
+ title: string;
+ description: Partial>;
+ }[] = [
+ {
+ heading: t`Admin`,
+ key: "ManageChannel",
+ value: 1n ** 0n,
+ title: t`Manage Channel`,
+ description: {
+ Group: t`Edit group name and description`,
+ Any: t`Edit and delete channel`,
+ },
+ },
+ {
+ key: "ManageServer",
+ value: 2n ** 1n,
+ title: t`Manage Server`,
+ description: {
+ Server: t`Edit the server's information and settings`,
+ },
+ },
+ {
+ key: "ManagePermissions",
+ value: 2n ** 2n,
+ title: t`Manage Permissions`,
+ description: {
+ Group: t`Whether other users can edit these settings`,
+ TextChannel: t`Edit channel-specific role and default permissions`,
+ Server: t`Edit any permissions on the server`,
+ },
+ },
+ {
+ key: "ManageRole",
+ value: 2n ** 3n,
+ title: t`Manage Roles`,
+ description: {
+ Server: t`Create and edit server roles`,
+ },
+ },
+ {
+ key: "ManageCustomisation",
+ value: 2n ** 4n,
+ title: t`Manage Customisation`,
+ description: {
+ Server: t`Create server emoji`,
+ },
+ },
+ {
+ heading: t`Members`,
+ key: "KickMembers",
+ value: 2n ** 6n,
+ title: t`Kick Members`,
+ description: {
+ Server: t`Kick lower-ranking members from the server`,
+ },
+ },
+ {
+ key: "BanMembers",
+ value: 2n ** 7n,
+ title: t`Ban Members`,
+ description: {
+ Server: t`Ban lower-ranking members from the server`,
+ },
+ },
+ {
+ key: "TimeoutMembers",
+ value: 2n ** 8n,
+ title: t`Timeout Members`,
+ description: {
+ Server: t`Temporarily prevent lower-ranking members from interacting`,
+ },
+ },
+ {
+ key: "AssignRoles",
+ value: 2n ** 9n,
+ title: t`Assign Roles`,
+ description: {
+ Server: t`Assign lower-ranked roles to lower-ranking members`,
+ },
+ },
+ {
+ key: "ChangeNickname",
+ value: 2n ** 10n,
+ title: t`Change Nickname`,
+ description: {
+ Server: t`Change own nickname`,
+ },
+ },
+ {
+ key: "ManageNicknames",
+ value: 2n ** 11n,
+ title: t`Manage Nicknames`,
+ description: {
+ Server: t`Change other members' nicknames`,
+ },
+ },
+ {
+ key: "ChangeAvavar",
+ value: 2n ** 12n,
+ title: t`Change Avatar`,
+ description: {
+ Server: t`Change own avatar`,
+ },
+ },
+ {
+ key: "RemoveAvatars",
+ value: 2n ** 13n,
+ title: t`Remove Avatars`,
+ description: {
+ Server: t`Remove other members' avatars`,
+ },
+ },
+ {
+ heading: t`Channels`,
+ key: "ViewChannel",
+ value: 2n ** 20n,
+ title: t`View Channel`,
+ description: {
+ TextChannel: t`Able to access this channel`,
+ Server: t`Able to access channels on this server`,
+ },
+ },
+ {
+ key: "ReadMessageHistory",
+ value: 2n ** 21n,
+ title: t`Read Message History`,
+ description: {
+ TextChannel: t`Read past messages sent in channel`,
+ Server: t`Read past messages sent in channels`,
+ },
+ },
+ {
+ key: "SendMessage",
+ value: 2n ** 22n,
+ title: t`Send Messages`,
+ description: {
+ Group: t`Send messages in channel`,
+ TextChannel: t`Send messages in channel`,
+ Server: t`Send messages in channels`,
+ },
+ },
+ {
+ key: "ManageMessages",
+ value: 2n ** 23n,
+ title: t`Manage Messages`,
+ description: {
+ Group: t`Delete and pin messages sent by other members`,
+ TextChannel: t`Delete and pin messages sent by other members`,
+ Server: t`Delete and pin messages sent by other members`,
+ },
+ },
+ {
+ key: "ManageWebhooks",
+ value: 2n ** 24n,
+ title: t`Manage Webhooks`,
+ description: {
+ Group: t`Create and edit webhooks`,
+ TextChannel: t`Create and edit webhooks`,
+ Server: t`Create and edit webhooks`,
+ },
+ },
+ {
+ key: "InviteOthers",
+ value: 2n ** 25n,
+ title: t`Invite Others`,
+ description: {
+ Group: t`Add new members to the group`,
+ Any: t`Create invites for others to use`,
+ },
+ },
+ {
+ heading: t`Messaging`,
+ key: "SendEmbeds",
+ value: 2n ** 26n,
+ title: t`Send Embeds`,
+ description: {
+ Any: t`Send embedded content such as link embeds or custom embeds`,
+ },
+ },
+ {
+ key: "UploadFiles",
+ value: 2n ** 27n,
+ title: t`Upload Files`,
+ description: {
+ Any: t`Send attachments to chat`,
+ },
+ },
+ {
+ key: "Masquerade",
+ value: 2n ** 28n,
+ title: t`Masquerade`,
+ description: {
+ Any: t`Allow members to change name and avatar per-message`,
+ },
+ },
+ {
+ key: "React",
+ value: 2n ** 29n,
+ title: t`React`,
+ description: {
+ Any: t`React to messages with emoji`,
+ },
+ },
+ {
+ heading: t`Voice`,
+ key: "Connect",
+ value: 2n ** 30n,
+ title: t`Connect`,
+ description: {
+ TextChannel: t`Connect to voice channel`,
+ Server: t`Connect to voice channel`,
+ },
+ },
+ {
+ key: "Speak",
+ value: 2n ** 31n,
+ title: t`Speak`,
+ description: {
+ TextChannel: t`Able to speak in voice call`,
+ Server: t`Able to speak in voice call`,
+ },
+ },
+ {
+ key: "Video",
+ value: 2n ** 32n,
+ title: t`Video`,
+ description: {
+ TextChannel: t`Share camera or screen in voice call`,
+ Server: t`Share camera or screen in voice call`,
+ },
+ },
+ {
+ key: "MuteMembers",
+ value: 2n ** 33n,
+ title: t`Mute Members`,
+ description: {
+ TextChannel: t`Mute lower-ranking members in voice call`,
+ Server: t`Mute lower-ranking members in voice call`,
+ },
+ },
+ {
+ key: "DeafenMembers",
+ value: 2n ** 34n,
+ title: t`Deafen Members`,
+ description: {
+ TextChannel: t`Deafen lower-ranking members in voice call`,
+ Server: t`Deafen lower-ranking members in voice call`,
+ },
+ },
+ {
+ key: "MoveMembers",
+ value: 2n ** 35n,
+ title: t`Move Members`,
+ description: {
+ TextChannel: t`Move members between voice channels`,
+ Server: t`Move members between voice channels`,
+ },
+ },
+ {
+ key: "Listen",
+ value: 2n ** 36n,
+ title: t`Listen`,
+ description: {
+ TextChannel: t`Hear other people and see their video`,
+ Server: t`Hear other people and see their video`,
+ },
+ },
+ {
+ heading: t`Mentions`,
+ key: "MentionEveryone",
+ value: 2n ** 37n,
+ title: t`Mention Everyone`,
+ description: {
+ Any: t`Mention everyone and online members inside the server`,
+ },
+ },
+ {
+ key: "MentionRoles",
+ value: 2n ** 38n,
+ title: t`Mention Roles`,
+ description: {
+ Any: t`Mention specific roles`,
+ },
+ },
+ ];
+
+ /**
+ * Find description for this permission in context
+ * If null, don't show this permission entry
+ * @param entry Entry
+ * @returns Description or null
+ */
+ function description(entry: (typeof Permissions)[number]) {
+ const desc = entry.description;
+ return desc[context] ?? desc.Any;
+ }
+
+ return (
+
+
+ {(entry) => (
+
+
+
+ {entry.heading}
+
+
+
+
+ setValue((v) => [v[0] ^ BigInt(entry.value), v[1]])
+ }
+ havePermission={
+ (props.context.permission & entry.value) === entry.value
+ }
+ />
+ }
+ >
+
+ {
+ let allow = value()[0] & ~entry.value;
+ let deny = value()[1] & ~entry.value;
+
+ if (target === "allow") allow |= entry.value;
+ if (target === "deny") deny |= entry.value;
+
+ setValue([allow, deny]);
+ }}
+ havePermission={
+ (props.context.permission & entry.value) === entry.value
+ }
+ />
+
+
+
+ )}
+
+
+
+
+
+ Reset
+
+
+ Save permissions
+
+
+
+
+ );
+}
+
+const StickyPanel = styled("div", {
+ base: {
+ position: "sticky",
+ width: "fit-content",
+ padding: "var(--gap-md)",
+ bottom: "var(--gap-lg)",
+ borderRadius: "var(--borderRadius-xl)",
+ background: "var(--md-sys-color-surface)",
+ },
+});
+
+function ChannelPermissionToggle(props: {
+ key: string;
+ title: string;
+ description: string;
+
+ value: boolean;
+ onChange: (value: boolean) => void;
+
+ havePermission: boolean;
+}) {
+ return (
+ props.onChange(event.currentTarget.checked)}
+ disabled={!props.havePermission}
+ >
+
+ {props.title}
+ {props.description}
+
+
+ );
+}
+
+function ChannelPermissionOverride(props: {
+ key: string;
+ title: string;
+ description: string;
+
+ value: "allow" | "deny" | "neutral";
+ onChange: (value: "allow" | "deny" | "neutral") => void;
+
+ havePermission: boolean;
+}) {
+ return (
+
+
+ {props.title}
+ {props.description}
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx b/components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
new file mode 100644
index 0000000..47b4c06
--- /dev/null
+++ b/components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
@@ -0,0 +1,124 @@
+import { For, createMemo } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { Channel } from "stoat.js";
+import { styled } from "styled-system/jsx";
+
+import { CategoryButton, Column, Text } from "@revolt/ui";
+
+import { useSettingsNavigation } from "../../Settings";
+
+/**
+ * Count set bits
+ * @param v Number
+ * @returns Set bits
+ */
+function countBits(v: bigint) {
+ let bits = 0;
+ for (let i = 0n; i < 52n; i++) {
+ if (((1n << i) & v) === 1n << i) {
+ bits++;
+ }
+ }
+
+ return bits;
+}
+
+/**
+ * Menu to select what permission set to change
+ */
+export function ChannelPermissionsOverview(props: { context: Channel }) {
+ const { navigate } = useSettingsNavigation();
+
+ const roles = createMemo(() => {
+ const ordered = props.context.server?.orderedRoles;
+
+ return {
+ active: ordered?.filter(
+ (role) =>
+ countBits(props.context.rolePermissions?.[role.id]?.a || 0n) > 0 ||
+ countBits(props.context.rolePermissions?.[role.id]?.d || 0n) > 0,
+ ),
+ unused: ordered?.filter(
+ (role) =>
+ countBits(props.context.rolePermissions?.[role.id]?.a || 0n) === 0 &&
+ countBits(props.context.rolePermissions?.[role.id]?.d || 0n) === 0,
+ ),
+ };
+ });
+
+ return (
+
+ Affects all roles and users}
+ onClick={() => navigate("permissions/default")}
+ >
+ Default Permissions
+
+
+
+ Role Permissions
+
+ {(role) => (
+
+ }
+ action="chevron"
+ onClick={() => navigate(`permissions/${role.id}`)}
+ description={
+
+ Grants {countBits(props.context.rolePermissions![role.id].a)}{" "}
+ permissions and denies{" "}
+ {countBits(props.context.rolePermissions![role.id].d)}{" "}
+ permissions
+
+ }
+ >
+ {role.name}
+
+ )}
+
+
+
+
+ Unused Roles
+
+ {(role) => (
+
+ }
+ action="chevron"
+ onClick={() => navigate(`permissions/${role.id}`)}
+ description={No permissions set yet }
+ >
+ {role.name}
+
+ )}
+
+
+
+ );
+}
+
+const RoleIcon = styled("div", {
+ base: {
+ width: "100%",
+ height: "100%",
+ aspectRatio: "1/1",
+ borderRadius: "100%",
+ },
+});
diff --git a/components/app/interface/settings/channel/webhooks/ViewWebhook.tsx b/components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
new file mode 100644
index 0000000..1210aea
--- /dev/null
+++ b/components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
@@ -0,0 +1,140 @@
+import { createFormControl, createFormGroup } from "solid-forms";
+import { Show } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import { useMutation } from "@tanstack/solid-query";
+import { API, ChannelWebhook } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import { useModals } from "@revolt/modal";
+import {
+ CategoryButton,
+ CircularProgress,
+ Column,
+ Form2,
+ Row,
+} from "@revolt/ui";
+
+import MdContentCopy from "@material-design-icons/svg/outlined/content_copy.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+
+import { useSettingsNavigation } from "../../Settings";
+
+/**
+ * Webhook
+ */
+export function ViewWebhook(props: { webhook: ChannelWebhook }) {
+ const { t } = useLingui();
+ const client = useClient();
+ const { showError } = useModals();
+ const { navigate } = useSettingsNavigation();
+
+ /* eslint-disable solid/reactivity */
+ const editGroup = createFormGroup({
+ name: createFormControl(props.webhook.name),
+ avatar: createFormControl(props.webhook.avatarURL),
+ });
+ /* eslint-enable solid/reactivity */
+
+ const deleteWebhook = useMutation(() => ({
+ mutationFn: () => props.webhook.delete(),
+ onSuccess() {
+ navigate("webhooks");
+ },
+ onError: showError,
+ }));
+
+ async function onSubmit() {
+ const changes: API.DataEditWebhook = {
+ remove: [],
+ };
+
+ if (editGroup.controls.name.isDirty) {
+ changes.name = editGroup.controls.name.value.trim();
+ }
+
+ if (editGroup.controls.avatar.isDirty) {
+ if (!editGroup.controls.avatar.value) {
+ changes.remove!.push("Avatar");
+ } else if (Array.isArray(editGroup.controls.avatar.value)) {
+ const body = new FormData();
+ body.append("file", editGroup.controls.avatar.value[0]);
+
+ const [key, value] = client().authenticationHeader;
+ const data: { id: string } = await fetch(
+ `${CONFIGURATION.DEFAULT_MEDIA_URL}/avatars`,
+ {
+ method: "POST",
+ body,
+ headers: {
+ [key]: value,
+ },
+ },
+ ).then((res) => res.json());
+
+ changes.avatar = data.id;
+ }
+ }
+
+ await props.webhook.edit(changes);
+ }
+
+ function onReset() {
+ editGroup.controls.name.setValue(props.webhook.name);
+ editGroup.controls.avatar.setValue(props.webhook.avatarURL ?? null);
+ }
+
+ const submit = Form2.useSubmitHandler(editGroup, onSubmit, onReset);
+
+ return (
+
+
+
+
+ }
+ onClick={() =>
+ navigator.clipboard.writeText(
+ `${CONFIGURATION.DEFAULT_API_URL}/webhooks/${props.webhook.id}/${props.webhook.token}`,
+ )
+ }
+ >
+ Copy webhook URL
+
+ }
+ disabled={deleteWebhook.isPending}
+ onClick={() => deleteWebhook.mutate()}
+ >
+ Delete webhook
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/channel/webhooks/WebhooksList.tsx b/components/app/interface/settings/channel/webhooks/WebhooksList.tsx
new file mode 100644
index 0000000..ae43065
--- /dev/null
+++ b/components/app/interface/settings/channel/webhooks/WebhooksList.tsx
@@ -0,0 +1,79 @@
+import { BiSolidCloud } from "solid-icons/bi";
+import { For, Match, Show, Switch, createMemo, onMount } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useClient } from "@revolt/client";
+import { useModals } from "@revolt/modal";
+import { Avatar, CategoryButton, CircularProgress, Column } from "@revolt/ui";
+
+import { ChannelSettingsProps } from "../../ChannelSettings";
+import { useSettingsNavigation } from "../../Settings";
+
+/**
+ * Webhooks
+ */
+export function WebhooksList(props: ChannelSettingsProps) {
+ const client = useClient();
+ const { openModal } = useModals();
+ const { navigate } = useSettingsNavigation();
+
+ const webhooks = createMemo(() =>
+ client().channelWebhooks.filter(
+ (webhook) => webhook.channelId === props.channel.id,
+ ),
+ );
+
+ onMount(() => {
+ if (!webhooks.length) {
+ props.channel.fetchWebhooks();
+ }
+ });
+
+ return (
+
+ }
+ onClick={() =>
+ openModal({
+ type: "create_webhook",
+ channel: props.channel,
+ callback(webhookId) {
+ navigate(`webhooks/${webhookId}`);
+ },
+ })
+ }
+ >
+ Create Webhook
+
+
+
+
+ }>
+
+
+ {(webhook) => (
+
+ }
+ description={webhook.id}
+ onClick={() => navigate(`webhooks/${webhook.id}`)}
+ action="chevron"
+ >
+ {webhook.name}
+
+ )}
+
+
+
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/index.tsx b/components/app/interface/settings/index.tsx
new file mode 100644
index 0000000..78f574a
--- /dev/null
+++ b/components/app/interface/settings/index.tsx
@@ -0,0 +1,66 @@
+import { Accessor, JSX } from "solid-js";
+
+import channel from "./ChannelSettings";
+import server from "./ServerSettings";
+import user from "./UserSettings";
+
+export { Settings } from "./Settings";
+
+export type SettingsConfiguration = {
+ /**
+ * Generate list of categories and entries
+ * @returns List
+ */
+ list: (context: T) => SettingsList;
+
+ /**
+ * Render the title of the current breadcrumb key
+ * @param ctx Context from settings list
+ * @param key Key
+ */
+ title: (ctx: SettingsList, key: string) => string;
+
+ /**
+ * Render the current settings page
+ * @param props State information
+ */
+ render: (
+ props: { page: Accessor },
+ context: T,
+ ) => JSX.Element;
+};
+
+/**
+ * List of categories and entries
+ */
+export type SettingsList = {
+ context: T;
+ prepend?: JSX.Element;
+ append?: JSX.Element;
+ entries: {
+ hidden?: boolean;
+ title?: JSX.Element;
+ entries: SettingsEntry[];
+ }[];
+};
+
+/**
+ * Individual settings entry
+ */
+export type SettingsEntry = {
+ id?: string;
+ href?: string;
+ onClick?: () => void;
+
+ hidden?: boolean;
+
+ icon: JSX.Element;
+ title: JSX.Element;
+};
+
+// eslint-disable-next-line
+export const SettingsConfigurations: Record = {
+ user,
+ server,
+ channel,
+};
diff --git a/components/app/interface/settings/server/Overview.tsx b/components/app/interface/settings/server/Overview.tsx
new file mode 100644
index 0000000..edd0c7a
--- /dev/null
+++ b/components/app/interface/settings/server/Overview.tsx
@@ -0,0 +1,330 @@
+import { createFormControl, createFormGroup } from "solid-forms";
+import { For, Show, createEffect, on } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import type { API } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import {
+ CircularProgress,
+ Column,
+ Form2,
+ MenuItem,
+ Row,
+ Text,
+} from "@revolt/ui";
+
+import { ServerSettingsProps } from "../ServerSettings";
+
+/**
+ * Server overview
+ */
+export default function ServerOverview(props: ServerSettingsProps) {
+ const { t } = useLingui();
+ const client = useClient();
+
+ /* eslint-disable solid/reactivity */
+ const editGroup = createFormGroup({
+ name: createFormControl(props.server.name),
+ description: createFormControl(props.server.description || ""),
+ icon: createFormControl(
+ props.server.animatedIconURL,
+ ),
+ banner: createFormControl(props.server.bannerURL),
+ sys_user_joined: createFormControl(
+ props.server.systemMessages?.user_joined ?? "none",
+ ),
+ sys_user_left: createFormControl(
+ props.server.systemMessages?.user_left ?? "none",
+ ),
+ sys_user_kicked: createFormControl(
+ props.server.systemMessages?.user_kicked ?? "none",
+ ),
+ sys_user_banned: createFormControl(
+ props.server.systemMessages?.user_banned ?? "none",
+ ),
+ });
+
+ const channels = () =>
+ props.server.channels.map((channel) => ({
+ item: channel,
+ value: channel.id,
+ }));
+ /* eslint-enable solid/reactivity */
+
+ // update fields (if they are not dirty) ourselves:
+ createEffect(
+ on(
+ () => props.server.name,
+ (name) =>
+ !editGroup.controls.name.isDirty &&
+ editGroup.controls.name.setValue(name),
+ { defer: true },
+ ),
+ );
+
+ createEffect(
+ on(
+ () => props.server.description,
+ (description) =>
+ description &&
+ !editGroup.controls.description.isDirty &&
+ editGroup.controls.description.setValue(description),
+ { defer: true },
+ ),
+ );
+
+ createEffect(
+ on(
+ () => props.server.animatedIconURL,
+ (icon) =>
+ !editGroup.controls.icon.isDirty &&
+ editGroup.controls.icon.setValue(icon ?? null),
+ { defer: true },
+ ),
+ );
+
+ createEffect(
+ on(
+ () => props.server.bannerURL,
+ (banner) =>
+ !editGroup.controls.banner.isDirty &&
+ editGroup.controls.banner.setValue(banner ?? null),
+ { defer: true },
+ ),
+ );
+
+ function onReset() {
+ editGroup.controls.name.setValue(props.server.name);
+ editGroup.controls.description.setValue(props.server.description || "");
+ editGroup.controls.icon.setValue(props.server.animatedIconURL ?? null);
+ editGroup.controls.banner.setValue(props.server.bannerURL ?? null);
+ editGroup.controls.sys_user_joined.setValue(
+ props.server.systemMessages?.user_joined ?? "none",
+ );
+ editGroup.controls.sys_user_left.setValue(
+ props.server.systemMessages?.user_left ?? "none",
+ );
+ editGroup.controls.sys_user_kicked.setValue(
+ props.server.systemMessages?.user_kicked ?? "none",
+ );
+ editGroup.controls.sys_user_banned.setValue(
+ props.server.systemMessages?.user_banned ?? "none",
+ );
+ }
+
+ async function onSubmit() {
+ const changes: API.DataEditServer = {
+ remove: [],
+ system_messages: {
+ // empty object => remove every system_message channel
+ ...(props.server.systemMessages ?? {}),
+ },
+ };
+
+ if (editGroup.controls.name.isDirty) {
+ changes.name = editGroup.controls.name.value.trim();
+ }
+
+ if (editGroup.controls.description.isDirty) {
+ const description = editGroup.controls.description.value.trim();
+
+ if (description) {
+ changes.description = description;
+ } else {
+ changes.remove!.push("Description");
+ }
+ }
+
+ if (editGroup.controls.icon.isDirty) {
+ if (!editGroup.controls.icon.value) {
+ changes.remove!.push("Icon");
+ } else if (Array.isArray(editGroup.controls.icon.value)) {
+ changes.icon = await client().uploadFile(
+ "icons",
+ editGroup.controls.icon.value[0],
+ CONFIGURATION.DEFAULT_MEDIA_URL,
+ );
+ }
+ }
+
+ if (editGroup.controls.banner.isDirty) {
+ if (!editGroup.controls.banner.value) {
+ changes.remove!.push("Banner");
+ } else if (Array.isArray(editGroup.controls.banner.value)) {
+ changes.banner = await client().uploadFile(
+ "banners",
+ editGroup.controls.banner.value[0],
+ CONFIGURATION.DEFAULT_MEDIA_URL,
+ );
+ }
+ }
+
+ if (editGroup.controls.sys_user_joined.isDirty) {
+ if (
+ editGroup.controls.sys_user_joined.value == "none" &&
+ changes.system_messages?.user_joined
+ ) {
+ delete changes.system_messages.user_joined;
+ } else {
+ changes.system_messages!.user_joined =
+ editGroup.controls.sys_user_joined.value;
+ }
+ }
+
+ if (editGroup.controls.sys_user_left.isDirty) {
+ if (
+ editGroup.controls.sys_user_left.value == "none" &&
+ changes.system_messages?.user_left
+ ) {
+ delete changes.system_messages.user_left;
+ } else {
+ changes.system_messages!.user_left =
+ editGroup.controls.sys_user_left.value;
+ }
+ }
+
+ if (editGroup.controls.sys_user_kicked.isDirty) {
+ if (
+ editGroup.controls.sys_user_kicked.value == "none" &&
+ changes.system_messages?.user_kicked
+ ) {
+ delete changes.system_messages.user_kicked;
+ } else {
+ changes.system_messages!.user_kicked =
+ editGroup.controls.sys_user_kicked.value;
+ }
+ }
+
+ if (editGroup.controls.sys_user_banned.isDirty) {
+ if (
+ editGroup.controls.sys_user_banned.value == "none" &&
+ changes.system_messages?.user_banned
+ ) {
+ delete changes.system_messages.user_banned;
+ } else {
+ changes.system_messages!.user_banned =
+ editGroup.controls.sys_user_banned.value;
+ }
+ }
+
+ await props.server.edit(changes);
+ }
+
+ const submit = Form2.useSubmitHandler(editGroup, onSubmit, onReset);
+
+ return (
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/server/bans/ListBans.tsx b/components/app/interface/settings/server/bans/ListBans.tsx
new file mode 100644
index 0000000..a7e2be3
--- /dev/null
+++ b/components/app/interface/settings/server/bans/ListBans.tsx
@@ -0,0 +1,135 @@
+import { For, Match, Switch, createMemo, createSignal } from "solid-js";
+
+import { useLingui } from "@lingui-solid/solid/macro";
+import { useQuery, useQueryClient } from "@tanstack/solid-query";
+import { Server, ServerBan } from "stoat.js";
+
+import { useModals } from "@revolt/modal";
+import {
+ Avatar,
+ Button,
+ CircularProgress,
+ DataTable,
+ Row,
+ TextField,
+} from "@revolt/ui";
+
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+
+/**
+ * List and invalidate server bans
+ */
+export function ListServerBans(props: { server: Server }) {
+ const { t } = useLingui();
+ const client = useQueryClient();
+ const { showError } = useModals();
+
+ const query = useQuery(() => ({
+ queryKey: ["bans", props.server.id],
+ queryFn: () => props.server.fetchBans() as Promise,
+ }));
+
+ async function pardon(ban: ServerBan) {
+ try {
+ await ban.pardon();
+ client.setQueryData(
+ ["bans", props.server.id],
+ query.data!.filter((entry) => entry.id.user !== ban.id.user),
+ );
+ } catch (error) {
+ showError(error);
+ }
+ }
+
+ const [filterName, setFilterName] = createSignal("");
+ const [filterDesc, setFilterDesc] = createSignal("");
+
+ const data = createMemo(() => {
+ if (query.data) {
+ const name = filterName().toLowerCase(),
+ desc = filterDesc().toLowerCase();
+
+ if (name || desc) {
+ return query.data.filter(
+ (entry) =>
+ (entry.user?.username ?? "").toLowerCase().includes(name) &&
+ (entry.reason ?? "").toLowerCase().includes(desc),
+ );
+ }
+
+ return query.data;
+ }
+ });
+
+ return (
+ setFilterName(e.currentTarget.value)}
+ />,
+ setFilterDesc(e.currentTarget.value)}
+ />,
+ <>>,
+ ]}
+ itemCount={query.data?.length}
+ >
+ {(page, itemsPerPage) => (
+
+
+
+
+
+
+
+
+
+
+ {(item) => (
+
+
+
+
+
+ {item.user?.username}#{item.user?.discriminator}
+
+
+
+ {item.reason}
+
+ pardon(item)}
+ >
+
+
+
+
+ )}
+
+
+
+ )}
+
+ );
+}
diff --git a/components/app/interface/settings/server/emojis/EmojiList.tsx b/components/app/interface/settings/server/emojis/EmojiList.tsx
new file mode 100644
index 0000000..ecc8fd6
--- /dev/null
+++ b/components/app/interface/settings/server/emojis/EmojiList.tsx
@@ -0,0 +1,156 @@
+import { createFormControl, createFormGroup } from "solid-forms";
+import { For, Match, Switch } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import { Server } from "stoat.js";
+import { css } from "styled-system/css";
+
+import { useClient } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import { useError } from "@revolt/i18n";
+import { useModals } from "@revolt/modal";
+import {
+ Avatar,
+ CategoryButton,
+ CircularProgress,
+ Column,
+ Form2,
+ Row,
+ Text,
+} from "@revolt/ui";
+
+/**
+ * Emoji list
+ */
+export function EmojiList(props: { server: Server }) {
+ const err = useError();
+ const { t } = useLingui();
+ const client = useClient();
+ const { openModal } = useModals();
+
+ function isDisabled() {
+ return props.server.emojis.length >= CONFIGURATION.MAX_EMOJI;
+ }
+
+ const editGroup = createFormGroup(
+ {
+ name: createFormControl("", { required: true }),
+ file: createFormControl(null, {
+ required: true,
+ }),
+ },
+ {
+ disabled: isDisabled(),
+ },
+ );
+
+ async function onSubmit() {
+ const body = new FormData();
+ body.append("file", editGroup.controls.file.value![0]);
+
+ const [key, value] = client().authenticationHeader;
+ const data: { id: string } = await fetch(
+ `${CONFIGURATION.DEFAULT_MEDIA_URL}/emojis`,
+ {
+ method: "POST",
+ body,
+ headers: {
+ [key]: value,
+ },
+ },
+ ).then((res) => res.json());
+
+ await props.server.createEmoji(data.id, {
+ name: editGroup.controls.name.value,
+ });
+ }
+
+ function onReset() {
+ editGroup.controls.name.setValue("");
+ editGroup.controls.file.setValue(null);
+ }
+
+ const submit = Form2.useSubmitHandler(editGroup, onSubmit, onReset);
+
+ return (
+
+
+
+
+
+ a.id.localeCompare(b.id),
+ )}
+ >
+ {(emoji) => (
+ }
+ onClick={() => openModal({ type: "emoji_preview", emoji })}
+ >
+
+ :{emoji.name}:
+
+
+ {emoji.creator?.displayName}
+
+
+
+ )}
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/server/invites/ListServerInvites.tsx b/components/app/interface/settings/server/invites/ListServerInvites.tsx
new file mode 100644
index 0000000..b7e1f70
--- /dev/null
+++ b/components/app/interface/settings/server/invites/ListServerInvites.tsx
@@ -0,0 +1,136 @@
+import { For, Match, Switch } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import { useQuery, useQueryClient } from "@tanstack/solid-query";
+import { Server, ServerInvite } from "stoat.js";
+
+import { useModals } from "@revolt/modal";
+import {
+ Avatar,
+ Button,
+ CircularProgress,
+ Column,
+ DataTable,
+ Row,
+ Text,
+} from "@revolt/ui";
+
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+
+/**
+ * List and invalidate server invites
+ */
+export function ListServerInvites(props: { server: Server }) {
+ const { t } = useLingui();
+ const client = useQueryClient();
+ const { showError, openModal } = useModals();
+ const query = useQuery(() => ({
+ queryKey: ["invites", props.server.id],
+ queryFn: () => props.server.fetchInvites() as Promise,
+ }));
+
+ const serverDoesntHaveChannels = () =>
+ !props.server.defaultChannel || props.server.channels.length == 0;
+
+ async function deleteInvite(invite: ServerInvite) {
+ try {
+ await invite.delete();
+ client.setQueryData(
+ ["invites", props.server.id],
+ query.data!.filter((entry) => entry.id !== entry.id),
+ );
+ } catch (error) {
+ showError(error);
+ }
+ }
+
+ async function createInvite() {
+ const defaultChannel =
+ props.server.defaultChannel || props.server.channels[0] || null;
+ if (defaultChannel) {
+ openModal({
+ type: "create_invite",
+ channel: defaultChannel,
+ });
+ }
+ }
+
+ return (
+
+
+ Create invite
+
+ Inviter, Invite Code , <>>]}
+ itemCount={query.data?.length}
+ >
+ {(page, itemsPerPage) => (
+
+
+
+
+
+
+
+
+
+
+ {(item) => (
+
+
+
+
+
+
+ {item.creator?.displayName ?? "Unknown User"}
+
+ #{item.channel?.name}
+
+
+
+ {item.id}
+
+ deleteInvite(item)}
+ >
+
+
+
+
+ )}
+
+
+
+ )}
+
+
+ );
+}
diff --git a/components/app/interface/settings/server/roles/ServerRoleEditor.tsx b/components/app/interface/settings/server/roles/ServerRoleEditor.tsx
new file mode 100644
index 0000000..84193c5
--- /dev/null
+++ b/components/app/interface/settings/server/roles/ServerRoleEditor.tsx
@@ -0,0 +1,236 @@
+import { createFormControl, createFormGroup } from "solid-forms";
+import { For, Show, createMemo, createSignal } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import { API, Server, ServerRole } from "stoat.js";
+import { styled } from "styled-system/jsx";
+
+import { useModals } from "@revolt/modal";
+import {
+ Button,
+ CategoryButton,
+ CircularProgress,
+ Column,
+ Form2,
+ IconButton,
+ Row,
+ Text,
+} from "@revolt/ui";
+
+import MdContentCopy from "@material-design-icons/svg/outlined/content_copy.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+import MDPalette from "@material-design-icons/svg/outlined/palette.svg?component-solid";
+
+import { useSettingsNavigation } from "../../Settings";
+import { ChannelPermissionsEditor } from "../../channel/permissions/ChannelPermissionsEditor";
+
+/**
+ * Role editor
+ */
+export function ServerRoleEditor(props: { context: Server; roleId: string }) {
+ const { t } = useLingui();
+ const { openModal } = useModals();
+ const { navigate } = useSettingsNavigation();
+
+ const role = createMemo(
+ () =>
+ props.context.orderedRoles.find(
+ (r) => r.id == props.roleId,
+ ) as ServerRole,
+ );
+
+ /* eslint-disable solid/reactivity */
+ const editGroup = createFormGroup({
+ name: createFormControl(role()?.name || ""),
+ colour: createFormControl(role()?.colour || null),
+ hoist: createFormControl(role()?.hoist == true),
+ });
+ /* eslint-enable solid/reactivity */
+
+ const [pickerRef, setPickerRef] = createSignal();
+
+ async function onSubmit() {
+ const changes: API.DataEditRole = {};
+
+ if (editGroup.controls.name.isDirty) {
+ changes.name = editGroup.controls.name.value.trim();
+ }
+
+ if (editGroup.controls.hoist.isDirty) {
+ changes.hoist = editGroup.controls.hoist.value;
+ }
+
+ if (editGroup.controls.colour.isDirty) {
+ changes.colour = editGroup.controls.colour.value ?? null;
+ }
+
+ await props.context.editRole(props.roleId, changes);
+ }
+
+ function onReset() {
+ editGroup.controls.name.setValue(role()?.name || "");
+ editGroup.controls.hoist.setValue(role()?.hoist || false);
+ editGroup.controls.colour.setValue(role()?.colour || null);
+ }
+
+ const submit = Form2.useSubmitHandler(editGroup, onSubmit, onReset);
+
+ return (
+
+
+
+
+
+ }
+ onClick={() => navigator.clipboard.writeText(`${props.roleId}`)}
+ >
+ Copy role ID
+
+ }
+ onClick={() =>
+ openModal({
+ type: "delete_role",
+ role: role(),
+ cb: () => navigate("roles"),
+ })
+ }
+ >
+ Delete Role
+
+
+
+ );
+}
+
+export const Divider = styled("div", {
+ base: {
+ height: "1px",
+ margin: "var(--gap-sm) 0",
+ background: "var(--md-sys-color-outline-variant)",
+ },
+});
diff --git a/components/app/interface/settings/server/roles/ServerRoleOverview.tsx b/components/app/interface/settings/server/roles/ServerRoleOverview.tsx
new file mode 100644
index 0000000..a03b302
--- /dev/null
+++ b/components/app/interface/settings/server/roles/ServerRoleOverview.tsx
@@ -0,0 +1,124 @@
+import { BiRegularListUl } from "solid-icons/bi";
+import { Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { useMutation } from "@tanstack/solid-query";
+import { Server } from "stoat.js";
+import { styled } from "styled-system/jsx";
+
+import { useModals } from "@revolt/modal";
+import { CategoryButton, Column, Draggable, Text, iconSize } from "@revolt/ui";
+import { createDragHandle } from "@revolt/ui/components/utils/Draggable";
+
+import MdDragIndicator from "@material-design-icons/svg/outlined/drag_indicator.svg?component-solid";
+import MdGroupAdd from "@material-design-icons/svg/outlined/group_add.svg?component-solid";
+
+import { useSettingsNavigation } from "../../Settings";
+
+/**
+ * Menu to see all roles
+ */
+export function ServerRoleOverview(props: { context: Server }) {
+ const { navigate } = useSettingsNavigation();
+ const { openModal, showError } = useModals();
+
+ const change = useMutation(() => ({
+ mutationFn: (order: string[]) => props.context.setRoleOrdering(order),
+ onError: showError,
+ }));
+
+ function createRole() {
+ openModal({
+ type: "create_role",
+ server: props.context,
+ callback(roleId) {
+ navigate(`roles/${roleId}`);
+ },
+ });
+ }
+
+ return (
+
+
+ }
+ action="chevron"
+ description={Affects all roles and users }
+ onClick={() => navigate("roles/default")}
+ >
+ Default Permissions
+
+ }
+ action="chevron"
+ description={Create a new role }
+ onClick={createRole}
+ >
+ Create Role
+
+
+
+
+
+ Server Roles
+
+ {" "}
+ (changes are being saved…)
+
+
+
+ {(entry) => (
+
+
+
+
+ }
+ action="chevron"
+ onClick={() => navigate(`roles/${entry.item.id}`)}
+ >
+ {entry.item.name}
+
+
+ )}
+
+
+
+ );
+}
+
+const RoleIcon = styled("div", {
+ base: {
+ width: "100%",
+ height: "100%",
+ aspectRatio: "1/1",
+ borderRadius: "100%",
+ },
+});
+
+const ItemContainer = styled("div", {
+ base: {
+ display: "flex",
+ alignItems: "center",
+ gap: "var(--gap-md)",
+ paddingBottom: "var(--gap-md)",
+
+ // grow the button to full width
+ "& > :nth-child(2)": {
+ flexGrow: 1,
+ },
+ },
+});
diff --git a/components/app/interface/settings/user/Accessibility.tsx b/components/app/interface/settings/user/Accessibility.tsx
new file mode 100644
index 0000000..2bc6e6a
--- /dev/null
+++ b/components/app/interface/settings/user/Accessibility.tsx
@@ -0,0 +1,28 @@
+import { Column } from "@revolt/ui";
+
+/**
+ * Accessibility settings page
+ */
+export default function Accessibility() {
+ return (
+
+ {/*
+
+ void value} />}
+ onClick={() => void 0}
+ icon={ }
+ description={
+
+ If this is enabled, animations and motion effects won't play or
+ will be less intense.
+
+ }
+ >
+ Reduced Motion
+
+
+ */}
+
+ );
+}
diff --git a/components/app/interface/settings/user/Account.tsx b/components/app/interface/settings/user/Account.tsx
new file mode 100644
index 0000000..c4e7e44
--- /dev/null
+++ b/components/app/interface/settings/user/Account.tsx
@@ -0,0 +1,330 @@
+import { Match, Show, Switch, createMemo, createSignal } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useClient, useClientLifecycle } from "@revolt/client";
+import {
+ createMfaResource,
+ createOwnProfileResource,
+} from "@revolt/client/resources";
+import { useModals } from "@revolt/modal";
+import { CategoryButton, Column, Row, iconSize } from "@revolt/ui";
+
+import MdAlternateEmail from "@material-design-icons/svg/outlined/alternate_email.svg?component-solid";
+import MdBlock from "@material-design-icons/svg/outlined/block.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+import MdLock from "@material-design-icons/svg/outlined/lock.svg?component-solid";
+import MdMail from "@material-design-icons/svg/outlined/mail.svg?component-solid";
+import MdPassword from "@material-design-icons/svg/outlined/password.svg?component-solid";
+import MdVerifiedUser from "@material-design-icons/svg/outlined/verified_user.svg?component-solid";
+
+import { useSettingsNavigation } from "../Settings";
+
+import { UserSummary } from "./account/index";
+
+/**
+ * Account Page
+ */
+export function MyAccount() {
+ const client = useClient();
+ const profile = createOwnProfileResource();
+ const { navigate } = useSettingsNavigation();
+
+ return (
+
+ navigate("profile")}
+ showBadges
+ />
+
+
+
+
+ );
+}
+
+/**
+ * Edit account details
+ */
+function EditAccount() {
+ const client = useClient();
+ const { openModal } = useModals();
+ const [email, setEmail] = createSignal("•••••••••••@•••••••••••");
+
+ return (
+
+
+ openModal({
+ type: "edit_username",
+ client: client(),
+ })
+ }
+ icon={ }
+ description={client().user?.username}
+ >
+ Username
+
+
+ openModal({
+ type: "edit_email",
+ client: client(),
+ })
+ }
+ icon={ }
+ description={
+
+ {email()}{" "}
+
+ {
+ event.stopPropagation();
+ client().account.fetchEmail().then(setEmail);
+ }}
+ >
+ Reveal
+
+
+
+ }
+ >
+ Email
+
+
+ openModal({
+ type: "edit_password",
+ client: client(),
+ })
+ }
+ icon={ }
+ description={"•••••••••"}
+ >
+ Password
+
+
+ );
+}
+
+/**
+ * Multi-factor authentication
+ */
+function MultiFactorAuth() {
+ const client = useClient();
+ const mfa = createMfaResource();
+ const { openModal, mfaFlow, mfaEnableTOTP, showError } = useModals();
+
+ /**
+ * Show recovery codes
+ */
+ async function showRecoveryCodes() {
+ const ticket = await mfaFlow(mfa.data!);
+
+ ticket!.fetchRecoveryCodes().then((codes) =>
+ openModal({
+ type: "mfa_recovery",
+ mfa: mfa.data!,
+ codes,
+ }),
+ );
+ }
+
+ /**
+ * Generate recovery codes
+ */
+ async function generateRecoveryCodes() {
+ const ticket = await mfaFlow(mfa.data!);
+
+ ticket!.generateRecoveryCodes().then((codes) =>
+ openModal({
+ type: "mfa_recovery",
+ mfa: mfa.data!,
+ codes,
+ }),
+ );
+ }
+
+ /**
+ * Configure authenticator app
+ */
+ async function setupAuthenticatorApp() {
+ const ticket = await mfaFlow(mfa.data!);
+ const secret = await ticket!.generateAuthenticatorSecret();
+
+ let success;
+ while (!success) {
+ try {
+ const code = await mfaEnableTOTP(secret, client().user!.username);
+
+ if (code) {
+ await mfa.data!.enableAuthenticator(code);
+ success = true;
+ }
+ } catch (err) {
+ showError(err);
+ }
+ }
+ }
+
+ /**
+ * Disable authenticator app
+ */
+ function disableAuthenticatorApp() {
+ mfaFlow(mfa.data!).then((ticket) => ticket!.disableAuthenticator());
+ }
+
+ return (
+
+ }
+ title={Recovery Codes }
+ description={
+
+ Configure a way to get back into your account in case your 2FA is
+ lost
+
+ }
+ >
+ Setup recovery codes}
+ >
+ Generate Recovery Codes
+
+ }
+ >
+
+ Get active recovery codes}
+ onClick={showRecoveryCodes}
+ >
+ View Recovery Codes
+
+ Get a new set of recovery codes}
+ onClick={generateRecoveryCodes}
+ >
+ Reset Recovery Codes
+
+
+
+
+ }
+ title={Authenticator App }
+ description={Configure one-time password authentication }
+ >
+ Setup one-time password authenticator}
+ >
+ Enable Authenticator
+
+ }
+ >
+
+ Disable one-time password authenticator
+ }
+ onClick={disableAuthenticatorApp}
+ >
+ Remove Authenticator
+
+
+
+
+
+ );
+}
+
+/**
+ * Manage account
+ */
+function ManageAccount() {
+ const client = useClient();
+ const mfa = createMfaResource();
+ const { mfaFlow } = useModals();
+ const { logout } = useClientLifecycle();
+
+ const stillOwnServers = createMemo(
+ () =>
+ client().servers.filter((server) => server.owner?.self || false).length >
+ 0,
+ );
+
+ /**
+ * Disable account
+ */
+ function disableAccount() {
+ mfaFlow(mfa.data!).then((ticket) =>
+ ticket!.disableAccount().then(() => logout()),
+ );
+ }
+
+ /**
+ * Delete account
+ */
+ function deleteAccount() {
+ mfaFlow(mfa.data!).then((ticket) =>
+ ticket!.deleteAccount().then(() => logout()),
+ );
+ }
+
+ return (
+
+ }
+ description={
+
+ You won't be able to access your account unless you contact support
+ - however, your data will not be deleted.
+
+ }
+ >
+ Disable Account
+
+ }
+ description={
+
+ Your account and all of your data (including your messages and
+ friends list) will be queued for deletion. A confirmation email will
+ be sent - you can cancel this within 7 days by contacting support.
+
+ }
+ >
+ Delete Account}>
+
+
+ Cannot delete account until servers are deleted or transferred
+
+
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/Advanced.tsx b/components/app/interface/settings/user/Advanced.tsx
new file mode 100644
index 0000000..2c4be2c
--- /dev/null
+++ b/components/app/interface/settings/user/Advanced.tsx
@@ -0,0 +1,80 @@
+import { For } from "solid-js";
+
+import { useState } from "@revolt/state";
+import {
+ AVAILABLE_EXPERIMENTS,
+ EXPERIMENTS,
+} from "@revolt/state/stores/Experiments";
+import {
+ CategoryButton,
+ CategoryButtonGroup,
+ Checkbox,
+ Column,
+} from "@revolt/ui";
+
+/**
+ * Advanced settings
+ */
+export default function AdvancedSettings() {
+ const state = useState();
+
+ return (
+
+
+
+ state.settings.setValue(
+ "appearance:compact_mode",
+ e.currentTarget.checked,
+ )
+ }
+ >
+ Compact mode
+
+
+ state.settings.setValue("advanced:copy_id", e.currentTarget.checked)
+ }
+ >
+ Show 'copy ID' in context menus
+
+
+ state.settings.setValue(
+ "advanced:admin_panel",
+ e.currentTarget.checked,
+ )
+ }
+ >
+ Show admin panel shortcuts in context menus
+
+
+
+
+ {(key) => (
+
+ state.experiments.setEnabled(
+ key,
+ event.currentTarget.checked,
+ )
+ }
+ />
+ }
+ description={EXPERIMENTS[key].description}
+ onClick={() => void 0}
+ >
+ {EXPERIMENTS[key].title}
+
+ )}
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/Feedback.tsx b/components/app/interface/settings/user/Feedback.tsx
new file mode 100644
index 0000000..766a23b
--- /dev/null
+++ b/components/app/interface/settings/user/Feedback.tsx
@@ -0,0 +1,141 @@
+import { Trans } from "@lingui-solid/solid/macro";
+import { styled } from "styled-system/jsx";
+
+import {
+ CategoryButton,
+ CategoryButtonGroup,
+ Column,
+ iconSize,
+} from "@revolt/ui";
+
+import MdGroups3 from "@material-design-icons/svg/filled/groups_3.svg?component-solid";
+import MdBugReport from "@material-design-icons/svg/outlined/bug_report.svg?component-solid";
+import MdFormatListNumbered from "@material-design-icons/svg/outlined/format_list_numbered.svg?component-solid";
+import MdStar from "@material-design-icons/svg/outlined/star_outline.svg?component-solid";
+import { useClient } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import { useModals } from "@revolt/modal";
+import { useNavigate } from "@solidjs/router";
+import { Match, Switch } from "solid-js";
+import { PublicChannelInvite } from "stoat.js";
+
+/**
+ * Feedback
+ */
+export function Feedback() {
+ const { openModal, pop } = useModals();
+ const navigate = useNavigate();
+ const client = useClient();
+
+ const showLoungeButton = CONFIGURATION.IS_STOAT;
+ const isInLounge =
+ client()!.servers.get("01F7ZSBSFHQ8TA81725KQCSDDP") !== undefined;
+
+ return (
+
+
+ {/*
+ }
+ onClick={() => void 0}
+ description={See what we're currently working on. }
+ >
+ Roadmap
+
+ */}
+
+ }
+ onClick={() => void 0}
+ description={
+ Suggest new Stoat features on GitHub discussions.
+ }
+ >
+ Submit feature suggestion
+
+
+
+ }
+ onClick={() => void 0}
+ description={Submit feedback }
+ >
+ Feedback
+
+
+
+ }
+ onClick={() => void 0}
+ description={View currently active bug reports here. }
+ >
+ Bug Tracker
+
+
+
+
+ {
+ navigate("/server/01F7ZSBSFHQ8TA81725KQCSDDP");
+ pop();
+ }}
+ description={
+
+ You can report issues and discuss improvements with us
+ directly here.
+
+ }
+ icon={ }
+ >
+ Go to the Stoat Lounge
+
+
+
+ {
+ client()
+ .api.get("/invites/Testers")
+ .then((invite) => PublicChannelInvite.from(client(), invite))
+ .then((invite) => openModal({ type: "invite", invite }));
+ }}
+ description={
+
+ You can report issues and discuss improvements with us
+ directly here.
+
+ }
+ icon={ }
+ >
+ Join the Stoat Lounge
+
+
+
+
+
+ );
+}
+
+/**
+ * Link without decorations
+ */
+const Link = styled("a", {
+ base: {
+ textDecoration: "none",
+ },
+});
diff --git a/components/app/interface/settings/user/Language.tsx b/components/app/interface/settings/user/Language.tsx
new file mode 100644
index 0000000..689b1e0
--- /dev/null
+++ b/components/app/interface/settings/user/Language.tsx
@@ -0,0 +1,265 @@
+import { For, createMemo } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+
+import { Language, Languages, browserPreferredLanguage } from "@revolt/i18n";
+import type { LanguageEntry } from "@revolt/i18n/Languages";
+import { timeLocale } from "@revolt/i18n/dayjs";
+import { UnicodeEmoji } from "@revolt/markdown/emoji";
+import { useState } from "@revolt/state";
+import {
+ CategoryButton,
+ CategoryButtonGroup,
+ CategoryCollapse,
+ Checkbox,
+ Column,
+ Row,
+ Time,
+ iconSize,
+} from "@revolt/ui";
+
+import MdErrorFill from "@material-design-icons/svg/filled/error.svg?component-solid";
+import MdVerifiedFill from "@material-design-icons/svg/filled/verified.svg?component-solid";
+import MdCalendarMonth from "@material-design-icons/svg/outlined/calendar_month.svg?component-solid";
+import MdLanguage from "@material-design-icons/svg/outlined/language.svg?component-solid";
+import MdSchedule from "@material-design-icons/svg/outlined/schedule.svg?component-solid";
+import MdTranslate from "@material-design-icons/svg/outlined/translate.svg?component-solid";
+
+/**
+ * Language
+ */
+export function LanguageSettings() {
+ return (
+
+
+
+ {/* */}
+
+
+
+
+
+
+
+
+
+ );
+}
+
+/**
+ * Pick user's preferred language
+ */
+function PickLanguage() {
+ const state = useState();
+ const { i18n } = useLingui();
+
+ /**
+ * Determine the current language
+ */
+ const currentLanguage = () =>
+ Languages[i18n().locale as never] as LanguageEntry;
+
+ // Generate languages array.
+ const languages = createMemo(() => {
+ const languages = Object.keys(Languages).map(
+ (x) => [x, Languages[x as keyof typeof Languages]] as const,
+ );
+
+ const preferredLanguage = browserPreferredLanguage();
+
+ if (preferredLanguage) {
+ // This moves the user's system language to the top of the language list
+ const prefLangKey = languages.find(
+ (lang) => lang[0].replace(/_/g, "-") == preferredLanguage,
+ );
+
+ if (prefLangKey) {
+ languages.splice(
+ 0,
+ 0,
+ languages.splice(languages.indexOf(prefLangKey), 1)[0],
+ );
+ }
+ }
+
+ return languages;
+ });
+
+ return (
+ }
+ title={Select your language }
+ description={currentLanguage().display}
+ scrollable
+ >
+
+ {([id, lang]) => (
+ }
+ action={ }
+ onClick={() => state.locale.switch(id as Language)}
+ >
+
+ {lang.display}{" "}
+ {lang.verified && (
+
+ )}{" "}
+ {lang.incomplete && (
+
+ )}
+
+
+ )}
+
+
+ );
+}
+
+/**
+ * Pick user's preferred date format
+ */
+function PickDateFormat() {
+ const state = useState();
+ const { t } = useLingui();
+ const date = () => timeLocale()[1].formats.L;
+
+ const LastWeek = new Date();
+ LastWeek.setDate(LastWeek.getDate() - 7);
+
+ return (
+ }
+ title="Select date format"
+ description={
+ date() === "DD/MM/YYYY"
+ ? t`Traditional (DD/MM/YYYY)`
+ : date() === "MM/DD/YYYY"
+ ? t`American (MM/DD/YYYY)`
+ : date() === "YYYY-MM-DD"
+ ? t`ISO Standard (YYYY-MM-DD)`
+ : date()
+ }
+ >
+ state.locale.setDateFormat("DD/MM/YYYY")}
+ action={ }
+ description={ }
+ >
+ Traditional (DD/MM/YYYY)
+
+ state.locale.setDateFormat("MM/DD/YYYY")}
+ action={ }
+ description={ }
+ >
+ American (MM/DD/YYYY)
+
+ state.locale.setDateFormat("YYYY-MM-DD")}
+ action={ }
+ description={ }
+ >
+ ISO Standard (YYYY-MM-DD)
+
+
+ );
+}
+
+/**
+ * Pick user's preferred time format
+ */
+function PickTimeFormat() {
+ const state = useState();
+ const { t } = useLingui();
+ const time = () => timeLocale()[1].formats.LT;
+
+ return (
+ }
+ title="Select time format"
+ description={time() === "HH:mm" ? t`24 hours` : t`12 hours`}
+ >
+ state.locale.setTimeFormat("HH:mm")}
+ action={ }
+ description={ }
+ >
+ 24 hours
+
+ state.locale.setTimeFormat("h:mm A")}
+ action={ }
+ description={ }
+ >
+ 12 hours
+
+
+ );
+}
+
+// /**
+// * Configure right-to-left display
+// */
+// function ConfigureRTL() {
+// /**
+// * Determine the current language
+// */
+// const currentLanguage = () => Languages[language()];
+
+// return (
+// }
+// description={Flip the user interface right to left }
+// action={ }
+// onClick={() => void 0}
+// >
+// Enable RTL layout
+//
+// }
+// >
+//
+// }
+// description={Keep the user interface left to right }
+// action={ }
+// onClick={() => void 0}
+// >
+// Force LTR layout
+//
+//
+//
+// );
+// }
+
+/**
+ * Language contribution link
+ */
+function ContributeLanguageLink() {
+ return (
+
+ }
+ onClick={() => void 0}
+ description={
+ Help contribute to an existing or new language
+ }
+ >
+ Contribute a language
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/Native.tsx b/components/app/interface/settings/user/Native.tsx
new file mode 100644
index 0000000..93cb530
--- /dev/null
+++ b/components/app/interface/settings/user/Native.tsx
@@ -0,0 +1,171 @@
+import { createSignal, onMount } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+
+import { CategoryButton, Checkbox, Column } from "@revolt/ui";
+import { Symbol } from "@revolt/ui/components/utils/Symbol";
+
+declare type DesktopConfig = {
+ firstLaunch: boolean;
+ customFrame: boolean;
+ minimiseToTray: boolean;
+ spellchecker: boolean;
+ hardwareAcceleration: boolean;
+ discordRpc: boolean;
+ windowState: {
+ isMaximised: boolean;
+ };
+};
+
+declare global {
+ interface Window {
+ native: {
+ versions: {
+ node(): string;
+ chrome(): string;
+ electron(): string;
+ desktop(): string;
+ };
+ minimise(): void;
+ maximise(): void;
+ close(): void;
+ };
+
+ desktopConfig: {
+ get(): DesktopConfig;
+ set(config: Partial): void;
+ getAutostart(): Promise;
+ setAutostart(value: boolean): Promise;
+ };
+ }
+}
+
+/**
+ * Desktop Configuration Page
+ */
+export default function Native() {
+ const { t } = useLingui();
+ const [autostart, setAutostart] = createSignal(false);
+ const [config, setConfig] = createSignal(window.desktopConfig.get());
+
+ function set(config: Partial) {
+ window.desktopConfig.set(config);
+ setConfig((conf) => ({ ...conf, ...config }));
+ }
+
+ onMount(async () => {
+ const value = await window.desktopConfig.getAutostart();
+ setAutostart(value);
+ });
+
+ async function toggleAutostart() {
+ const newValue = !autostart();
+ const savedValue = await window.desktopConfig.setAutostart(newValue);
+ setAutostart(savedValue);
+ }
+
+ const toggles: Partial void>> = {
+ minimiseToTray: () => set({ minimiseToTray: !config().minimiseToTray }),
+ customFrame: () => set({ customFrame: !config().customFrame }),
+ discordRpc: () => set({ discordRpc: !config().discordRpc }),
+ spellchecker: () => set({ spellchecker: !config().spellchecker }),
+ hardwareAcceleration: () =>
+ set({ hardwareAcceleration: !config().hardwareAcceleration }),
+ };
+
+ function CheckboxButton(
+ key: K,
+ icon: string,
+ label: string,
+ description: string,
+ ) {
+ return (
+ e.stopPropagation()}
+ onChange={(e) => {
+ e.stopPropagation();
+ toggles[key]!();
+ }}
+ />
+ }
+ onClick={toggles[key]}
+ icon={{icon} }
+ description={description}
+ >
+ {label}
+
+ );
+ }
+
+ return (
+
+
+ e.stopPropagation()}
+ onChange={toggleAutostart}
+ />
+ }
+ onClick={toggleAutostart}
+ icon={exit_to_app }
+ description={
+ Launch Stoat when you log into your computer.
+ }
+ >
+ Start with Computer
+
+ {CheckboxButton(
+ "minimiseToTray",
+ "cancel_presentation",
+ t`Minimise to Tray`,
+ t`Instead of closing, Stoat will hide in your tray.`,
+ )}
+ {CheckboxButton(
+ "customFrame",
+ "web_asset",
+ t`Custom window frame`,
+ t`Let Stoat use its own custom titlebar.`,
+ )}
+
+
+
+ {CheckboxButton(
+ "discordRpc",
+ "groups_2",
+ t`Discord RPC`,
+ t`Rep Stoat using Discord rich presence.`,
+ )}
+ {CheckboxButton(
+ "spellchecker",
+ "spellcheck",
+ t`Spellchecker`,
+ t`Show corrections and suggestions as you type.`,
+ )}
+ {CheckboxButton(
+ "hardwareAcceleration",
+ "speed",
+ t`Hardware Acceleration`,
+ t`Use the graphics card to improve performance.`,
+ )}
+
+
+
+ desktop_windows}
+ description={
+ <>
+ Version: {window.native.versions.desktop()}
+ >
+ }
+ >
+ Stoat for Desktop
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/Notifications.tsx b/components/app/interface/settings/user/Notifications.tsx
new file mode 100644
index 0000000..1e1ccfd
--- /dev/null
+++ b/components/app/interface/settings/user/Notifications.tsx
@@ -0,0 +1,79 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import {
+ CategoryButton,
+ CategoryButtonGroup,
+ CategoryCollapse,
+ Checkbox,
+ iconSize,
+} from "@revolt/ui";
+
+import MdNotifications from "@material-design-icons/svg/outlined/notifications.svg?component-solid";
+import MdSpeaker from "@material-design-icons/svg/outlined/speaker.svg?component-solid";
+
+/**
+ * Notifications Page
+ */
+export default function Notifications() {
+ return (
+
+ void value} />}
+ onClick={() => void 0}
+ icon={ }
+ description={
+
+ Receive notifications while the app is open and in the background.
+
+ }
+ >
+ Enable Desktop Notifications
+
+ {/*
+ void value} />}
+ onClick={() => void 0}
+ icon={ }
+ description={t(
+ "app.settings.pages.notifications.descriptions.enable_push"
+ )}
+ >
+ {t("app.settings.pages.notifications.enable_push")}
+
+ */}
+ Sounds}
+ icon={ }
+ >
+ void value} />}
+ onClick={() => void 0}
+ icon="blank"
+ >
+ Message Received
+
+ void value} />}
+ onClick={() => void 0}
+ icon="blank"
+ >
+ Message Sent
+
+ void value} />}
+ onClick={() => void 0}
+ icon="blank"
+ >
+ User Joined Call
+
+ void value} />}
+ onClick={() => void 0}
+ icon="blank"
+ >
+ User Left Call
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/Sessions.tsx b/components/app/interface/settings/user/Sessions.tsx
new file mode 100644
index 0000000..7c41cc5
--- /dev/null
+++ b/components/app/interface/settings/user/Sessions.tsx
@@ -0,0 +1,208 @@
+import {
+ BiLogosAndroid,
+ BiLogosApple,
+ BiLogosWindows,
+ BiRegularQuestionMark,
+} from "solid-icons/bi";
+import { FaBrandsLinux } from "solid-icons/fa";
+import {
+ Accessor,
+ For,
+ Match,
+ Show,
+ Switch,
+ createMemo,
+ onMount,
+} from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { Session } from "stoat.js";
+import { styled } from "styled-system/jsx";
+
+import { useClient } from "@revolt/client";
+import { useModals } from "@revolt/modal";
+import {
+ CategoryButton,
+ CategoryButtonGroup,
+ CategoryCollapse,
+ CircularProgress,
+ Column,
+ Time,
+ iconSize,
+} from "@revolt/ui";
+
+import MdLogout from "@material-design-icons/svg/outlined/logout.svg?component-solid";
+
+/**
+ * Sessions
+ */
+export function Sessions() {
+ const client = useClient();
+ onMount(() => client().sessions.fetch());
+
+ /**
+ * Sort the other sessions by created date
+ */
+ const otherSessions = createMemo(() =>
+ client()
+ .sessions.filter((session) => !session.current)
+ .sort((a, b) => +b.createdAt - +a.createdAt),
+ );
+
+ return (
+
+ }>
+
+
+
+
+
+
+ );
+}
+
+/**
+ * Manage user's current session
+ */
+function ManageCurrentSession(props: { otherSessions: Accessor }) {
+ const client = useClient();
+ const { openModal } = useModals();
+
+ /**
+ * Resolve current session
+ */
+ const currentSession = () => client().sessions.get(client().sessionId!);
+
+ return (
+
+ Current Session}
+ description={currentSession()?.name}
+ icon={ }
+ >
+
+ currentSession() &&
+ openModal({
+ type: "rename_session",
+ session: currentSession()!,
+ })
+ }
+ >
+ Rename
+
+
+ {/*
+ }
+ description={Keeps your last sessions active and automatically logs you out of other ones"}
+ >
+ Keep Last Active Sessions
+ */}
+
+
+ openModal({
+ type: "sign_out_sessions",
+ client: client(),
+ })
+ }
+ icon={ }
+ description={
+ Logs you out of all sessions except this device.
+ }
+ >
+ Log Out Other Sessions
+
+
+
+ );
+}
+
+/**
+ * List other logged in sessions
+ */
+function ListOtherSessions(props: { otherSessions: Accessor }) {
+ const { openModal } = useModals();
+
+ return (
+
+
+
+
+ {(session) => (
+ }
+ title={{session.name} }
+ description={
+
+ Created
+
+ }
+ >
+
+ openModal({
+ type: "rename_session",
+ session,
+ })
+ }
+ >
+ Rename
+
+ session.delete()}
+ >
+ Log Out
+
+
+ )}
+
+
+
+
+ );
+}
+
+/**
+ * Capitalize session titles
+ */
+const Capitalise = styled("div", {
+ base: {
+ textTransform: "capitalize",
+ },
+});
+
+/**
+ * Show icon for session
+ */
+function SessionIcon(props: { session?: Session }) {
+ return (
+ }>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/Sync.tsx b/components/app/interface/settings/user/Sync.tsx
new file mode 100644
index 0000000..6287494
--- /dev/null
+++ b/components/app/interface/settings/user/Sync.tsx
@@ -0,0 +1,64 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import {
+ CategoryButton,
+ CategoryButtonGroup,
+ Checkbox,
+ Column,
+ Time,
+ iconSize,
+} from "@revolt/ui";
+
+import MdBrush from "@material-design-icons/svg/outlined/brush.svg?component-solid";
+import MdLanguage from "@material-design-icons/svg/outlined/language.svg?component-solid";
+import MdPalette from "@material-design-icons/svg/outlined/palette.svg?component-solid";
+
+/**
+ * Sync Configuration Page
+ */
+export default function Sync() {
+ return (
+
+
+ void value} />}
+ onClick={() => void 0}
+ icon={ }
+ description={
+
+ Sync appearance options, such as chosen emoji pack and message
+ density.
+
+ }
+ >
+ Appearance
+
+ void value} />}
+ onClick={() => void 0}
+ icon={ }
+ description={
+ Sync your chosen theme, colours, and any custom CSS.
+ }
+ >
+ Theme
+
+ void value} />}
+ onClick={() => void 0}
+ icon={ }
+ description={Sync your currently chosen language. }
+ >
+ Language
+
+
+
+
+
+ Last sync
+
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/_AccountCard.tsx b/components/app/interface/settings/user/_AccountCard.tsx
new file mode 100644
index 0000000..209ef60
--- /dev/null
+++ b/components/app/interface/settings/user/_AccountCard.tsx
@@ -0,0 +1,42 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useClient } from "@revolt/client";
+import { Avatar, OverflowingText, Ripple, typography } from "@revolt/ui";
+
+import { useSettingsNavigation } from "../Settings";
+import {
+ SidebarButton,
+ SidebarButtonContent,
+ SidebarButtonTitle,
+} from "../_layout/SidebarButton";
+
+/**
+ * Account Card
+ */
+export function AccountCard() {
+ const client = useClient();
+ const { page, navigate } = useSettingsNavigation();
+
+ return (
+ navigate("account")}
+ aria-selected={page() === "account"}
+ >
+
+
+
+
+
+ {client().user!.displayName}
+
+ My Account
+
+
+ {/*
+
+ */}
+
+ );
+}
diff --git a/components/app/interface/settings/user/account/UserSummary.tsx b/components/app/interface/settings/user/account/UserSummary.tsx
new file mode 100644
index 0000000..a99d435
--- /dev/null
+++ b/components/app/interface/settings/user/account/UserSummary.tsx
@@ -0,0 +1,146 @@
+import { Show } from "solid-js";
+
+import { User } from "stoat.js";
+import { styled } from "styled-system/jsx";
+
+import { useTime } from "@revolt/i18n";
+import { Avatar, CategoryButton, IconButton, iconSize } from "@revolt/ui";
+
+import MdCakeFill from "@material-design-icons/svg/filled/cake.svg?component-solid";
+import MdEdit from "@material-design-icons/svg/outlined/edit.svg?component-solid";
+
+export function UserSummary(props: {
+ user: User;
+ showBadges?: boolean;
+ bannerUrl?: string;
+ onEdit?: () => void;
+}) {
+ const dayjs = useTime();
+ const bannerStyle = () =>
+ props.bannerUrl
+ ? {
+ "background-image": `linear-gradient(color-mix(in srgb, var(--md-sys-color-surface-container-low) 70%, transparent), color-mix(in srgb, var(--md-sys-color-surface-container-low) 70%, transparent)), url("${props.bannerUrl}")`,
+ color: "black",
+ }
+ : {
+ background: `var(--md-sys-color-primary-container)`,
+ color: "var(--md-sys-color-on-primary)",
+ };
+
+ return (
+
+
+
+
+
+ {props.user.displayName}
+
+ {props.user.username}#{props.user.discriminator}
+
+
+
+
+
+
+
+
+
+
+
+ {/*
+
+
+
+ */}
+
+
+
+
+
+
+
+
+
+ );
+}
+
+const AccountBox = styled("div", {
+ base: {
+ display: "flex",
+ padding: "var(--gap-lg)",
+ flexDirection: "column",
+
+ backgroundSize: "cover",
+ backgroundPosition: "center",
+ },
+});
+
+const ProfileDetails = styled("div", {
+ base: {
+ display: "flex",
+ gap: "var(--gap-lg)",
+ alignItems: "center",
+ },
+});
+
+const Username = styled("div", {
+ base: {
+ flexGrow: 1,
+
+ display: "flex",
+ flexDirection: "column",
+
+ color: "var(--md-sys-color-on-secondary-container)",
+
+ // Display Name
+ "& :nth-child(1)": {
+ fontSize: "18px",
+ fontWeight: 600,
+ },
+
+ // Username#Discrim
+ "& :nth-child(2)": {
+ fontSize: "14px",
+ fontWeight: 400,
+ },
+ },
+});
+
+const BottomBar = styled("div", {
+ base: {
+ display: "flex",
+ },
+});
+
+const DummyPadding = styled("div", {
+ base: {
+ flexShrink: 0,
+ // Matches with avatar size
+ width: "58px",
+ // Matches with ProfileDetails
+ marginInlineEnd: "var(--gap-lg)",
+ },
+});
+
+const ProfileBadges = styled("div", {
+ base: {
+ display: "flex",
+ gap: "var(--gap-sm)",
+ width: "fit-content",
+ padding: "var(--gap-md)",
+ borderRadius: "var(--borderRadius-md)",
+
+ fill: "var(--md-sys-color-on-secondary)",
+ background: "var(--md-sys-color-secondary)",
+ },
+});
diff --git a/components/app/interface/settings/user/account/index.ts b/components/app/interface/settings/user/account/index.ts
new file mode 100644
index 0000000..b647066
--- /dev/null
+++ b/components/app/interface/settings/user/account/index.ts
@@ -0,0 +1 @@
+export { UserSummary } from "./UserSummary";
diff --git a/components/app/interface/settings/user/appearance/AppearanceMenu.tsx b/components/app/interface/settings/user/appearance/AppearanceMenu.tsx
new file mode 100644
index 0000000..07f7d65
--- /dev/null
+++ b/components/app/interface/settings/user/appearance/AppearanceMenu.tsx
@@ -0,0 +1,459 @@
+import { For, Match, Show, Switch, createSignal } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { css } from "styled-system/css";
+import { styled } from "styled-system/jsx";
+
+import { useUser } from "@revolt/client";
+import {
+ UNICODE_EMOJI_PACKS,
+ UnicodeEmoji,
+ UnicodeEmojiPacks,
+} from "@revolt/markdown/emoji/UnicodeEmoji";
+import { useState } from "@revolt/state";
+import {
+ Avatar,
+ Button,
+ Checkbox,
+ Column,
+ IconButton,
+ MenuItem,
+ MessageContainer,
+ Row,
+ Slider,
+ Text,
+ TextField,
+} from "@revolt/ui";
+import {
+ FONT_KEYS,
+ Fonts,
+ MONOSPACE_FONT_KEYS,
+ MonospaceFonts,
+} from "@revolt/ui/themes/fonts";
+
+import MDPalette from "@material-design-icons/svg/outlined/palette.svg?component-solid";
+
+/**
+ * All appearance options for the client
+ */
+export function AppearanceMenu() {
+ const user = useUser();
+ const state = useState();
+ const [pickerRef, setPickerRef] = createSignal();
+
+ return (
+
+
+
+ Welcome to the new appearance menu, custom themes are not available
+ just yet but we are looking for feedback on how to best implement
+ them!
+
+
+
+
+
+ Colours
+
+
+
+ state.theme.setMode("light")}
+ >
+ Light
+
+ state.theme.setMode("dark")}
+ >
+ Dark
+
+ state.theme.setMode("system")}
+ >
+ System
+
+
+
+ {/*
+ state.theme.setPreset("stoat")}
+ >
+ Stoat
+
+ state.theme.setPreset("you")}
+ >
+ Material You
+
+
*/}
+
+
+
+ pickerRef()?.click()}
+ >
+
+
+ {
+ const colour = (e.currentTarget as HTMLInputElement).value;
+ state.theme.setM3Accent(colour);
+ }}
+ style={{
+ position: "absolute",
+ opacity: 0,
+ width: "0px",
+ height: "0px",
+ padding: 0,
+ border: "none",
+ }}
+ />
+
+ {(colour) => (
+ state.theme.setM3Accent(colour)}
+ />
+ // state.theme.setM3Accent(colour)}
+ // />
+ )}
+
+ {/*
+
+
*/}
+
+
+
+ state.theme.setM3Contrast(-1.0)}
+ >
+ Reduced
+
+ state.theme.setM3Contrast(0)}
+ >
+ Normal
+
+ state.theme.setM3Contrast(0.5)}
+ >
+ More Contrast
+
+ state.theme.setM3Contrast(1.0)}
+ >
+ High Contrast
+
+
+
+
+ state.theme.setM3Variant("monochrome")}
+ >
+ Monochrome
+
+ state.theme.setM3Variant("neutral")}
+ >
+ Neutral
+
+ state.theme.setM3Variant("tonal_spot")}
+ >
+ Tonal Spot
+
+ {/* state.theme.setM3Variant("vibrant")}
+ >
+ Vibrant
+
+ state.theme.setM3Variant("expressive")}
+ >
+ Expressive
+
+ state.theme.setM3Variant("fidelity")}
+ >
+ Fidelity
+
+ state.theme.setM3Variant("content")}
+ >
+ Content
+
+ state.theme.setM3Variant("rainbow")}
+ >
+ Rainbow
+ */}
+ state.theme.setM3Variant("fruit_salad")}
+ >
+ Fruit Salad
+
+
+
+
+
+
+
+ Display & Text
+
+
+
+
+ Enable transparency glass/blur effects (slow on older machines)
+
+
+
+
+
+
+ }
+ timestamp={new Date()}
+ username={user()?.displayName}
+ isLink="hide"
+ >
+ Sphinx of black quartz, judge my vow
+
+ }
+ timestamp={new Date()}
+ username={"MysticPixie"}
+ isLink="hide"
+ >
+
+ The quick brown fox jumped over the lazy dog
+
+
+
+
+
+
+ Message Size
+
+
+ (state.theme.messageSize = event.currentTarget.value)
+ }
+ />
+
+
+
+ Message Group Spacing
+
+
+ (state.theme.messageGroupSpacing = event.currentTarget.value)
+ }
+ />
+
+
+ Interface Font
+
+
+ state.theme.setInterfaceFont(e.currentTarget.value as Fonts)
+ }
+ >
+
+ {(key) => {key} }
+
+
+
+
+ Monospace Font
+
+
+ state.theme.setMonospaceFont(e.currentTarget.value as MonospaceFonts)
+ }
+ >
+
+ {(key) => {key} }
+
+
+
+
+
+ Chat Input
+
+
+
+ state.settings.setValue(
+ "appearance:show_send_button",
+ event.currentTarget.checked,
+ )
+ }
+ >
+ Show send message button
+
+
+
+ Emoji Pack (affects your messages only)
+
+
+ state.settings.setValue(
+ "appearance:unicode_emoji",
+ e.currentTarget.value as never,
+ )
+ }
+ >
+
+ {(pack) => }
+
+
+
+
+ );
+}
+
+/**
+ * Render an individual emoji pack
+ * @param pack Pack
+ */
+function EmojiPack(props: { pack: UnicodeEmojiPacks }) {
+ return (
+
+
+
+
+
+
+
+
+ Fluent 3D
+ Fluent Color
+ Fluent Flat
+ Mutant Remix
+ Noto
+ OpenMoji
+ Twemoji
+
+
+
+ );
+}
+
+const Preview = styled("div", {
+ base: {
+ height: "126px",
+ overflow: "hidden",
+ borderRadius: "var(--borderRadius-lg)",
+ background: "var(--md-sys-color-surface-container-highest)",
+ },
+});
+
+const MessagePreview = styled("div", {
+ base: {
+ display: "flex",
+ flexDirection: "column",
+ padding: "var(--gap-md)",
+ gap: "var(--message-group-spacing)",
+ },
+});
diff --git a/components/app/interface/settings/user/appearance/index.ts b/components/app/interface/settings/user/appearance/index.ts
new file mode 100644
index 0000000..06e35ac
--- /dev/null
+++ b/components/app/interface/settings/user/appearance/index.ts
@@ -0,0 +1 @@
+export { AppearanceMenu } from "./AppearanceMenu";
diff --git a/components/app/interface/settings/user/bots/MyBots.tsx b/components/app/interface/settings/user/bots/MyBots.tsx
new file mode 100644
index 0000000..209e575
--- /dev/null
+++ b/components/app/interface/settings/user/bots/MyBots.tsx
@@ -0,0 +1,111 @@
+import { ErrorBoundary, For, Suspense } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useClient } from "@revolt/client";
+import { createOwnBotsResource } from "@revolt/client/resources";
+import { useModals } from "@revolt/modal";
+import {
+ Avatar,
+ CategoryButton,
+ CategoryButtonGroup,
+ CircularProgress,
+ Column,
+ iconSize,
+} from "@revolt/ui";
+
+import MdLibraryBooks from "@material-design-icons/svg/outlined/library_books.svg?component-solid";
+import MdSmartToy from "@material-design-icons/svg/outlined/smart_toy.svg?component-solid";
+
+import { useSettingsNavigation } from "../../Settings";
+
+/**
+ * View all owned bots
+ */
+export function MyBots() {
+ return (
+
+
+
+
+ );
+}
+
+/**
+ * Prompt to create a new bot
+ */
+function CreateBot() {
+ const client = useClient();
+ const { openModal } = useModals();
+ const { navigate } = useSettingsNavigation();
+
+ return (
+
+ }
+ onClick={() =>
+ openModal({
+ type: "create_bot",
+ client: client(),
+ onCreate(bot) {
+ navigate(`bots/${bot.id}`);
+ },
+ })
+ }
+ description={
+
+ You agree that your bot is subject to the Acceptable Usage Policy.
+
+ }
+ >
+ Create Bot
+
+ }
+ onClick={() => window.open("https://developers.stoat.chat", "_blank")}
+ description={
+ Learn more about how to create bots on Stoat.
+ }
+ >
+ Developer Documentation
+
+
+ );
+}
+
+/**
+ * List owned bots by current user
+ */
+function ListBots() {
+ const { navigate } = useSettingsNavigation();
+ const bots = createOwnBotsResource();
+
+ return (
+
+ }>
+
+
+ {(bot) => (
+
+ }
+ onClick={() => navigate(`bots/${bot.id}`)}
+ action="chevron"
+ // description={bot.id}
+ >
+ {bot.user!.displayName}
+
+ )}
+
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/bots/ViewBot.tsx b/components/app/interface/settings/user/bots/ViewBot.tsx
new file mode 100644
index 0000000..5a8938c
--- /dev/null
+++ b/components/app/interface/settings/user/bots/ViewBot.tsx
@@ -0,0 +1,113 @@
+import { Trans } from "@lingui-solid/solid/macro";
+import { Bot } from "stoat.js";
+
+import { createProfileResource } from "@revolt/client/resources";
+import { useModals } from "@revolt/modal";
+import { CategoryButton, Column, iconSize } from "@revolt/ui";
+
+import MdContentCopy from "@material-design-icons/svg/outlined/content_copy.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+import MdKey from "@material-design-icons/svg/outlined/key.svg?component-solid";
+import MdLink from "@material-design-icons/svg/outlined/link.svg?component-solid";
+import MdPersonAdd from "@material-design-icons/svg/outlined/person_add.svg?component-solid";
+import MdPublic from "@material-design-icons/svg/outlined/public.svg?component-solid";
+import MdToken from "@material-design-icons/svg/outlined/token.svg?component-solid";
+
+import { UserSummary } from "../account/index";
+import { UserProfileEditor } from "../profile/UserProfileEditor";
+
+/**
+ * View a specific bot
+ */
+export function ViewBot(props: { bot: Bot }) {
+ // `bot` will never change, so we don't care about reactivity here
+ // eslint-disable-next-line solid/reactivity
+ const profile = createProfileResource(props.bot.user!);
+ const { openModal } = useModals();
+
+ return (
+
+
+
+
+ {/* Failed to load profile>}>
+ loading...>}>{profile.data?.content}
+ */}
+
+
+ Generate a new token if it gets lost or compromised
+ }
+ icon={ }
+ action="chevron"
+ onClick={() => openModal({ type: "reset_bot_token", bot: props.bot })}
+ >
+ Reset Token
+
+
+ Allow others to add your bot to their servers from Discover
+
+ }
+ icon={ }
+ action="chevron"
+ >
+ Submit to Discover
+
+
+
+
+ }
+ action="chevron"
+ onClick={() =>
+ openModal({
+ type: "add_bot",
+ invite: props.bot.publicBot,
+ })
+ }
+ >
+ Invite Bot
+
+ }
+ action="copy"
+ onClick={() =>
+ navigator.clipboard.writeText(
+ new URL(`/bot/${props.bot.id}`, window.origin).toString(),
+ )
+ }
+ >
+ Copy Invite URL
+
+ }
+ action="copy"
+ onClick={() => navigator.clipboard.writeText(props.bot.id)}
+ >
+ Copy ID
+
+ }
+ action="copy"
+ onClick={() => navigator.clipboard.writeText(props.bot.token)}
+ >
+ Copy Token
+
+ }
+ action="chevron"
+ onClick={() => openModal({ type: "delete_bot", bot: props.bot })}
+ >
+ Delete Bot
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/bots/index.ts b/components/app/interface/settings/user/bots/index.ts
new file mode 100644
index 0000000..645bc0c
--- /dev/null
+++ b/components/app/interface/settings/user/bots/index.ts
@@ -0,0 +1,2 @@
+export { MyBots } from "./MyBots";
+export { ViewBot } from "./ViewBot";
diff --git a/components/app/interface/settings/user/profile/EditProfile.tsx b/components/app/interface/settings/user/profile/EditProfile.tsx
new file mode 100644
index 0000000..9dfca22
--- /dev/null
+++ b/components/app/interface/settings/user/profile/EditProfile.tsx
@@ -0,0 +1,70 @@
+import { For } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useClient } from "@revolt/client";
+import { createOwnProfileResource } from "@revolt/client/resources";
+import { useModals } from "@revolt/modal";
+import { Avatar, CategoryButton, Column, Text, iconSize } from "@revolt/ui";
+
+import MdGroups from "@material-design-icons/svg/outlined/groups.svg?component-solid";
+
+import { UserSummary } from "../account/index";
+
+import { UserProfileEditor } from "./UserProfileEditor";
+
+/**
+ * Edit profile
+ */
+export function EditProfile() {
+ const client = useClient();
+ const { openModal } = useModals();
+ const profile = createOwnProfileResource();
+
+ return (
+
+
+
+
+ }
+ title={Server Identities }
+ description={Change your profile per-server }
+ scrollable
+ >
+
+ {(server) => (
+
+ }
+ onClick={() =>
+ openModal({
+ type: "server_identity",
+ member: server.member!,
+ })
+ }
+ >
+ {server.name}
+
+ )}
+
+
+
+
+
+
+ Edit Global Profile
+
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/profile/UserProfileEditor.tsx b/components/app/interface/settings/user/profile/UserProfileEditor.tsx
new file mode 100644
index 0000000..d105e35
--- /dev/null
+++ b/components/app/interface/settings/user/profile/UserProfileEditor.tsx
@@ -0,0 +1,208 @@
+import { createFormControl, createFormGroup } from "solid-forms";
+import { Show, createEffect, createSignal, on } from "solid-js";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+import { useQuery, useQueryClient } from "@tanstack/solid-query";
+import { API, User } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import {
+ CategoryButton,
+ CircularProgress,
+ Column,
+ Form2,
+ Row,
+ Text,
+} from "@revolt/ui";
+
+import MdBadge from "@material-design-icons/svg/filled/badge.svg?component-solid";
+
+import { useSettingsNavigation } from "../../Settings";
+
+interface Props {
+ user: User;
+}
+
+export function UserProfileEditor(props: Props) {
+ const { t } = useLingui();
+ const client = useClient();
+ const queryClient = useQueryClient();
+
+ const profile = useQuery(() => ({
+ queryKey: ["profile", props.user.id],
+ queryFn: () => props.user.fetchProfile(),
+ refetchOnReconnect: false,
+ refetchOnWindowFocus: false,
+ }));
+
+ const { navigate } = useSettingsNavigation();
+
+ /* eslint-disable solid/reactivity */
+ const editGroup = createFormGroup({
+ displayName: createFormControl(props.user.displayName),
+ // username: createFormControl(props.user.username),
+ avatar: createFormControl(
+ props.user.animatedAvatarURL,
+ ),
+ banner: createFormControl(null),
+ bio: createFormControl(""),
+ });
+ /* eslint-enable solid/reactivity */
+
+ // unlike the other forms, this one does not react to
+ // further changes outside of our control because it's
+ // unlikely that the user is going to be doing this
+
+ const [initialBio, setInitialBio] = createSignal();
+
+ // once profile data is loaded, copy it into the form
+ createEffect(
+ on(
+ () => profile.data,
+ (profileData) => {
+ if (profileData) {
+ editGroup.controls.banner.setValue(
+ profileData.animatedBannerURL || null,
+ );
+
+ editGroup.controls.bio.setValue(profileData.content || "");
+ setInitialBio([profileData.content || ""]);
+ }
+ },
+ ),
+ );
+
+ function onReset() {
+ editGroup.controls.displayName.setValue(props.user.displayName);
+ editGroup.controls.avatar.setValue(props.user.animatedAvatarURL);
+
+ if (profile.data) {
+ editGroup.controls.banner.setValue(
+ profile.data.animatedBannerURL || null,
+ );
+ editGroup.controls.bio.setValue(profile.data.content || "");
+ setInitialBio([profile.data.content || ""]);
+ }
+ }
+
+ async function onSubmit() {
+ const changes: API.DataEditUser = {
+ remove: [],
+ };
+
+ if (editGroup.controls.displayName.isDirty) {
+ changes.display_name = editGroup.controls.displayName.value.trim();
+ }
+
+ if (editGroup.controls.avatar.isDirty) {
+ if (!editGroup.controls.avatar.value) {
+ changes.remove!.push("Avatar");
+ } else if (Array.isArray(editGroup.controls.avatar.value)) {
+ changes.avatar = await client().uploadFile(
+ "avatars",
+ editGroup.controls.avatar.value[0],
+ CONFIGURATION.DEFAULT_MEDIA_URL,
+ );
+ }
+ }
+
+ if (editGroup.controls.bio.isDirty) {
+ if (!editGroup.controls.bio.value) {
+ changes.remove!.push("ProfileContent");
+ } else {
+ changes.profile ??= {};
+ changes.profile.content = editGroup.controls.bio.value;
+ }
+ }
+
+ let newBannerUrl: string | null = null;
+
+ if (editGroup.controls.banner.isDirty) {
+ if (!editGroup.controls.banner.value) {
+ changes.remove!.push("ProfileBackground");
+ } else if (Array.isArray(editGroup.controls.banner.value)) {
+ changes.profile ??= {};
+ changes.profile.background = await client().uploadFile(
+ "backgrounds",
+ editGroup.controls.banner.value[0],
+ CONFIGURATION.DEFAULT_MEDIA_URL,
+ );
+
+ newBannerUrl = `${CONFIGURATION.DEFAULT_MEDIA_URL}/backgrounds/${changes.profile.background}`;
+ } else {
+ newBannerUrl = editGroup.controls.banner.value;
+ }
+ }
+
+ await props.user.edit(changes);
+
+ if (editGroup.controls.banner.isDirty && profile.data) {
+ queryClient.setQueryData(["profile", props.user.id], {
+ ...profile.data,
+ animatedBannerURL: newBannerUrl,
+ bannerURL: newBannerUrl,
+ });
+ }
+ }
+
+ const submit = Form2.useSubmitHandler(editGroup, onSubmit, onReset);
+
+ return (
+
+ );
+}
diff --git a/components/app/interface/settings/user/profile/index.ts b/components/app/interface/settings/user/profile/index.ts
new file mode 100644
index 0000000..30d571f
--- /dev/null
+++ b/components/app/interface/settings/user/profile/index.ts
@@ -0,0 +1 @@
+export * from "./EditProfile";
diff --git a/components/app/interface/settings/user/subscriptions/EditSubscription.tsx b/components/app/interface/settings/user/subscriptions/EditSubscription.tsx
new file mode 100644
index 0000000..c000a25
--- /dev/null
+++ b/components/app/interface/settings/user/subscriptions/EditSubscription.tsx
@@ -0,0 +1,15 @@
+import {
+ EditSubscriptionJoinFlow,
+ TempMountStripe,
+} from "./EditSubscriptionJoinFlow";
+
+/**
+ * Settings menu for joining or changing [premium subscription name here]
+ */
+export function EditSubscription() {
+ return (
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/subscriptions/EditSubscriptionJoinFlow.tsx b/components/app/interface/settings/user/subscriptions/EditSubscriptionJoinFlow.tsx
new file mode 100644
index 0000000..d84483f
--- /dev/null
+++ b/components/app/interface/settings/user/subscriptions/EditSubscriptionJoinFlow.tsx
@@ -0,0 +1,59 @@
+import { JSXElement, createSignal, onMount } from "solid-js";
+import { Elements, PaymentElement, useElements, useStripe } from "solid-stripe";
+
+import { loadStripe } from "@stripe/stripe-js/pure";
+
+/**
+ * Tier selection and purchase flow
+ */
+export function EditSubscriptionJoinFlow() {
+ const stripe = useStripe();
+ const elements = useElements();
+
+ return (
+
+ );
+}
+
+export function TempMountStripe(props: { children: JSXElement }) {
+ const [stripe, setStripe] = createSignal(null);
+
+ onMount(async () => {
+ const _stripe = await loadStripe(
+ "pk_test_51QeG4NQS9UmC2GH3zIQp8F8hpOtSiq1Cix94Xjf0giCm6MW5qj0Wtdf4RY5HpvtG2Z8CmlR1W5ELLAqjSxgZjTAn00899Z6cfd",
+ );
+
+ setStripe(_stripe as never);
+ });
+
+ const theme = window.getComputedStyle(document.body);
+
+ return (
+
+ {props.children}
+
+ );
+}
diff --git a/components/app/interface/settings/user/subscriptions/index.ts b/components/app/interface/settings/user/subscriptions/index.ts
new file mode 100644
index 0000000..3ddd781
--- /dev/null
+++ b/components/app/interface/settings/user/subscriptions/index.ts
@@ -0,0 +1 @@
+export * from "./EditSubscription";
diff --git a/components/app/interface/settings/user/voice/VoiceInputOptions.tsx b/components/app/interface/settings/user/voice/VoiceInputOptions.tsx
new file mode 100644
index 0000000..f392c3c
--- /dev/null
+++ b/components/app/interface/settings/user/voice/VoiceInputOptions.tsx
@@ -0,0 +1,142 @@
+import { For } from "solid-js";
+import { useMediaDeviceSelect } from "solid-livekit-components";
+
+import { Trans, useLingui } from "@lingui-solid/solid/macro";
+
+import { useState } from "@revolt/state";
+import { Checkbox, Column, Slider, Text } from "@revolt/ui";
+import {
+ CategoryButton,
+ CategoryCollapse,
+} from "@revolt/ui/components/design/CategoryButton";
+import { Symbol } from "@revolt/ui/components/utils/Symbol";
+
+/**
+ * Input options
+ */
+export function VoiceInputOptions() {
+ return (
+
+
+
+
+
+
+
+ );
+}
+
+/**
+ * Select audio input
+ */
+function SelectMicrophone() {
+ const { t } = useLingui();
+ const state = useState();
+ const { activeDeviceId, devices, setActiveMediaDevice } =
+ useMediaDeviceSelect({
+ kind: "audioinput",
+ });
+
+ const activeId = () =>
+ (activeDeviceId() === "default"
+ ? state.voice.preferredAudioInputDevice
+ : undefined) ?? activeDeviceId();
+
+ const description = () =>
+ devices().find((device) => device.deviceId === activeId())?.label ??
+ t`Using default microphone`;
+
+ return (
+ mic}
+ title={Select audio input }
+ description={description()}
+ scrollable
+ >
+
+ {(device) => (
+ }
+ onClick={() => {
+ state.voice.preferredAudioInputDevice = device.deviceId;
+ setActiveMediaDevice(device.deviceId);
+ }}
+ >
+ {device.label}
+
+ )}
+
+
+ );
+}
+
+/**
+ * Select audio output
+ */
+function SelectSpeaker() {
+ const { t } = useLingui();
+ const state = useState();
+ const { activeDeviceId, devices, setActiveMediaDevice } =
+ useMediaDeviceSelect({
+ kind: "audiooutput",
+ });
+
+ const activeId = () =>
+ (activeDeviceId() === "default"
+ ? state.voice.preferredAudioOutputDevice
+ : undefined) ?? activeDeviceId();
+
+ const description = () =>
+ devices().find((device) => device.deviceId === activeId())?.label ??
+ t`Using default speaker`;
+
+ return (
+ speaker}
+ title={Select audio output }
+ description={description()}
+ scrollable
+ >
+
+ {(device) => (
+ }
+ onClick={() => {
+ state.voice.preferredAudioOutputDevice = device.deviceId;
+ setActiveMediaDevice(device.deviceId);
+ }}
+ >
+ {device.label}
+
+ )}
+
+
+ );
+}
+
+/**
+ * Select volume
+ */
+function VolumeSliders() {
+ const state = useState();
+
+ return (
+
+
+ Output Volume
+
+
+ (state.voice.outputVolume = event.currentTarget.value)
+ }
+ labelFormatter={(label) => (label * 100).toFixed(0) + "%"}
+ />
+
+ );
+}
diff --git a/components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx b/components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
new file mode 100644
index 0000000..4cb3e85
--- /dev/null
+++ b/components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
@@ -0,0 +1,39 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useState } from "@revolt/state";
+import { CategoryButton, Checkbox, Column, Text } from "@revolt/ui";
+
+/**
+ * Voice processing options
+ */
+export function VoiceProcessingOptions() {
+ const state = useState();
+
+ return (
+
+
+ Voice Processing
+
+
+ }
+ onClick={() =>
+ (state.voice.noiseSupression = !state.voice.noiseSupression)
+ }
+ >
+ Browser Noise Supression
+
+ }
+ onClick={() =>
+ (state.voice.echoCancellation = !state.voice.echoCancellation)
+ }
+ >
+ Browser Echo Cancellation
+
+
+
+ );
+}
diff --git a/components/app/interface/settings/user/voice/VoiceSettings.tsx b/components/app/interface/settings/user/voice/VoiceSettings.tsx
new file mode 100644
index 0000000..bb10d3e
--- /dev/null
+++ b/components/app/interface/settings/user/voice/VoiceSettings.tsx
@@ -0,0 +1,16 @@
+import { Column } from "@revolt/ui";
+
+import { VoiceInputOptions } from "./VoiceInputOptions";
+import { VoiceProcessingOptions } from "./VoiceProcessingOptions";
+
+/**
+ * Configure voice options
+ */
+export function VoiceSettings() {
+ return (
+
+
+
+
+ );
+}
diff --git a/components/app/menus/CategoryContextMenu.tsx b/components/app/menus/CategoryContextMenu.tsx
new file mode 100644
index 0000000..f380329
--- /dev/null
+++ b/components/app/menus/CategoryContextMenu.tsx
@@ -0,0 +1,127 @@
+import { Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import type { API } from "stoat.js";
+import { Channel, Server } from "stoat.js";
+
+import { useModals } from "@revolt/modal";
+import { useState } from "@revolt/state";
+
+import MdBadge from "@material-design-icons/svg/outlined/badge.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+import MdLibraryAdd from "@material-design-icons/svg/outlined/library_add.svg?component-solid";
+import MdMarkChatRead from "@material-design-icons/svg/outlined/mark_chat_read.svg?component-solid";
+
+import { Symbol } from "@revolt/ui/components/utils/Symbol";
+import {
+ ContextMenu,
+ ContextMenuButton,
+ ContextMenuDivider,
+} from "./ContextMenu";
+
+export type CategoryData = Omit & {
+ channels: Channel[];
+};
+
+/**
+ * Context menu for categories
+ */
+export function CategoryContextMenu(props: {
+ server: Server;
+ category: CategoryData;
+}) {
+ const state = useState();
+ const { openModal } = useModals();
+
+ /**
+ * Mark category as read
+ */
+ function markAsRead() {
+ props.category.channels
+ .filter((channel) => channel.unread)
+ .forEach((channel) => channel.ack());
+ }
+
+ /**
+ * Create a new category
+ */
+ function createCategory() {
+ openModal({
+ type: "create_category",
+ server: props.server,
+ });
+ }
+
+ /**
+ * Delete category
+ */
+ function deleteCategory() {
+ openModal({
+ type: "delete_category",
+ server: props.server,
+ categoryId: props.category.id,
+ });
+ }
+
+ function editCategoryName() {
+ openModal({
+ type: "edit_category",
+ server: props.server,
+ category: props.category,
+ });
+ }
+
+ /**
+ * Copy category id to clipboard
+ */
+ function copyId() {
+ navigator.clipboard.writeText(props.category.id);
+ }
+
+ /**
+ * Determine if any channel in category has unread messages
+ */
+ const hasUnread = () => {
+ return props.category.channels.some((channel) => channel?.unread);
+ };
+
+ return (
+
+
+
+ Mark as read
+
+
+
+
+
+
+ Create category
+
+
+
+ edit}
+ onClick={editCategoryName}
+ >
+ Rename category
+
+
+
+
+ Delete category
+
+
+
+
+
+
+
+
+
+ Copy category ID
+
+
+
+ );
+}
diff --git a/components/app/menus/ChannelContextMenu.tsx b/components/app/menus/ChannelContextMenu.tsx
new file mode 100644
index 0000000..206465a
--- /dev/null
+++ b/components/app/menus/ChannelContextMenu.tsx
@@ -0,0 +1,179 @@
+import { Match, Show, Switch } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { Channel } from "stoat.js";
+
+import { useModals } from "@revolt/modal";
+import { useState } from "@revolt/state";
+
+import MdBadge from "@material-design-icons/svg/outlined/badge.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+import MdGroupAdd from "@material-design-icons/svg/outlined/group_add.svg?component-solid";
+import MdLibraryAdd from "@material-design-icons/svg/outlined/library_add.svg?component-solid";
+import MdLogout from "@material-design-icons/svg/outlined/logout.svg?component-solid";
+import MdMarkChatRead from "@material-design-icons/svg/outlined/mark_chat_read.svg?component-solid";
+import MdSettings from "@material-design-icons/svg/outlined/settings.svg?component-solid";
+import MdShare from "@material-design-icons/svg/outlined/share.svg?component-solid";
+import MdShield from "@material-design-icons/svg/outlined/shield.svg?component-solid";
+
+import {
+ ContextMenu,
+ ContextMenuButton,
+ ContextMenuDivider,
+} from "./ContextMenu";
+import { NotificationContextMenu } from "./shared/NotificationContextMenu";
+
+/**
+ * Context menu for channels
+ */
+export function ChannelContextMenu(props: { channel: Channel }) {
+ const state = useState();
+ const { openModal } = useModals();
+
+ /**
+ * Mark channel as read
+ */
+ function markAsRead() {
+ props.channel.ack();
+ }
+
+ /**
+ * Create a new invite
+ */
+ function createInvite() {
+ openModal({
+ type: "create_invite",
+ channel: props.channel,
+ });
+ }
+
+ /**
+ * Create a new channel
+ */
+ function createChannel() {
+ openModal({
+ type: "create_channel",
+ server: props.channel.server!,
+ });
+ }
+
+ /**
+ * Edit channel
+ */
+ function editChannel() {
+ openModal({
+ type: "settings",
+ config: "channel",
+ context: props.channel,
+ });
+ }
+
+ /**
+ * Delete channel
+ */
+ function deleteChannel() {
+ openModal({
+ type: "delete_channel",
+ channel: props.channel,
+ });
+ }
+
+ /**
+ * Open channel in Stoat Admin Panel
+ */
+ function openAdminPanel() {
+ window.open(
+ `https://old-admin.stoatinternal.com/panel/inspect/channel/${props.channel.id}`,
+ "_blank",
+ );
+ }
+
+ /**
+ * Copy channel link to clipboard
+ */
+ function copyLink() {
+ navigator.clipboard.writeText(
+ `${location.origin}${
+ props.channel.server ? `/server/${props.channel.server?.id}` : ""
+ }/channel/${props.channel.id}`,
+ );
+ }
+
+ /**
+ * Copy channel id to clipboard
+ */
+ function copyId() {
+ navigator.clipboard.writeText(props.channel.id);
+ }
+
+ return (
+
+
+
+
+ Mark as read
+
+
+
+
+ Create invite
+
+
+
+
+
+
+
+
+
+
+
+ Create channel
+
+
+
+
+ Open channel settings
+
+
+ Delete channel}>
+
+ Leave group
+
+
+
+
+
+
+
+
+
+
+
+ Admin Panel
+
+
+
+ Copy link
+
+
+
+ Copy channel ID
+
+
+
+ );
+}
diff --git a/components/app/menus/ContextMenu.tsx b/components/app/menus/ContextMenu.tsx
new file mode 100644
index 0000000..bad03d5
--- /dev/null
+++ b/components/app/menus/ContextMenu.tsx
@@ -0,0 +1,252 @@
+import { useFloating } from "solid-floating-ui";
+import {
+ Component,
+ ComponentProps,
+ JSX,
+ Show,
+ createSignal,
+ splitProps,
+} from "solid-js";
+import { Portal } from "solid-js/web";
+import { Motion, Presence } from "solid-motionone";
+
+import { autoUpdate, offset, shift } from "@floating-ui/dom";
+import { styled } from "styled-system/jsx";
+
+import { Text, iconSize, symbolSize } from "@revolt/ui";
+
+import MdChevronRight from "@material-design-icons/svg/outlined/chevron_right.svg?component-solid";
+
+const Base = styled("div", {
+ base: {
+ display: "flex",
+ flexDirection: "column",
+ padding: "var(--gap-md) 0",
+ overflow: "hidden",
+ borderRadius: "var(--borderRadius-xs)",
+ background: "var(--md-sys-color-surface-container)",
+ color: "var(--md-sys-color-on-surface)",
+ fill: "var(--md-sys-color-on-surface)",
+ boxShadow: "0 0 3px var(--md-sys-color-shadow)",
+
+ userSelect: "none",
+ },
+});
+
+export function ContextMenu(props: ComponentProps) {
+ return (
+ e.stopImmediatePropagation()}
+ {...props}
+ />
+ );
+}
+
+export const ContextMenuDivider = styled("div", {
+ base: {
+ height: "1px",
+ margin: "var(--gap-sm) 0",
+ background: "var(--md-sys-color-outline-variant)",
+ },
+});
+
+export const ContextMenuItem = styled("a", {
+ base: {
+ display: "flex",
+ gap: "var(--gap-md)",
+ alignItems: "center",
+ padding: "var(--gap-md) var(--gap-lg)",
+
+ "&:hover": {
+ background:
+ "color-mix(in srgb, var(--md-sys-color-on-surface) 8%, transparent)",
+ },
+
+ "& span": {
+ flexGrow: 1,
+ },
+ },
+ variants: {
+ selected: {
+ true: {
+ background:
+ "color-mix(in srgb, var(--md-sys-color-on-surface) 8%, transparent)",
+ },
+ false: {},
+ },
+ action: {
+ true: {
+ cursor: "pointer",
+ },
+ },
+ button: {
+ true: {
+ cursor: "pointer",
+ display: "flex",
+ alignItems: "center",
+ gap: "var(--gap-md)",
+ "& span": {
+ marginTop: "1px",
+ },
+ },
+ },
+ _titleCase: {
+ true: {},
+ false: {},
+ },
+ destructive: {
+ true: {
+ fill: "var(--md-sys-color-error)",
+ color: "var(--md-sys-color-error)",
+ },
+ },
+ },
+ defaultVariants: {
+ _titleCase: true,
+ selected: false,
+ },
+ compoundVariants: [
+ {
+ _titleCase: true,
+ button: true,
+ css: {
+ textTransform: "capitalize",
+ },
+ },
+ ],
+});
+
+type ButtonProps = ComponentProps & {
+ icon?: JSX.Element | Component>;
+ symbol?: Component>;
+ destructive?: boolean;
+ actionIcon?: JSX.Element | Component>;
+ actionSymbol?: Component>;
+};
+
+export function ContextMenuButton(props: ButtonProps) {
+ const [local, remote] = splitProps(props, [
+ "icon",
+ "symbol",
+ "actionIcon",
+ "actionSymbol",
+ "children",
+ ]);
+
+ return (
+
+ {typeof local.icon === "function"
+ ? local.icon?.(iconSize(16))
+ : local.icon}
+ {local.symbol?.(symbolSize(16))}
+ {local.children}
+ {typeof local.actionIcon === "function"
+ ? local.actionIcon?.(iconSize(20))
+ : local.actionIcon}
+ {local.actionSymbol?.(symbolSize(20))}
+
+ );
+}
+
+export function ContextMenuSubMenu(
+ props: Omit<
+ ButtonProps,
+ "ref" | "onClick" | "onMouseEnter" | "onMouseLeave"
+ > & {
+ buttonContent: JSX.Element;
+ onClick?: () => void;
+ },
+) {
+ const [anchor, setAnchor] = createSignal();
+ const [ref, setRef] = createSignal();
+
+ const [show, setShow] = createSignal<"hide" | "show" | boolean>(false);
+ const [local, buttonProps] = splitProps(props, [
+ "children",
+ "buttonContent",
+ "onClick",
+ ]);
+
+ function isShowing() {
+ return show() === true || show() === "show";
+ }
+
+ const position = useFloating(anchor, ref, {
+ placement: "right-start",
+ whileElementsMounted: autoUpdate,
+ middleware: [offset(5), shift()],
+ });
+
+ return (
+ <>
+ {
+ e.stopImmediatePropagation();
+ }}
+ onClick={(e) => {
+ if (local.onClick) {
+ local.onClick();
+ } else {
+ e.stopImmediatePropagation();
+ setShow(isShowing() ? false : "show");
+ }
+ }}
+ onMouseEnter={() => setShow((show) => (show === "hide" ? show : true))}
+ {...buttonProps}
+ >
+ {local.buttonContent}
+
+
+
+
+
+ setShow((show) => (show === true ? false : show))
+ }
+ // stop submenu from closing context menu
+ onMouseDown={(e) => e.stopImmediatePropagation()}
+ >
+ {
+ if (local.onClick) {
+ local.onClick();
+ } else {
+ // prevent submenu trigger from closing context menu
+ e.stopImmediatePropagation();
+ setShow((show) => (show ? "hide" : true));
+ }
+ }}
+ // float a virtual element to ensure the mouseLeave event covers
+ // both the anchor/button we attached to and the newly created context menu
+ style={{
+ position: "fixed",
+ top: 0,
+ left: `-${(anchor()?.clientWidth ?? 0) + 5}px`,
+ width: `${(anchor()?.clientWidth ?? 0) + 5}px`,
+ height: `${anchor()?.clientHeight ?? 0}px`,
+ cursor: "pointer",
+ }}
+ />
+
{local.children}
+
+
+
+
+ >
+ );
+}
diff --git a/components/app/menus/DraftMessageContextMenu.tsx b/components/app/menus/DraftMessageContextMenu.tsx
new file mode 100644
index 0000000..9ba7f18
--- /dev/null
+++ b/components/app/menus/DraftMessageContextMenu.tsx
@@ -0,0 +1,69 @@
+import { Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { Channel } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { useState } from "@revolt/state";
+import { UnsentMessage } from "@revolt/state/stores/Draft";
+
+import MdClose from "@material-design-icons/svg/outlined/close.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+import MdRefresh from "@material-design-icons/svg/outlined/refresh.svg?component-solid";
+
+import { ContextMenu, ContextMenuButton } from "./ContextMenu";
+
+interface Props {
+ draft: UnsentMessage;
+ channel: Channel;
+}
+
+/**
+ * Context menu for draft messages
+ */
+export function DraftMessageContextMenu(props: Props) {
+ const state = useState();
+ const client = useClient();
+
+ /**
+ * Retry sending the draft message
+ */
+ function retrySend() {
+ state.draft.retrySend(client(), props.channel, props.draft.idempotencyKey);
+ }
+
+ /**
+ * Delete the draft message
+ */
+ function deleteMessage() {
+ state.draft.cancelSend(props.channel, props.draft.idempotencyKey);
+ }
+
+ return (
+
+
+
+
+ Cancel message
+
+
+
+
+ Retry sending
+
+
+ Delete message
+
+
+
+
+ );
+}
diff --git a/components/app/menus/MessageContextMenu.tsx b/components/app/menus/MessageContextMenu.tsx
new file mode 100644
index 0000000..63d0625
--- /dev/null
+++ b/components/app/menus/MessageContextMenu.tsx
@@ -0,0 +1,274 @@
+import { For, Match, Show, Switch } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { File, Message } from "stoat.js";
+
+import { useClient, useUser } from "@revolt/client";
+import { CustomEmoji, UnicodeEmoji } from "@revolt/markdown/emoji";
+import { useModals } from "@revolt/modal";
+import { useState } from "@revolt/state";
+
+import MdBadge from "@material-design-icons/svg/outlined/badge.svg?component-solid";
+import MdContentCopy from "@material-design-icons/svg/outlined/content_copy.svg?component-solid";
+import MdDelete from "@material-design-icons/svg/outlined/delete.svg?component-solid";
+import MdDeleteSweep from "@material-design-icons/svg/outlined/delete_sweep.svg?component-solid";
+import MdDownload from "@material-design-icons/svg/outlined/download.svg?component-solid";
+import MdEdit from "@material-design-icons/svg/outlined/edit.svg?component-solid";
+import MdLink from "@material-design-icons/svg/outlined/link.svg?component-solid";
+import MdMarkChatUnread from "@material-design-icons/svg/outlined/mark_chat_unread.svg?component-solid";
+import MdOpenInNew from "@material-design-icons/svg/outlined/open_in_new.svg?component-solid";
+import MdPin from "@material-design-icons/svg/outlined/pin_invoke.svg?component-solid";
+import MdReply from "@material-design-icons/svg/outlined/reply.svg?component-solid";
+import MdReport from "@material-design-icons/svg/outlined/report.svg?component-solid";
+import MdShare from "@material-design-icons/svg/outlined/share.svg?component-solid";
+import MdShield from "@material-design-icons/svg/outlined/shield.svg?component-solid";
+
+import MdSentimentContent from "@material-symbols/svg-400/outlined/sentiment_content.svg?component-solid";
+
+import {
+ ContextMenu,
+ ContextMenuButton,
+ ContextMenuDivider,
+ ContextMenuSubMenu,
+} from "./ContextMenu";
+
+/**
+ * Context menu for messages
+ */
+export function MessageContextMenu(props: { message?: Message; file?: File }) {
+ const user = useUser();
+ const state = useState();
+ const client = useClient();
+ const { openModal, showError } = useModals();
+
+ /**
+ * Reply to this message
+ */
+ function reply() {
+ state.draft.addReply(props.message!, user()!.id);
+ }
+
+ /**
+ * Mark message as unread
+ */
+ function markAsUnread() {
+ props.message!.ack(true, false, true);
+ }
+
+ /**
+ * Copy message contents to clipboard
+ */
+ function copyText() {
+ navigator.clipboard.writeText(props.message!.content);
+ }
+
+ /**
+ * Report the message
+ */
+ function report() {
+ openModal({
+ type: "report_content",
+ target: props.message!,
+ client: client(),
+ });
+ }
+
+ /**
+ * Delete the message
+ */
+ function deleteMessage(ev: MouseEvent) {
+ if (ev.shiftKey) {
+ props.message!.delete();
+ } else {
+ openModal({
+ type: "delete_message",
+ message: props.message!,
+ });
+ }
+ }
+
+ /**
+ * Open message in Stoat Admin Panel
+ */
+ function openAdminPanel() {
+ window.open(
+ `https://old-admin.stoatinternal.com/panel/inspect/message/${props.message!.id}`,
+ "_blank",
+ );
+ }
+
+ /**
+ * Copy message link to clipboard
+ */
+ function copyLink() {
+ navigator.clipboard.writeText(
+ `${location.origin}${
+ props.message!.server ? `/server/${props.message!.server?.id}` : ""
+ }/channel/${props.message!.channelId}/${props.message!.id}`,
+ );
+ }
+
+ /**
+ * Copy message id to clipboard
+ */
+ function copyId() {
+ navigator.clipboard.writeText(props.message!.id);
+ }
+
+ /**
+ * Opens the file preview in a new tab
+ */
+ function OpenFile() {
+ window.open(props.file?.originalUrl, "_blank");
+ }
+
+ /**
+ * Copies the link to the original url of the file
+ */
+ function CopyLink() {
+ navigator.clipboard.writeText(props.file?.originalUrl ?? "");
+ }
+
+ return (
+
+
+
+ Open file
+
+
+ Copy link
+
+
+
+ Save file
+
+
+
+
+
+
+
+
+ Reply
+
+
+
+ Mark as unread
+
+
+ Copy text
+
+
+
+ state.draft.setEditingMessage(props.message!)}
+ >
+ Edit message
+
+
+
+ {
+ if (props.message!.pinned) {
+ props.message!.unpin().catch(showError);
+ } else {
+ props.message!.pin().catch(showError);
+ }
+ }}
+ >
+ Pin message}>
+
+ Unpin message
+
+
+
+
+
+ props.message!.clearReactions()}
+ destructive
+ buttonContent={Remove reaction }
+ >
+
+ {(key) => (
+ props.message!.unreact(key, true)}
+ >
+ }>
+
+
+
+
+
+ )}
+
+
+
+
+ props.message!.clearReactions()}
+ destructive
+ >
+ Remove all reactions
+
+
+
+
+ Delete message
+
+
+
+
+ Report message
+
+
+
+
+
+ Admin Panel
+
+
+
+ Copy link
+
+
+
+ Copy message ID
+
+
+
+
+ );
+}
diff --git a/components/app/menus/ServerContextMenu.tsx b/components/app/menus/ServerContextMenu.tsx
new file mode 100644
index 0000000..d1ba62e
--- /dev/null
+++ b/components/app/menus/ServerContextMenu.tsx
@@ -0,0 +1,331 @@
+import { For, Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import dayjs from "dayjs";
+import { Server } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { useModals } from "@revolt/modal";
+import { useState } from "@revolt/state";
+import { Column, Text, Time } from "@revolt/ui";
+
+import MdAlternateEmail from "@material-design-icons/svg/outlined/alternate_email.svg?component-solid";
+import MdBadge from "@material-design-icons/svg/outlined/badge.svg?component-solid";
+import MdFace from "@material-design-icons/svg/outlined/face.svg?component-solid";
+import MdLogout from "@material-design-icons/svg/outlined/logout.svg?component-solid";
+import MdMarkChatRead from "@material-design-icons/svg/outlined/mark_chat_read.svg?component-solid";
+import MdNotificationsActive from "@material-design-icons/svg/outlined/notifications_active.svg?component-solid";
+import MdNotificationsOff from "@material-design-icons/svg/outlined/notifications_off.svg?component-solid";
+import MdPersonAdd from "@material-design-icons/svg/outlined/person_add.svg?component-solid";
+import MdReport from "@material-design-icons/svg/outlined/report.svg?component-solid";
+import MdSettings from "@material-design-icons/svg/outlined/settings.svg?component-solid";
+import MdShield from "@material-design-icons/svg/outlined/shield.svg?component-solid";
+
+import MdDoNotDisturbOff from "@material-symbols/svg-400/outlined/do_not_disturb_off.svg?component-solid";
+import MdDoNotDisturbOn from "@material-symbols/svg-400/outlined/do_not_disturb_on.svg?component-solid";
+import MdNotificationSettings from "@material-symbols/svg-400/outlined/notification_settings.svg?component-solid";
+import MdRadioButtonChecked from "@material-symbols/svg-400/outlined/radio_button_checked-fill.svg?component-solid";
+import MdRadioButtonUnchecked from "@material-symbols/svg-400/outlined/radio_button_unchecked.svg?component-solid";
+
+import {
+ ContextMenu,
+ ContextMenuButton,
+ ContextMenuDivider,
+ ContextMenuSubMenu,
+} from "./ContextMenu";
+
+/**
+ * Context menu for servers
+ */
+export function ServerContextMenu(props: { server: Server }) {
+ const state = useState();
+ const client = useClient();
+ const { openModal } = useModals();
+
+ /**
+ * Mark server as read
+ */
+ function markAsRead() {
+ props.server.ack();
+ }
+
+ /**
+ * Create a new invite
+ */
+ function createInvite() {
+ // Find the first channel we can invite people to
+ const channel = props.server.orderedChannels
+ .find((category) =>
+ category.channels.find((channel) =>
+ channel.havePermission("InviteOthers"),
+ ),
+ )!
+ .channels.find((channel) => channel.havePermission("InviteOthers"))!;
+
+ openModal({
+ type: "create_invite",
+ channel,
+ });
+ }
+
+ /**
+ * Open server settings
+ */
+ function editIdentity() {
+ openModal({
+ type: "server_identity",
+ member: props.server.member!,
+ });
+ }
+
+ /**
+ * Open server settings
+ */
+ function openSettings() {
+ openModal({
+ type: "settings",
+ config: "server",
+ context: props.server,
+ });
+ }
+
+ /**
+ * Report the server
+ */
+ function report() {
+ openModal({
+ type: "report_content",
+ target: props.server,
+ client: client(),
+ });
+ }
+
+ /**
+ * Leave the server
+ */
+ function leave() {
+ openModal({
+ type: "leave_server",
+ server: props.server,
+ });
+ }
+
+ /**
+ * Open server in Stoat Admin Panel
+ */
+ function openAdminPanel() {
+ window.open(
+ `https://old-admin.stoatinternal.com/panel/inspect/server/${props.server.id}`,
+ "_blank",
+ );
+ }
+
+ /**
+ * Copy server id to clipboard
+ */
+ function copyId() {
+ navigator.clipboard.writeText(props.server.id);
+ }
+
+ /**
+ * Determine whether we can invite others to any channels
+ */
+ const permissionInviteOthers = () =>
+ props.server.channels.find((channel) =>
+ channel.havePermission("InviteOthers"),
+ );
+
+ /**
+ * Determine whether we can edit our identity
+ */
+ const permissionEditIdentity = () =>
+ props.server.havePermission("ChangeNickname") ||
+ props.server.havePermission("ChangeAvatar");
+
+ /**
+ * Determine whether we can access settings
+ */
+ const permissionServerSettings = () =>
+ props.server.owner?.self ||
+ props.server.havePermission("AssignRoles") ||
+ props.server.havePermission("BanMembers") ||
+ props.server.havePermission("KickMembers") ||
+ props.server.havePermission("ManageChannel") ||
+ props.server.havePermission("ManageCustomisation") ||
+ props.server.havePermission("ManageNicknames") ||
+ props.server.havePermission("ManagePermissions") ||
+ props.server.havePermission("ManageRole") ||
+ props.server.havePermission("ManageServer") ||
+ props.server.havePermission("ManageWebhooks");
+
+ return (
+
+
+
+ Mark as read
+
+
+
+
+
+ state.notifications.setServerMute(props.server, undefined)
+ }
+ symbol={MdDoNotDisturbOff}
+ _titleCase={false}
+ >
+
+ Unmute Server
+
+
+
+ Muted until{" "}
+
+
+
+
+
+
+ }
+ >
+ state.notifications.setServerMute(props.server, {})}
+ buttonContent={Mute Server }
+ symbol={MdDoNotDisturbOn}
+ >
+ For 15 minutes],
+ [60, For 1 hour ],
+ [180, For 3 hours ],
+ [480, For 8 hours ],
+ [1440, For 24 hours ],
+ [undefined, Until I turn it back on ],
+ ] as const
+ }
+ >
+ {([timeMin, i18n]) => (
+
+ state.notifications.setServerMute(props.server, {
+ until: timeMin
+ ? +dayjs().add(timeMin, "minutes")
+ : undefined,
+ })
+ }
+ _titleCase={false}
+ >
+ {i18n}
+
+ )}
+
+
+
+
+ Notifications}
+ >
+ state.notifications.setServer(props.server, "all")}
+ actionSymbol={
+ state.notifications.computeForServer(props.server) === "all"
+ ? MdRadioButtonChecked
+ : MdRadioButtonUnchecked
+ }
+ >
+ All Messages
+
+ state.notifications.setServer(props.server, "mention")}
+ actionSymbol={
+ state.notifications.computeForServer(props.server) === "mention"
+ ? MdRadioButtonChecked
+ : MdRadioButtonUnchecked
+ }
+ >
+ Mentions Only
+
+ state.notifications.setServer(props.server, "none")}
+ actionSymbol={
+ state.notifications.computeForServer(props.server) === "none"
+ ? MdRadioButtonChecked
+ : MdRadioButtonUnchecked
+ }
+ >
+ None
+
+
+
+
+
+
+ Create invite
+
+
+
+
+ Edit your identity
+
+
+
+
+ Open server settings
+
+
+
+
+
+
+
+ Report server
+
+
+
+ Leave server
+
+
+
+
+
+
+
+
+
+ Admin Panel
+
+
+
+
+ Copy server ID
+
+
+
+ );
+}
diff --git a/components/app/menus/ServerSidebarContextMenu.tsx b/components/app/menus/ServerSidebarContextMenu.tsx
new file mode 100644
index 0000000..ff0489a
--- /dev/null
+++ b/components/app/menus/ServerSidebarContextMenu.tsx
@@ -0,0 +1,50 @@
+import { Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { Server } from "stoat.js";
+
+import { useModals } from "@revolt/modal";
+
+import MdLibraryAdd from "@material-design-icons/svg/outlined/library_add.svg?component-solid";
+
+import { ContextMenu, ContextMenuButton } from "./ContextMenu";
+
+/**
+ * Context menu for server sidebar
+ */
+export function ServerSidebarContextMenu(props: { server: Server }) {
+ const { openModal } = useModals();
+
+ /**
+ * Create a new channel
+ */
+ function createChannel() {
+ openModal({
+ type: "create_channel",
+ server: props.server!,
+ });
+ }
+
+ /**
+ * Create a new category
+ */
+ function createCategory() {
+ openModal({
+ type: "create_category",
+ server: props.server!,
+ });
+ }
+
+ return (
+
+
+
+ Create channel
+
+
+ Create category
+
+
+
+ );
+}
diff --git a/components/app/menus/UserContextMenu.tsx b/components/app/menus/UserContextMenu.tsx
new file mode 100644
index 0000000..d67cdee
--- /dev/null
+++ b/components/app/menus/UserContextMenu.tsx
@@ -0,0 +1,449 @@
+import { JSX, Match, Show, Switch } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { useNavigate } from "@solidjs/router";
+import { Channel, Message, ServerMember, User } from "stoat.js";
+
+import { useClient } from "@revolt/client";
+import { useModals } from "@revolt/modal";
+import { useSmartParams } from "@revolt/routing";
+import { useState } from "@revolt/state";
+import { Slider, Text } from "@revolt/ui";
+
+import MdAddCircleOutline from "@material-design-icons/svg/outlined/add_circle_outline.svg?component-solid";
+import MdAdminPanelSettings from "@material-design-icons/svg/outlined/admin_panel_settings.svg?component-solid";
+import MdAlternateEmail from "@material-design-icons/svg/outlined/alternate_email.svg?component-solid";
+import MdAssignmentInd from "@material-design-icons/svg/outlined/assignment_ind.svg?component-solid";
+import MdBadge from "@material-design-icons/svg/outlined/badge.svg?component-solid";
+import MdBlock from "@material-design-icons/svg/outlined/block.svg?component-solid";
+import MdCancel from "@material-design-icons/svg/outlined/cancel.svg?component-solid";
+import MdChat from "@material-design-icons/svg/outlined/chat.svg?component-solid";
+import MdClose from "@material-design-icons/svg/outlined/close.svg?component-solid";
+import MdDoNotDisturbOn from "@material-design-icons/svg/outlined/do_not_disturb_on.svg?component-solid";
+import MdFace from "@material-design-icons/svg/outlined/face.svg?component-solid";
+import MdMicOff from "@material-design-icons/svg/outlined/mic_off.svg?component-solid";
+import MdPersonAddAlt from "@material-design-icons/svg/outlined/person_add_alt.svg?component-solid";
+import MdPersonRemove from "@material-design-icons/svg/outlined/person_remove.svg?component-solid";
+import MdReport from "@material-design-icons/svg/outlined/report.svg?component-solid";
+
+import MdChecked from "@material-symbols/svg-400/outlined/check_box.svg?component-solid";
+import MdUnchecked from "@material-symbols/svg-400/outlined/check_box_outline_blank.svg?component-solid";
+
+import {
+ ContextMenu,
+ ContextMenuButton,
+ ContextMenuDivider,
+} from "./ContextMenu";
+import { NotificationContextMenu } from "./shared/NotificationContextMenu";
+
+/**
+ * Context menu for users
+ */
+export function UserContextMenu(props: {
+ user: User;
+ channel?: Channel;
+ member?: ServerMember;
+ contextMessage?: Message;
+ inVoice?: boolean;
+}) {
+ // TODO: if we take serverId instead, we could dynamically fetch server member here
+ // same for the floating menu I guess?
+ const state = useState();
+ const client = useClient();
+ const navigate = useNavigate();
+ const { openModal } = useModals();
+
+ // server context
+ const params = useSmartParams();
+
+ /**
+ * Open direct message channel
+ */
+ function openDm() {
+ props.user.openDM().then((channel) => navigate(channel.url));
+ }
+
+ /**
+ * Delete channel
+ */
+ function closeDm() {
+ openModal({
+ type: "delete_channel",
+ channel: props.channel!,
+ });
+ }
+
+ /**
+ * Mention the user
+ */
+ function mention() {
+ if (!state.draft._setNodeReplacement) return;
+ state.draft._setNodeReplacement([props.user.toString()]);
+ }
+
+ /**
+ * Edit server identity for user
+ */
+ function editIdentity() {
+ openModal({
+ type: "server_identity",
+ member: props.member!,
+ });
+ }
+
+ /**
+ * Report the user
+ */
+ function reportUser() {
+ openModal({
+ type: "report_content",
+ target: props.user!,
+ client: client(),
+ contextMessage: props.contextMessage,
+ });
+ }
+
+ /**
+ * Edit this user's roles
+ */
+ function editRoles() {
+ openModal({
+ type: "user_profile_roles",
+ member: props.member!,
+ });
+ }
+
+ /**
+ * Kick the member
+ */
+ function kickMember() {
+ openModal({
+ type: "kick_member",
+ member: props.member!,
+ });
+ }
+
+ /**
+ * Ban the member
+ */
+ function banMember() {
+ openModal({
+ type: "ban_member",
+ member: props.member!,
+ });
+ }
+
+ /**
+ * Ban the user
+ */
+ function banUser() {
+ openModal({
+ type: "ban_non_member",
+ user: props.user!,
+ server: client().servers.get(params().serverId!)!,
+ });
+ }
+
+ /**
+ * Add friend
+ */
+ function addFriend() {
+ props.user.addFriend();
+ }
+
+ /**
+ * Remove friend
+ */
+ function removeFriend() {
+ props.user.removeFriend();
+ }
+
+ /**
+ * Block user
+ */
+ function blockUser() {
+ props.user.blockUser();
+ }
+
+ /**
+ * Unblock user
+ */
+ function unblockUser() {
+ props.user.unblockUser();
+ }
+
+ /**
+ * Open user in Stoat Admin Panel
+ */
+ function openAdminPanel() {
+ window.open(
+ `https://old-admin.stoatinternal.com/panel/inspect/user/${props.user.id}`,
+ "_blank",
+ );
+ }
+
+ /**
+ * Copy user id to clipboard
+ */
+ function copyId() {
+ navigator.clipboard.writeText(props.user.id);
+ }
+
+ return (
+
+ );
+}
+
+/**
+ * Provide floating user menus on this element
+ * @param user User
+ * @param member Server Member
+ */
+export function floatingUserMenus(
+ user: User,
+ member?: ServerMember,
+ contextMessage?: Message,
+): JSX.Directives["floating"] & object {
+ return {
+ userCard: {
+ user,
+ member,
+ // we could use message to display masquerade info in user card
+ },
+ /**
+ * Build user context menu
+ */
+ contextMenu() {
+ return (
+
+ );
+ },
+ };
+}
+
+export function floatingUserMenusFromMessage(message: Message) {
+ return message.author
+ ? floatingUserMenus(message.author!, message.member, message)
+ : {}; // TODO: webhook menu
+}
diff --git a/components/app/menus/index.tsx b/components/app/menus/index.tsx
new file mode 100644
index 0000000..5a08df1
--- /dev/null
+++ b/components/app/menus/index.tsx
@@ -0,0 +1,6 @@
+export { CategoryContextMenu } from "./CategoryContextMenu";
+export { ChannelContextMenu } from "./ChannelContextMenu";
+export { MessageContextMenu } from "./MessageContextMenu";
+export { ServerContextMenu } from "./ServerContextMenu";
+export { ServerSidebarContextMenu } from "./ServerSidebarContextMenu";
+export { UserContextMenu } from "./UserContextMenu";
diff --git a/components/app/menus/shared/NotificationContextMenu.tsx b/components/app/menus/shared/NotificationContextMenu.tsx
new file mode 100644
index 0000000..6481923
--- /dev/null
+++ b/components/app/menus/shared/NotificationContextMenu.tsx
@@ -0,0 +1,177 @@
+import { For, Match, Show, Switch } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import dayjs from "dayjs";
+import { Channel } from "stoat.js";
+
+import { useState } from "@revolt/state";
+import { Column, Text, Time } from "@revolt/ui";
+
+import MdAlternateEmail from "@material-design-icons/svg/outlined/alternate_email.svg?component-solid";
+import MdNotificationsActive from "@material-design-icons/svg/outlined/notifications_active.svg?component-solid";
+import MdNotificationsOff from "@material-design-icons/svg/outlined/notifications_off.svg?component-solid";
+
+import MdDoNotDisturbOff from "@material-symbols/svg-400/outlined/do_not_disturb_off.svg?component-solid";
+import MdDoNotDisturbOn from "@material-symbols/svg-400/outlined/do_not_disturb_on.svg?component-solid";
+import MdNotificationSettings from "@material-symbols/svg-400/outlined/notification_settings.svg?component-solid";
+import MdRadioButtonChecked from "@material-symbols/svg-400/outlined/radio_button_checked-fill.svg?component-solid";
+import MdRadioButtonUnchecked from "@material-symbols/svg-400/outlined/radio_button_unchecked.svg?component-solid";
+
+import { ContextMenuButton, ContextMenuSubMenu } from "../ContextMenu";
+
+export function NotificationContextMenu(props: { channel: Channel }) {
+ const state = useState();
+
+ return (
+ <>
+
+ state.notifications.setChannelMute(props.channel, undefined)
+ }
+ symbol={MdDoNotDisturbOff}
+ _titleCase={false}
+ >
+
+ Unmute Channel
+
+
+
+ Muted until{" "}
+
+
+
+
+
+
+ }
+ >
+ state.notifications.setChannelMute(props.channel, {})}
+ buttonContent={Mute Channel }
+ symbol={MdDoNotDisturbOn}
+ >
+ For 15 minutes],
+ [60, For 1 hour ],
+ [180, For 3 hours ],
+ [480, For 8 hours ],
+ [1440, For 24 hours ],
+ [undefined, Until I turn it back on ],
+ ] as const
+ }
+ >
+ {([timeMin, i18n]) => (
+
+ state.notifications.setChannelMute(props.channel, {
+ until: timeMin
+ ? +dayjs().add(timeMin, "minutes")
+ : undefined,
+ })
+ }
+ _titleCase={false}
+ >
+ {i18n}
+
+ )}
+
+
+
+
+
Notifications}
+ >
+
+ state.notifications.setChannel(props.channel, undefined)
+ }
+ actionSymbol={
+ typeof state.notifications.getChannel(props.channel) === "undefined"
+ ? MdRadioButtonChecked
+ : MdRadioButtonUnchecked
+ }
+ >
+
+ Default}>
+ Server Default
+
+
+ None}>
+
+ All Messages
+
+
+ Mentions Only
+
+
+
+
+
+
+ state.notifications.setChannel(props.channel, "all")}
+ actionSymbol={
+ state.notifications.getChannel(props.channel) === "all"
+ ? MdRadioButtonChecked
+ : MdRadioButtonUnchecked
+ }
+ >
+ All Messages
+
+
+ state.notifications.setChannel(props.channel, "mention")
+ }
+ actionSymbol={
+ state.notifications.getChannel(props.channel) === "mention"
+ ? MdRadioButtonChecked
+ : MdRadioButtonUnchecked
+ }
+ >
+ Mentions Only
+
+ state.notifications.setChannel(props.channel, "none")}
+ actionSymbol={
+ state.notifications.getChannel(props.channel) === "none"
+ ? MdRadioButtonChecked
+ : MdRadioButtonUnchecked
+ }
+ >
+ None
+
+
+ >
+ );
+}
diff --git a/components/auth/index.tsx b/components/auth/index.tsx
new file mode 100644
index 0000000..50b658b
--- /dev/null
+++ b/components/auth/index.tsx
@@ -0,0 +1 @@
+export { AuthPage } from "./src/AuthPage";
diff --git a/components/auth/src/AuthPage.tsx b/components/auth/src/AuthPage.tsx
new file mode 100644
index 0000000..9c08a8f
--- /dev/null
+++ b/components/auth/src/AuthPage.tsx
@@ -0,0 +1,188 @@
+import { BiLogosGithub } from "solid-icons/bi";
+import { JSX } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { styled } from "styled-system/jsx";
+
+import { Titlebar } from "@revolt/app/interface/desktop/Titlebar";
+import { useState } from "@revolt/state";
+import { IconButton, iconSize } from "@revolt/ui";
+
+import MdDarkMode from "@material-design-icons/svg/filled/dark_mode.svg?component-solid";
+
+import background from "./background.jpg";
+import { FlowBase } from "./flows/Flow";
+import bluesky from "./flows/bluesky.svg";
+
+/**
+ * Authentication page layout
+ */
+const Base = styled("div", {
+ base: {
+ width: "100%",
+ height: "100%",
+ padding: "40px 35px",
+
+ userSelect: "none",
+ overflowY: "scroll",
+
+ color: "var(--md-sys-color-on-surface)",
+ background: "var(--md-sys-color-surface)",
+ // background: `var(--url)`,
+ // backgroundPosition: "center",
+ // backgroundRepeat: "no-repeat",
+ // backgroundSize: "cover",
+
+ display: "flex",
+ flexDirection: "column",
+ justifyContent: "space-between",
+
+ mdDown: {
+ padding: "30px 20px",
+ },
+ },
+});
+
+/**
+ * Top and bottom navigation bars
+ */
+const Nav = styled("div", {
+ base: {
+ height: "32px",
+ display: "flex",
+ alignItems: "center",
+ flexDirection: "row",
+ justifyContent: "space-between",
+
+ textDecoration: "none",
+ },
+});
+
+/**
+ * Navigation items
+ */
+const NavItems = styled("div", {
+ base: {
+ gap: "10px",
+ display: "flex",
+ alignItems: "center",
+
+ fontSize: "0.9em",
+ },
+ variants: {
+ variant: {
+ default: {},
+ stack: {
+ md: {
+ flexDirection: "column",
+ },
+ },
+ hide: {
+ md: {
+ display: "none",
+ },
+ },
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ },
+});
+
+/**
+ * Link with an icon inside
+ */
+const LinkWithIcon = styled("a", {
+ base: { height: "24px" },
+});
+
+/**
+ * Middot-like bullet
+ */
+const Bullet = styled("div", {
+ base: {
+ height: "5px",
+ width: "5px",
+ background: "grey",
+ borderRadius: "50%",
+
+ md: {
+ display: "none",
+ },
+ },
+});
+
+/**
+ * Authentication page
+ */
+export function AuthPage(props: { children: JSX.Element }) {
+ const state = useState();
+
+ return (
+
+ );
+}
diff --git a/components/auth/src/background.jpg b/components/auth/src/background.jpg
new file mode 100644
index 0000000..c3a5036
Binary files /dev/null and b/components/auth/src/background.jpg differ
diff --git a/components/auth/src/flows/Flow.tsx b/components/auth/src/flows/Flow.tsx
new file mode 100644
index 0000000..705237c
--- /dev/null
+++ b/components/auth/src/flows/Flow.tsx
@@ -0,0 +1,120 @@
+import { JSX, Show } from "solid-js";
+
+import { defineKeyframes } from "@pandacss/dev";
+import { styled } from "styled-system/jsx";
+
+import { Column, Row, Text } from "@revolt/ui";
+
+import envelope from "./envelope.svg";
+import wave from "./wave.svg";
+
+/**
+ * Container for authentication page flows
+ */
+export const FlowBase = styled("div", {
+ base: {
+ display: "flex",
+ flexDirection: "column",
+ gap: "var(--gap-lg)",
+ flexGrow: 0,
+ background: "var(--md-sys-color-surface-container)",
+ color: "var(--md-sys-color-on-surface)",
+ width: "360px",
+ maxWidth: "360px",
+ maxHeight: "600px",
+ padding: "45px 40px",
+ borderRadius: "32px",
+ marginTop: "20px",
+ marginBottom: "20px",
+ justifySelf: "center",
+ marginInline: "auto",
+ },
+});
+
+/**
+ * Wave animation
+ * TODO: I don't think this is how you use it
+ */
+const WaveAnimation = defineKeyframes({
+ fadeIn: {
+ "0%": { transform: "rotate(0)" },
+ "10%": { transform: "rotate(14deg)" },
+ "20%": { transform: "rotate(-8deg)" },
+ "30%": { transform: "rotate(14deg)" },
+ "40%": { transform: "rotate(-4deg)" },
+ "50%": { transform: "rotate(10deg)" },
+ "60%": { transform: "rotate(0)" },
+ "100%": { transform: "rotate(0)" },
+ },
+});
+
+/**
+ * Envelope animation
+ * TODO: I don't think this is how you use it
+ */
+const EnvelopeAnimation = defineKeyframes({
+ fadeIn: {
+ "0%": {
+ opacity: 0,
+ transform: "translateY(-24px)",
+ },
+ "100%": {
+ opacity: 1,
+ transform: "translateY(-4px)",
+ },
+ },
+});
+
+/**
+ * Wave emoji
+ */
+const Wave = styled("img", {
+ base: {
+ height: "1.8em",
+ animationDuration: "2.5s",
+ animationIterationCount: 1,
+ animationName: WaveAnimation,
+ },
+});
+
+/**
+ * Mail emoji
+ */
+const Mail = styled("img", {
+ base: {
+ height: "1.8em",
+ transform: "translateY(-4px)",
+ animationDuration: "0.5s",
+ animationIterationCount: 1,
+ animationTimingFunction: "ease",
+ animationName: EnvelopeAnimation,
+ },
+});
+
+/**
+ * Common flow title component
+ */
+export function FlowTitle(props: {
+ children: JSX.Element;
+ subtitle?: JSX.Element;
+ emoji?: "wave" | "mail";
+}) {
+ return (
+
+
+
+
+
+
+
+
+
+ {props.children}
+
+
+
+ {props.subtitle}
+
+
+ );
+}
diff --git a/components/auth/src/flows/FlowCheck.tsx b/components/auth/src/flows/FlowCheck.tsx
new file mode 100644
index 0000000..ec81925
--- /dev/null
+++ b/components/auth/src/flows/FlowCheck.tsx
@@ -0,0 +1,73 @@
+import { Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useNavigate } from "@revolt/routing";
+import { Button, Row, iconSize } from "@revolt/ui";
+
+import MdArrowBack from "@material-design-icons/svg/filled/arrow_back.svg?component-solid";
+
+import { FlowTitle } from "./Flow";
+import { MailProvider } from "./MailProvider";
+
+/**
+ * Keep track of email within the same session
+ */
+let email = "postmaster@revolt.wtf";
+
+/**
+ * Persist email information temporarily
+ */
+export function setFlowCheckEmail(e: string) {
+ email = e;
+}
+
+/**
+ * Flow to tell the user to check their email
+ */
+export default function FlowCheck() {
+ const navigate = useNavigate();
+
+ return (
+ <>
+
+ We've sent you a verification email. Please allow up to 10 minutes
+ for it to arrive.
+
+ }
+ emoji="mail"
+ >
+ Check your mail!
+
+
+
+
+ Back
+
+
+
+
+
+
+ {import.meta.env.DEV && (
+
{
+ navigate("/login/verify/abc", { replace: true });
+ }}
+ >
+ Mock Verify
+
+ )}
+ >
+ );
+}
diff --git a/components/auth/src/flows/FlowConfirmReset.tsx b/components/auth/src/flows/FlowConfirmReset.tsx
new file mode 100644
index 0000000..0239298
--- /dev/null
+++ b/components/auth/src/flows/FlowConfirmReset.tsx
@@ -0,0 +1,53 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useApi } from "@revolt/client";
+import { useNavigate, useParams } from "@revolt/routing";
+import { Button } from "@revolt/ui";
+
+import { FlowTitle } from "./Flow";
+import { Fields, Form } from "./Form";
+
+/**
+ * Flow for confirming a new password
+ */
+export default function FlowConfirmReset() {
+ const api = useApi();
+ const { token } = useParams();
+ const navigate = useNavigate();
+
+ /**
+ * Confirm new password
+ * @param data Form Data
+ */
+ async function reset(data: FormData) {
+ const password = data.get("new-password") as string;
+ const remove_sessions = !!(data.get("log-out") as "on" | undefined);
+
+ await api.patch("/auth/account/reset_password", {
+ password,
+ token,
+ remove_sessions,
+ });
+
+ navigate("/login/auth", { replace: true });
+ }
+
+ return (
+ <>
+
+ Reset password
+
+
+
+
+ Go back to login
+
+
+ >
+ );
+}
diff --git a/components/auth/src/flows/FlowCreate.tsx b/components/auth/src/flows/FlowCreate.tsx
new file mode 100644
index 0000000..7e9fc4a
--- /dev/null
+++ b/components/auth/src/flows/FlowCreate.tsx
@@ -0,0 +1,84 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { CONFIGURATION } from "@revolt/common";
+import { useNavigate } from "@revolt/routing";
+import { Button, Row, iconSize } from "@revolt/ui";
+
+import MdArrowBack from "@material-design-icons/svg/filled/arrow_back.svg?component-solid";
+
+import { useApi } from "../../../client";
+
+import { FlowTitle } from "./Flow";
+import { setFlowCheckEmail } from "./FlowCheck";
+import { Fields, Form } from "./Form";
+
+/**
+ * Flow for creating a new account
+ */
+export default function FlowCreate() {
+ const api = useApi();
+ const navigate = useNavigate();
+
+ /**
+ * Create an account
+ * @param data Form Data
+ */
+ async function create(data: FormData) {
+ const email = data.get("email") as string;
+ const password = data.get("password") as string;
+ const captcha = data.get("captcha") as string;
+
+ await api.post("/auth/account/create", {
+ email,
+ password,
+ captcha,
+ });
+
+ // FIXME: should tell client if email was sent
+ // or if email even needs to be confirmed
+
+ // TODO: log straight in if no email confirmation?
+
+ setFlowCheckEmail(email);
+ navigate("/login/check", { replace: true });
+ }
+
+ return (
+ <>
+
Create an account} emoji="wave">
+ Hello!
+
+
+ {import.meta.env.DEV && (
+
{
+ setFlowCheckEmail("insert@stoat.chat");
+ navigate("/login/check", { replace: true });
+ }}
+ >
+ Mock Submission
+
+ )}
+ >
+ );
+}
diff --git a/components/auth/src/flows/FlowDelete.tsx b/components/auth/src/flows/FlowDelete.tsx
new file mode 100644
index 0000000..8c577ce
--- /dev/null
+++ b/components/auth/src/flows/FlowDelete.tsx
@@ -0,0 +1,40 @@
+import { Match, Switch, createSignal, onMount } from "solid-js";
+
+import { useApi } from "@revolt/client";
+import { useParams } from "@revolt/routing";
+
+import { FlowTitle } from "./Flow";
+
+/**
+ * Temporary flow for account deletion
+ */
+export default function FlowDeleteAccount() {
+ const api = useApi();
+ const params = useParams();
+ const [deleted, setDeleted] = createSignal
(false);
+
+ onMount(() => {
+ api
+ .put("/auth/account/delete", {
+ token: params.token,
+ })
+ .then(() => setDeleted(true))
+ .catch(() => setDeleted("error"));
+ });
+
+ return (
+ <>
+ Delete Account
+
+
+
+ Error occurred, please email support.
+
+
+ Account has been queued for deletion!
+
+
+
+ >
+ );
+}
diff --git a/components/auth/src/flows/FlowHome.tsx b/components/auth/src/flows/FlowHome.tsx
new file mode 100644
index 0000000..b71ce5e
--- /dev/null
+++ b/components/auth/src/flows/FlowHome.tsx
@@ -0,0 +1,109 @@
+import { Match, Show, Switch } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+import { css } from "styled-system/css";
+
+import { useClientLifecycle } from "@revolt/client";
+import { TransitionType } from "@revolt/client/Controller";
+import { Navigate } from "@revolt/routing";
+import { Button, Column } from "@revolt/ui";
+
+import { useState } from "@revolt/state";
+import Wordmark from "../../../../public/assets/web/wordmark.svg?component-solid";
+
+/**
+ * Flow for logging into an account
+ */
+export default function FlowHome() {
+ const state = useState();
+ const { lifecycle, isLoggedIn, isError } = useClientLifecycle();
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ Find your com
+
+ munity,
+
+ connect with the world.
+
+
+
+
+
+ Stoat is one of the best ways to stay connected with your
+ friends and community, anywhere, anytime.
+
+
+
+
+
+
+
+
+ Log In
+
+
+
+
+
+
+ Sign Up
+
+
+
+
+
+ >
+ }
+ >
+
+
+
+
+ You were logged out!
+
+
+
+
+
+ lifecycle.transition({
+ type: TransitionType.Dismiss,
+ })
+ }
+ >
+ OK
+
+
+
+ );
+}
diff --git a/components/auth/src/flows/FlowLogin.tsx b/components/auth/src/flows/FlowLogin.tsx
new file mode 100644
index 0000000..73dc86e
--- /dev/null
+++ b/components/auth/src/flows/FlowLogin.tsx
@@ -0,0 +1,134 @@
+import { Match, Switch } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useClientLifecycle } from "@revolt/client";
+import { State, TransitionType } from "@revolt/client/Controller";
+import { useModals } from "@revolt/modal";
+import { Navigate } from "@revolt/routing";
+import {
+ Button,
+ CircularProgress,
+ Column,
+ Row,
+ Text,
+ iconSize,
+} from "@revolt/ui";
+
+import MdArrowBack from "@material-design-icons/svg/filled/arrow_back.svg?component-solid";
+
+import { useState } from "@revolt/state";
+import { FlowTitle } from "./Flow";
+import { Fields, Form } from "./Form";
+
+/**
+ * Flow for logging into an account
+ */
+export default function FlowLogin() {
+ const state = useState();
+ const modals = useModals();
+ const { lifecycle, isLoggedIn, login, selectUsername } = useClientLifecycle();
+
+ /**
+ * Log into account
+ * @param data Form Data
+ */
+ async function performLogin(data: FormData) {
+ const email = data.get("email") as string;
+ const password = data.get("password") as string;
+
+ await login(
+ {
+ email,
+ password,
+ },
+ modals,
+ );
+ }
+
+ /**
+ * Select a new username
+ * @param data Form Data
+ */
+ async function select(data: FormData) {
+ const username = data.get("username") as string;
+ await selectUsername(username);
+ }
+
+ return (
+ <>
+
+ Sign into Stoat} emoji="wave">
+ Welcome!
+
+
+ >
+ }
+ >
+
+
+
+
+
+
+
+
+ Choose a username
+
+
+
+
+ Pick a username that you want people to be able to find you by.
+ This can be changed later in your user settings.
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/auth/src/flows/FlowResend.tsx b/components/auth/src/flows/FlowResend.tsx
new file mode 100644
index 0000000..6c826cd
--- /dev/null
+++ b/components/auth/src/flows/FlowResend.tsx
@@ -0,0 +1,54 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useApi } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import { useNavigate } from "@revolt/routing";
+import { Button } from "@revolt/ui";
+
+import { FlowTitle } from "./Flow";
+import { setFlowCheckEmail } from "./FlowCheck";
+import { Fields, Form } from "./Form";
+
+/**
+ * Flow for resending email verification
+ */
+export default function FlowResend() {
+ const api = useApi();
+ const navigate = useNavigate();
+
+ /**
+ * Resend email verification
+ * @param data Form Data
+ */
+ async function resend(data: FormData) {
+ const email = data.get("email") as string;
+ const captcha = data.get("captcha") as string;
+
+ await api.post("/auth/account/reverify", {
+ email,
+ captcha,
+ });
+
+ setFlowCheckEmail(email);
+ navigate("/login/check", { replace: true });
+ }
+
+ return (
+ <>
+
+ Resend verification
+
+
+
+
+ Go back to login
+
+
+ >
+ );
+}
diff --git a/components/auth/src/flows/FlowReset.tsx b/components/auth/src/flows/FlowReset.tsx
new file mode 100644
index 0000000..f695e8b
--- /dev/null
+++ b/components/auth/src/flows/FlowReset.tsx
@@ -0,0 +1,71 @@
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useApi } from "@revolt/client";
+import { CONFIGURATION } from "@revolt/common";
+import { useNavigate } from "@revolt/routing";
+import { Button } from "@revolt/ui";
+
+import { FlowTitle } from "./Flow";
+import { setFlowCheckEmail } from "./FlowCheck";
+import { Fields, Form } from "./Form";
+
+/**
+ * Flow for sending password reset
+ */
+export default function FlowReset() {
+ const api = useApi();
+ const navigate = useNavigate();
+
+ /**
+ * Send password reset
+ * @param data Form Data
+ */
+ async function reset(data: FormData) {
+ const email = data.get("email") as string;
+ const captcha = data.get("captcha") as string;
+
+ await api.post("/auth/account/reset_password", {
+ email,
+ captcha,
+ });
+
+ setFlowCheckEmail(email);
+ navigate("/login/check", { replace: true });
+ }
+
+ return (
+ <>
+
+ Reset password
+
+
+
+
+ Go back to login
+
+
+ {import.meta.env.DEV && (
+ {
+ navigate("/login/reset/abc", { replace: true });
+ }}
+ >
+ Mock Reset Screen
+
+ )}
+ >
+ );
+}
diff --git a/components/auth/src/flows/FlowVerify.tsx b/components/auth/src/flows/FlowVerify.tsx
new file mode 100644
index 0000000..9246fe1
--- /dev/null
+++ b/components/auth/src/flows/FlowVerify.tsx
@@ -0,0 +1,122 @@
+import { Match, Show, Switch, createSignal, onMount } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { useApi, useClientLifecycle } from "@revolt/client";
+import { useModals } from "@revolt/modal";
+import { useNavigate, useParams } from "@revolt/routing";
+import { Button, CircularProgress } from "@revolt/ui";
+
+import { FlowTitle } from "./Flow";
+
+type State =
+ | {
+ state: "verifying";
+ }
+ | {
+ state: "error";
+ error: unknown;
+ }
+ | {
+ state: "success";
+ mfa_ticket?: string;
+ };
+
+/**
+ * Flow for confirming email
+ */
+export default function FlowVerify() {
+ const api = useApi();
+ const params = useParams();
+ const modals = useModals();
+ const navigate = useNavigate();
+ const { login } = useClientLifecycle();
+
+ const [state, setState] = createSignal({
+ state: "verifying",
+ });
+
+ onMount(async () => {
+ try {
+ if (import.meta.env.DEV) {
+ if (confirm("Mock verification?")) {
+ if (confirm("Successful verification?")) {
+ setState({ state: "success", mfa_ticket: "token" });
+ } else {
+ setState({ state: "error", error: "InvalidToken" });
+ }
+
+ return;
+ }
+ }
+
+ const data = (await api.post(`/auth/account/verify/${params.token}`)) as {
+ ticket?: { token: string };
+ };
+
+ setState({ state: "success", mfa_ticket: data.ticket?.token });
+ } catch (err) {
+ setState({ state: "error", error: err });
+ }
+ });
+
+ /**
+ * Use MFA ticket to login
+ */
+ async function performLogin() {
+ const v = state();
+ if (v.state === "success" && v.mfa_ticket) {
+ await login(
+ {
+ mfa_ticket: v.mfa_ticket,
+ },
+ modals,
+ );
+
+ navigate("/login/auth", { replace: true });
+ }
+ }
+
+ return (
+
+
+
+ Verifying your account…
+
+
+
+
+
+ Failed to verify!
+
+ {/*
+ {t(
+ `error.${(state() as State & { state: "error" }).error}` as any,
+ undefined,
+ (state() as State & { state: "error" }).error
+ )}
+ TODO */}
+
+
+ Go back to login
+
+
+
+
+
+ Your account has been verified!
+
+
+
+ Continue to app
+
+
+
+
+ Go back to login
+
+
+
+
+ );
+}
diff --git a/components/auth/src/flows/Form.tsx b/components/auth/src/flows/Form.tsx
new file mode 100644
index 0000000..e36d9b0
--- /dev/null
+++ b/components/auth/src/flows/Form.tsx
@@ -0,0 +1,155 @@
+import HCaptcha, { HCaptchaFunctions } from "solid-hcaptcha";
+import { For, JSX, Show, createSignal } from "solid-js";
+
+import { useLingui } from "@lingui-solid/solid/macro";
+
+import { useError } from "@revolt/i18n";
+import { Checkbox2, Column, Text, TextField } from "@revolt/ui";
+
+/**
+ * Available field types
+ */
+type Field = "email" | "password" | "new-password" | "log-out" | "username";
+
+/**
+ * Properties to apply to fields
+ */
+const useFieldConfiguration = () => {
+ const { t } = useLingui();
+
+ return {
+ email: {
+ type: "email" as const,
+ name: () => t`Email`,
+ placeholder: () => t`Please enter your email.`,
+ autocomplete: "email",
+ },
+ password: {
+ minLength: 8,
+ type: "password" as const,
+ name: () => t`Password`,
+ placeholder: () => t`Enter your current password.`,
+ },
+ "new-password": {
+ minLength: 8,
+ type: "password" as const,
+ autocomplete: "new-password",
+ name: () => t`New Password`,
+ placeholder: () => t`Enter a new password.`,
+ },
+ "log-out": {
+ name: () => t`Log out of all other sessions`,
+ },
+ username: {
+ minLength: 2,
+ type: "text" as const,
+ autocomplete: "none",
+ name: () => t`Username`,
+ placeholder: () => t`Enter your preferred username.`,
+ },
+ };
+};
+
+interface FieldProps {
+ /**
+ * Fields to gather
+ */
+ fields: Field[];
+}
+
+/**
+ * Render a bunch of fields with preset values
+ */
+export function Fields(props: FieldProps) {
+ const fieldConfiguration = useFieldConfiguration();
+
+ return (
+
+ {(field) => (
+
+ {field === "log-out" ? (
+
+ {fieldConfiguration["log-out"].name()}
+
+ ) : (
+
+ )}
+
+ )}
+
+ );
+}
+
+interface Props {
+ /**
+ * Form children
+ */
+ children: JSX.Element;
+
+ /**
+ * Whether to include captcha token
+ */
+ captcha?: string;
+
+ /**
+ * Submission handler
+ */
+ onSubmit: (data: FormData) => Promise | void;
+}
+
+/**
+ * Small wrapper for HTML form
+ */
+export function Form(props: Props) {
+ const [error, setError] = createSignal();
+ const err = useError();
+ let hcaptcha: HCaptchaFunctions | undefined;
+
+ /**
+ * Handle submission
+ * @param event Form Event
+ */
+ async function onSubmit(event: Event) {
+ event.preventDefault();
+
+ const formData = new FormData(event.currentTarget as HTMLFormElement);
+
+ if (props.captcha) {
+ if (!hcaptcha) return alert("hCaptcha not loaded!");
+ const response = await hcaptcha.execute();
+ formData.set("captcha", response!.response);
+ }
+
+ try {
+ await props.onSubmit(formData);
+ } catch (err) {
+ setError(err);
+ }
+ }
+
+ return (
+
+ );
+}
diff --git a/components/auth/src/flows/MailProvider.tsx b/components/auth/src/flows/MailProvider.tsx
new file mode 100644
index 0000000..f9d3ec9
--- /dev/null
+++ b/components/auth/src/flows/MailProvider.tsx
@@ -0,0 +1,133 @@
+import { Show } from "solid-js";
+
+import { Trans } from "@lingui-solid/solid/macro";
+
+import { Button } from "@revolt/ui";
+
+interface Props {
+ email?: string;
+}
+
+/**
+ * Convert email to provider
+ * @param email Email
+ * @returns Provider
+ */
+function mapMailProvider(email?: string): [string, string] | undefined {
+ if (!email) return;
+
+ const match = /@(.+)/.exec(email);
+ if (match === null) return;
+
+ const domain = match[1];
+ switch (domain) {
+ case "gmail.com":
+ case "googlemail.com":
+ return ["Gmail", "https://gmail.com"];
+ case "tuta.io":
+ return ["Tutanota", "https://mail.tutanota.com"];
+ case "outlook.com":
+ case "hotmail.com":
+ case "outlook.jp":
+ case "outlook.fr":
+ case "outlook.dk":
+ case "outlook.com.ar":
+ case "outlook.com.au":
+ case "outlook.at":
+ case "outlook.be":
+ case "outlook.com.br":
+ case "outlook.cl":
+ case "outlook.cz":
+ case "outlook.com.gr":
+ case "outlook.co.il":
+ case "outlook.in":
+ case "outlook.co.id":
+ case "outlook.ie":
+ case "outlook.it":
+ case "outlook.hu":
+ case "outlook.kr":
+ case "outlook.lv":
+ case "outlook.my":
+ case "outlook.co.nz":
+ case "outlook.com.pe":
+ case "outlook.ph":
+ case "outlook.pt":
+ case "outlook.sa":
+ case "outlook.sg":
+ case "outlook.sk":
+ case "outlook.es":
+ case "outlook.co.th":
+ case "outlook.com.tr":
+ case "outlook.com.vn":
+ return ["Outlook", "https://outlook.live.com"];
+ case "yahoo.com":
+ return ["Yahoo", "https://mail.yahoo.com"];
+ case "wp.pl":
+ return ["WP Poczta", "https://poczta.wp.pl"];
+ case "protonmail.com":
+ case "protonmail.ch":
+ case "pm.me":
+ return ["ProtonMail", "https://mail.protonmail.com"];
+ case "seznam.cz":
+ case "email.cz":
+ case "post.cz":
+ return ["Seznam", "https://email.seznam.cz"];
+ case "zoho.com":
+ return ["Zoho Mail", "https://mail.zoho.com/zm/"];
+ case "aol.com":
+ case "aim.com":
+ return ["AOL Mail", "https://mail.aol.com/"];
+ case "icloud.com":
+ return ["iCloud Mail", "https://mail.icloud.com/"];
+ case "mail.com":
+ case "email.com":
+ return ["mail.com", "https://www.mail.com/mail/"];
+ case "yandex.ru":
+ case "yandex.by":
+ case "yandex.ua":
+ case "yandex.com":
+ return ["Yandex Mail", "https://mail.yandex.com/"];
+ case "hey.com":
+ return ["HEY", "https://app.hey.com/"];
+ case "mail.ru":
+ case "bk.ru":
+ case "inbox.ru":
+ case "list.ru":
+ case "internet.ru":
+ return ["Mail.ru", "https://mail.ru/"];
+ case "rambler.ru":
+ case "lenta.ru":
+ case "autorambler.ru":
+ case "myrambler.ru":
+ case "ro.ru":
+ case "rambler.ua":
+ return ["Rambler", "https://rambler.ru/"];
+ case "revolt.chat":
+ case "revolt.wtf":
+ case "stoat.chat":
+ return ["Stoat Mail", "https://webmail.revolt.wtf"];
+ default:
+ return [domain, `https://${domain}`];
+ }
+}
+
+/**
+ * Provide button to navigate to email provider
+ */
+export function MailProvider(props: Props) {
+ /**
+ * Convert email to provider
+ * @returns Provider
+ */
+ const provider = () => mapMailProvider(props.email);
+
+ return (
+
+
+
+ Open {provider()![0]}
+
+
+
+ );
+}
diff --git a/components/auth/src/flows/bluesky.svg b/components/auth/src/flows/bluesky.svg
new file mode 100644
index 0000000..c71e201
--- /dev/null
+++ b/components/auth/src/flows/bluesky.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/components/auth/src/flows/envelope.svg b/components/auth/src/flows/envelope.svg
new file mode 100644
index 0000000..8f46266
--- /dev/null
+++ b/components/auth/src/flows/envelope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/components/auth/src/flows/wave.svg b/components/auth/src/flows/wave.svg
new file mode 100644
index 0000000..89f51bb
--- /dev/null
+++ b/components/auth/src/flows/wave.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+ Mutant Standard emoji 2020.04
+
+
+
+
+ Dzuk
+ http://mutant.tech/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/components/client/Controller.ts b/components/client/Controller.ts
new file mode 100644
index 0000000..7180ba0
--- /dev/null
+++ b/components/client/Controller.ts
@@ -0,0 +1,600 @@
+import { Accessor, Setter, createSignal } from "solid-js";
+
+import { detect } from "detect-browser";
+import { API, Client, ConnectionState } from "stoat.js";
+import { ProtocolV1 } from "stoat.js/lib/events/v1";
+
+import { CONFIGURATION } from "@revolt/common";
+import { ModalControllerExtended } from "@revolt/modal";
+import type { State as ApplicationState } from "@revolt/state";
+import type { Session } from "@revolt/state/stores/Auth";
+
+export enum State {
+ Ready = "Ready",
+ LoggingIn = "Logging In",
+ Onboarding = "Onboarding",
+ Error = "Error",
+ Dispose = "Dispose",
+ Connecting = "Connecting",
+ Connected = "Connected",
+ Disconnected = "Disconnected",
+ Reconnecting = "Reconnecting",
+ Offline = "Offline",
+}
+
+export enum TransitionType {
+ LoginUncached = "uncached login",
+ LoginCached = "cached login",
+ SocketConnected = "socket connected",
+ DeviceOffline = "device offline",
+ DeviceOnline = "device online",
+ PermanentFailure = "permanent failure",
+ TemporaryFailure = "temporary failure",
+ UserCreated = "user created",
+ NoUser = "no user",
+ Cancel = "cancel",
+ Dispose = "dispose",
+ DisposeOnly = "dispose only",
+ Dismiss = "dismiss",
+ Ready = "ready",
+ Retry = "retry",
+ Logout = "logout",
+}
+
+export type Transition =
+ | {
+ type: TransitionType.LoginUncached | TransitionType.LoginCached;
+ session: Session;
+ }
+ | {
+ type: TransitionType.PermanentFailure;
+ error: string;
+ }
+ | {
+ type:
+ | TransitionType.NoUser
+ | TransitionType.UserCreated
+ | TransitionType.TemporaryFailure
+ | TransitionType.SocketConnected
+ | TransitionType.DeviceOffline
+ | TransitionType.DeviceOnline
+ | TransitionType.Cancel
+ | TransitionType.Dismiss
+ | TransitionType.Ready
+ | TransitionType.Retry
+ | TransitionType.Dispose
+ | TransitionType.DisposeOnly
+ | TransitionType.Logout;
+ };
+
+type PolicyAttentionRequired = [
+ ProtocolV1["types"]["policyChange"][],
+ () => Promise,
+];
+
+class Lifecycle {
+ #controller: ClientController;
+
+ readonly state: Accessor;
+ #setStateSetter: Setter;
+
+ readonly loadedOnce: Accessor;
+ #setLoadedOnce: Setter;
+
+ readonly policyAttentionRequired: Accessor<
+ undefined | PolicyAttentionRequired
+ >;
+ #policyAttentionRequired: Setter;
+
+ client: Client;
+
+ #connectionFailures = 0;
+ #permanentError: string | undefined;
+ #retryTimeout: number | undefined;
+
+ constructor(controller: ClientController) {
+ this.#controller = controller;
+
+ this.onState = this.onState.bind(this);
+ this.onReady = this.onReady.bind(this);
+ this.onPolicyChanges = this.onPolicyChanges.bind(this);
+
+ const [state, setState] = createSignal(State.Ready);
+ this.state = state;
+ this.#setStateSetter = setState;
+
+ const [loadedOnce, setLoadedOnce] = createSignal(false);
+ this.loadedOnce = loadedOnce;
+ this.#setLoadedOnce = setLoadedOnce;
+
+ const [policyAttentionRequired, setPolicyAttentionRequired] = createSignal<
+ undefined | PolicyAttentionRequired
+ >(undefined);
+
+ this.policyAttentionRequired = policyAttentionRequired;
+ this.#policyAttentionRequired = setPolicyAttentionRequired;
+
+ this.client = null!;
+ this.dispose();
+ }
+
+ private dispose() {
+ if (this.client) {
+ this.client.events.removeAllListeners();
+ this.client.removeAllListeners();
+ this.client.events.disconnect();
+ }
+
+ this.client = new Client({
+ baseURL: CONFIGURATION.DEFAULT_API_URL,
+ autoReconnect: false,
+ syncUnreads: true,
+ debug: import.meta.env.DEV,
+ channelIsMuted: (channel) =>
+ this.#controller.state.notifications.isMuted(channel),
+ channelExclusiveMuted: (channel) =>
+ this.#controller.state.notifications.isChannelMuted(channel),
+ });
+
+ this.client.configuration = {
+ revolt: String(),
+ app: String(),
+ build: {} as never,
+ features: {
+ autumn: {
+ enabled: true,
+ url: CONFIGURATION.DEFAULT_MEDIA_URL,
+ },
+ january: {
+ enabled: true,
+ url: CONFIGURATION.DEFAULT_PROXY_URL,
+ },
+ captcha: {} as never,
+ email: true,
+ invite_only: false,
+ livekit: {
+ enabled: false,
+ nodes: [],
+ },
+ },
+ vapid: String(),
+ ws: CONFIGURATION.DEFAULT_WS_URL,
+ };
+
+ this.client.events.on("state", this.onState);
+ this.client.on("ready", this.onReady);
+ this.client.on("policyChanges", this.onPolicyChanges);
+ }
+
+ #enter(nextState: State) {
+ if (import.meta.env.DEV) {
+ console.info("[lifecycle] entering state", nextState);
+ }
+
+ this.#setStateSetter(nextState);
+
+ // Clean up retry timer
+ if (this.#retryTimeout) {
+ clearTimeout(this.#retryTimeout);
+ this.#retryTimeout = undefined;
+ }
+
+ switch (nextState) {
+ case State.LoggingIn:
+ this.client.api.get("/onboard/hello").then(({ onboarding }) => {
+ if (onboarding) {
+ this.transition({
+ type: TransitionType.NoUser,
+ });
+ } else {
+ this.client.connect();
+ }
+ });
+
+ break;
+ case State.Connecting:
+ case State.Reconnecting:
+ this.client.connect();
+ break;
+ case State.Connected:
+ this.#controller.state.auth.markValid();
+ this.#setLoadedOnce(true);
+ this.#connectionFailures = 0;
+ break;
+ case State.Dispose:
+ this.dispose();
+ this.transition({
+ type: TransitionType.Ready,
+ });
+ this.#setLoadedOnce(false);
+ break;
+ case State.Disconnected:
+ this.#connectionFailures++;
+
+ if (!navigator.onLine) {
+ this.transition({
+ type: TransitionType.DeviceOffline,
+ });
+ } else {
+ const retryIn =
+ (Math.pow(2, this.#connectionFailures) - 1) *
+ (0.8 + Math.random() * 0.4);
+
+ console.info(
+ "Will try to reconnect in",
+ retryIn.toFixed(2),
+ "seconds!",
+ );
+
+ this.#retryTimeout = setTimeout(() => {
+ this.#retryTimeout = undefined;
+ this.transition({
+ type: TransitionType.Retry,
+ });
+ }, retryIn * 1e3) as never;
+ }
+ break;
+ }
+ }
+
+ transition(transition: Transition) {
+ console.debug("Received transition", transition.type);
+
+ if (transition.type === TransitionType.DisposeOnly) {
+ this.dispose();
+ return;
+ }
+
+ const currentState = this.state();
+ switch (currentState) {
+ case State.Ready:
+ if (transition.type === TransitionType.LoginUncached) {
+ this.client.useExistingSession({
+ ...transition.session,
+ user_id: transition.session.userId,
+ });
+
+ this.#enter(State.LoggingIn);
+ } else if (transition.type === TransitionType.LoginCached) {
+ this.client.useExistingSession({
+ ...transition.session,
+ user_id: transition.session.userId,
+ });
+
+ this.#enter(State.Connecting);
+ }
+ break;
+ case State.LoggingIn:
+ switch (transition.type) {
+ case TransitionType.SocketConnected:
+ this.#enter(State.Connected);
+ break;
+ case TransitionType.NoUser:
+ this.#enter(State.Onboarding);
+ break;
+ case TransitionType.PermanentFailure:
+ case TransitionType.TemporaryFailure:
+ // TODO: relay error
+ this.#enter(State.Error);
+ break;
+ }
+ break;
+ case State.Onboarding:
+ if (transition.type === TransitionType.UserCreated) {
+ this.#enter(State.Connecting);
+ } else if (transition.type === TransitionType.Cancel) {
+ this.#enter(State.Dispose);
+ }
+ break;
+ case State.Error:
+ if (transition.type === TransitionType.Dismiss) {
+ this.#enter(State.Dispose);
+ }
+ break;
+ case State.Dispose:
+ if (transition.type === TransitionType.Ready) {
+ this.#enter(State.Ready);
+ }
+ break;
+ case State.Connecting:
+ switch (transition.type) {
+ case TransitionType.SocketConnected:
+ this.#enter(State.Connected);
+ break;
+ case TransitionType.TemporaryFailure:
+ this.#enter(State.Disconnected);
+ break;
+ case TransitionType.PermanentFailure:
+ this.#permanentError = transition.error;
+ this.#enter(State.Error);
+ break;
+ case TransitionType.Logout:
+ this.#enter(State.Dispose);
+ break;
+ }
+ break;
+ case State.Connected:
+ switch (transition.type) {
+ case TransitionType.TemporaryFailure:
+ this.#enter(State.Disconnected);
+ break;
+ case TransitionType.Logout:
+ this.#enter(State.Dispose);
+ break;
+ }
+ break;
+ case State.Disconnected:
+ switch (transition.type) {
+ case TransitionType.DeviceOffline:
+ this.#enter(State.Offline);
+ break;
+ case TransitionType.Retry:
+ this.#enter(State.Reconnecting);
+ break;
+ case TransitionType.Logout:
+ this.#enter(State.Dispose);
+ break;
+ }
+ break;
+ case State.Reconnecting:
+ switch (transition.type) {
+ case TransitionType.SocketConnected:
+ this.#enter(State.Connected);
+ break;
+ case TransitionType.TemporaryFailure:
+ this.#enter(State.Disconnected);
+ break;
+ case TransitionType.PermanentFailure:
+ // TODO: relay error
+ this.#enter(State.Error);
+ break;
+ case TransitionType.Logout:
+ this.#enter(State.Dispose);
+ break;
+ }
+ break;
+ case State.Offline:
+ switch (transition.type) {
+ case TransitionType.DeviceOnline:
+ this.#enter(State.Reconnecting);
+ break;
+ case TransitionType.Retry:
+ this.#enter(State.Reconnecting);
+ break;
+ case TransitionType.Logout:
+ this.#enter(State.Dispose);
+ break;
+ }
+ break;
+ }
+
+ if (currentState === this.state()) {
+ console.error(
+ "An unhandled transition occurred!",
+ transition,
+ "was received on",
+ currentState,
+ );
+ }
+ }
+
+ private onReady() {
+ this.transition({
+ type: TransitionType.SocketConnected,
+ });
+ }
+
+ private onPolicyChanges(
+ changes: ProtocolV1["types"]["policyChange"][],
+ ack: () => Promise,
+ ) {
+ this.#policyAttentionRequired([
+ changes,
+ () => ack().then(() => this.#policyAttentionRequired(undefined)),
+ ]);
+ }
+
+ private onState(state: ConnectionState) {
+ switch (state) {
+ case ConnectionState.Disconnected:
+ if (this.client.events.lastError) {
+ if (this.client.events.lastError.type === "revolt") {
+ // if (this.client.events.lastError.data.type == 'InvalidSession') {
+
+ this.transition({
+ type: TransitionType.PermanentFailure,
+ error: this.client.events.lastError.data.type,
+ });
+
+ break;
+ }
+ }
+
+ this.transition({
+ type: TransitionType.TemporaryFailure,
+ });
+
+ break;
+ }
+ }
+
+ /**
+ * Get the permanent error
+ */
+ get permanentError() {
+ return this.#permanentError!;
+ }
+}
+
+/**
+ * Controls lifecycle of clients
+ */
+export default class ClientController {
+ /**
+ * API Client
+ */
+ readonly api: API.API;
+
+ /**
+ * Lifecycle
+ */
+ readonly lifecycle: Lifecycle;
+
+ /**
+ * Reference to application state
+ */
+ readonly state: ApplicationState;
+
+ /**
+ * Construct new client controller
+ */
+ constructor(state: ApplicationState) {
+ this.state = state;
+ this.api = new API.API({
+ baseURL: CONFIGURATION.DEFAULT_API_URL,
+ });
+
+ this.lifecycle = new Lifecycle(this);
+
+ this.login = this.login.bind(this);
+ this.logout = this.logout.bind(this);
+ this.selectUsername = this.selectUsername.bind(this);
+ this.isLoggedIn = this.isLoggedIn.bind(this);
+ this.isError = this.isError.bind(this);
+
+ const session = state.auth.getSession();
+ if (session) {
+ this.lifecycle.transition({
+ type: TransitionType.LoginCached,
+ session,
+ });
+ }
+ }
+
+ getCurrentClient() {
+ return this.lifecycle.client;
+ }
+
+ isLoggedIn() {
+ return [
+ State.Connecting,
+ State.Connected,
+ State.Disconnected,
+ State.Offline,
+ State.Reconnecting,
+ ].includes(this.lifecycle.state());
+ }
+
+ isError() {
+ return this.lifecycle.state() === State.Error;
+ }
+
+ /**
+ * Login given a set of credentials
+ * @param credentials Credentials
+ */
+ async login(credentials: API.DataLogin, modals: ModalControllerExtended) {
+ const browser = detect();
+
+ // Generate a friendly name for this browser
+ let friendly_name;
+ if (browser) {
+ let { name, os } = browser as { name: string; os: string };
+ if (name === "ios") {
+ name = "safari";
+ } else if (name === "fxios") {
+ name = "firefox";
+ } else if (name === "crios") {
+ name = "chrome";
+ } else if (os === "Mac OS" && navigator.maxTouchPoints > 0) {
+ os = "iPadOS";
+ }
+
+ friendly_name = `Stoat for Web (${name} on ${os})`;
+ } else {
+ friendly_name = "Stoat for Web (Unknown Device)";
+ }
+
+ // Try to login with given credentials
+ let session = await this.api.post("/auth/session/login", {
+ ...credentials,
+ friendly_name,
+ });
+
+ // Prompt for MFA verification if necessary
+ if (session.result === "MFA") {
+ const { allowed_methods } = session;
+ while (session.result === "MFA") {
+ const mfa_response: API.MFAResponse | undefined = await new Promise(
+ (callback) =>
+ modals.openModal({
+ type: "mfa_flow",
+ state: "unknown",
+ available_methods: allowed_methods,
+ callback,
+ }),
+ );
+
+ if (typeof mfa_response === "undefined") {
+ break;
+ }
+
+ try {
+ session = await this.api.post("/auth/session/login", {
+ mfa_response,
+ mfa_ticket: session.ticket,
+ friendly_name,
+ });
+ } catch (err) {
+ console.error("Failed login:", err);
+ }
+ }
+
+ if (session.result === "MFA") {
+ throw "Cancelled";
+ }
+ }
+
+ if (session.result === "Disabled") {
+ // TODO
+ alert("Account is disabled, run special logic here.");
+ return;
+ }
+
+ const createdSession = {
+ _id: session._id,
+ token: session.token,
+ userId: session.user_id,
+ valid: false,
+ };
+
+ this.state.auth.setSession(createdSession);
+ this.lifecycle.transition({
+ type: TransitionType.LoginUncached,
+ session: createdSession,
+ });
+ }
+
+ async selectUsername(username: string) {
+ await this.lifecycle.client.api.post("/onboard/complete", {
+ username,
+ });
+
+ this.lifecycle.transition({
+ type: TransitionType.UserCreated,
+ });
+ }
+
+ logout() {
+ this.state.auth.removeSession();
+ this.lifecycle.transition({
+ type: TransitionType.Logout,
+ });
+ }
+
+ dispose() {
+ this.lifecycle.transition({
+ type: TransitionType.DisposeOnly,
+ });
+ }
+}
diff --git a/components/client/NotificationsWorker.tsx b/components/client/NotificationsWorker.tsx
new file mode 100644
index 0000000..185eb1c
--- /dev/null
+++ b/components/client/NotificationsWorker.tsx
@@ -0,0 +1,214 @@
+import { createEffect, onCleanup, onMount } from "solid-js";
+
+import { useLingui } from "@lingui-solid/solid/macro";
+import {
+ ChannelEditSystemMessage,
+ ChannelOwnershipChangeSystemMessage,
+ ChannelRenamedSystemMessage,
+ Message,
+ MessagePinnedSystemMessage,
+ TextSystemMessage,
+ UserModeratedSystemMessage,
+ UserSystemMessage,
+} from "stoat.js";
+
+import { useNavigate, useSmartParams } from "@revolt/routing";
+import { useState } from "@revolt/state";
+
+import { useClient } from ".";
+
+/**
+ * Process and display desktop notifications
+ */
+export function NotificationsWorker() {
+ const state = useState();
+ const { t } = useLingui();
+ const client = useClient();
+ const navigate = useNavigate();
+ const params = useSmartParams();
+
+ /**
+ * Handle incoming messages
+ * @param message Message
+ */
+ function onMessage(message: Message) {
+ const us = client().user!;
+
+ // Ignore if we are currently looking at the channel
+ if (params().channelId === message.channelId && document.hasFocus()) return;
+
+ // Ignore our own messages
+ if (message.author?.self) return;
+
+ // Ignore blocked users
+ if (message.author?.relationship === "Blocked") return;
+
+ // Ignore muted channels
+ if (state.notifications.isMuted(message.channel)) return;
+
+ // Check channel notification settings
+ switch (state.notifications.computeForChannel(message.channel!)) {
+ case "none":
+ return; // ignore if muted/none
+ case "mention":
+ if (!message.mentioned) return; // ignore if not mentioned
+ }
+
+ // Ignore if we're busy or focused
+ if (
+ us.status?.presence === "Busy" ||
+ (us.status?.presence === "Focus" && !message.mentioned)
+ )
+ return;
+
+ // Generate the title
+ let title;
+ switch (message.channel!.type) {
+ case "SavedMessages":
+ return;
+ case "DirectMessage":
+ title = `@${message.username}`;
+ break;
+ case "Group":
+ if (message.author?.id === "00000000000000000000000000") {
+ title = message.channel?.name;
+ } else {
+ title = `@${message.username} - ${message.channel?.name}`;
+ }
+ break;
+ case "TextChannel":
+ title = `@${message.username} (#${message.channel?.name}, ${message.channel?.server?.name})`;
+ break;
+ }
+
+ // Find image if applicable
+ const image = message.attachments?.find(
+ (x) => x.metadata.type === "Image",
+ )?.previewUrl;
+
+ // Find body/icon
+ let body, icon;
+ if (message.content) {
+ body = message.contentPlain;
+ icon = message.avatarURL;
+ } else if (message.systemMessage) {
+ switch (message.systemMessage.type) {
+ case "text":
+ body = (message.systemMessage as TextSystemMessage).content;
+ break;
+ case "user_added":
+ body = t`${(message.systemMessage as UserModeratedSystemMessage).user?.username} was added by ${(message.systemMessage as UserModeratedSystemMessage).by?.username}`;
+ icon = (message.systemMessage as UserModeratedSystemMessage).user
+ ?.avatarURL;
+ break;
+ case "user_remove":
+ body = t`${(message.systemMessage as UserModeratedSystemMessage).user?.username} was removed by ${(message.systemMessage as UserModeratedSystemMessage).by?.username}`;
+ icon = (message.systemMessage as UserModeratedSystemMessage).user
+ ?.avatarURL;
+ break;
+ case "user_joined":
+ body = t`${(message.systemMessage as UserSystemMessage).user?.username} joined`;
+ icon = (message.systemMessage as UserSystemMessage).user?.avatarURL;
+ break;
+ case "user_left":
+ body = t`${(message.systemMessage as UserSystemMessage).user?.username} left`;
+ icon = (message.systemMessage as UserSystemMessage).user?.avatarURL;
+ break;
+ case "user_kicked":
+ body = t`${(message.systemMessage as UserSystemMessage).user?.username} was kicked`;
+ icon = (message.systemMessage as UserSystemMessage).user?.avatarURL;
+ break;
+ case "user_banned":
+ body = t`${(message.systemMessage as UserSystemMessage).user?.username} was banned`;
+ icon = (message.systemMessage as UserSystemMessage).user?.avatarURL;
+ break;
+ case "channel_renamed":
+ body = t`${(message.systemMessage as ChannelRenamedSystemMessage).by?.username} renamed the channel`;
+ icon = (message.systemMessage as ChannelRenamedSystemMessage).by
+ ?.avatarURL;
+ break;
+ case "channel_description_changed":
+ body = t`${(message.systemMessage as ChannelEditSystemMessage).by?.username} changed the channel description`;
+ icon = (message.systemMessage as ChannelEditSystemMessage).by
+ ?.avatarURL;
+ break;
+ case "channel_icon_changed":
+ body = t`${(message.systemMessage as ChannelEditSystemMessage).by?.username} changed the channel icon`;
+ icon = (message.systemMessage as ChannelEditSystemMessage).by
+ ?.avatarURL;
+ break;
+ case "channel_ownership_changed":
+ body = t`${(message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username} made ${(message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username} the new group owner`;
+ icon = (message.systemMessage as ChannelOwnershipChangeSystemMessage)
+ .from?.avatarURL;
+ break;
+ case "message_pinned":
+ body = t`${(message.systemMessage as MessagePinnedSystemMessage).by?.username} pinned a message`;
+ icon = (message.systemMessage as MessagePinnedSystemMessage).by
+ ?.avatarURL;
+ break;
+ case "message_unpinned":
+ body = t`${(message.systemMessage as MessagePinnedSystemMessage).by?.username} unpinned a message`;
+ icon = (message.systemMessage as MessagePinnedSystemMessage).by
+ ?.avatarURL;
+ break;
+ }
+ } else if (message.attachments?.length) {
+ body = t`Sent ${message.attachments!.length} attachments`;
+ }
+
+ // todo: play sound
+
+ // Don't continue if we don't have notification permissions
+ if (Notification.permission !== "granted") return;
+
+ console.info(`[notification] ${title} ${icon} ${body}`);
+
+ const notification = new Notification(title!, {
+ icon,
+ // @ts-expect-error this does exist on some platforms
+ image,
+ body,
+ timestamp: message.createdAt,
+ tag: message.channelId,
+ badge: "/assets/web/android-chrome-512x512.png",
+ silent: true,
+ });
+
+ notification.addEventListener("click", () => {
+ window.focus();
+ navigate(message.path);
+ });
+ }
+
+ createEffect(() => {
+ client().addListener("messageCreate", onMessage);
+ onCleanup(() => client().removeListener("messageCreate", onMessage));
+ });
+
+ /**
+ * Handle page click to request notifications
+ */
+ function tryRequest() {
+ document.removeEventListener("click", tryRequest);
+
+ if (!localStorage.getItem("denied-notifications")) {
+ Notification.requestPermission().then(
+ (permission) =>
+ permission === "denied" &&
+ localStorage.setItem("denied-notifications", "1"),
+ );
+ }
+ }
+
+ onMount(() => {
+ // don't bother mounting if denied before
+ if (!localStorage.getItem("denied-notifications")) {
+ document.addEventListener("click", tryRequest);
+ }
+ });
+
+ onCleanup(() => document.removeEventListener("click", tryRequest));
+
+ return null;
+}
diff --git a/components/client/index.tsx b/components/client/index.tsx
new file mode 100644
index 0000000..47741e4
--- /dev/null
+++ b/components/client/index.tsx
@@ -0,0 +1,123 @@
+import {
+ type JSXElement,
+ Accessor,
+ createContext,
+ createEffect,
+ on,
+ onCleanup,
+ useContext,
+} from "solid-js";
+
+import type { Client, User } from "stoat.js";
+
+import { useModals } from "@revolt/modal";
+import { State } from "@revolt/state";
+
+import { State as LifecycleState } from "./Controller";
+
+import { CHANGELOG_MODAL_CONST } from "@revolt/modal/modals/Changelog";
+import ClientController from "./Controller";
+
+export type { default as ClientController } from "./Controller";
+
+const clientContext = createContext(null! as ClientController);
+
+/**
+ * Mount the modal controller
+ */
+export function ClientContext(props: { state: State; children: JSXElement }) {
+ const { openModal } = useModals();
+
+ // eslint-disable-next-line solid/reactivity
+ const controller = new ClientController(props.state);
+ onCleanup(() => controller.dispose());
+
+ createEffect(() => {
+ const lastIndex = props.state.settings.getValue("changelog:last_index");
+ if (controller.lifecycle.state() === LifecycleState.Ready) return;
+
+ if (
+ lastIndex !== CHANGELOG_MODAL_CONST.index &&
+ new Date() < CHANGELOG_MODAL_CONST.until
+ ) {
+ openModal({
+ type: "changelog",
+ initial: CHANGELOG_MODAL_CONST.index,
+ });
+
+ props.state.settings.setValue(
+ "changelog:last_index",
+ CHANGELOG_MODAL_CONST.index,
+ );
+ }
+ });
+
+ createEffect(
+ on(
+ () => controller.lifecycle.policyAttentionRequired(),
+ (attentionRequired) => {
+ if (typeof attentionRequired !== "undefined") {
+ const [changes, acknowledge] = attentionRequired;
+
+ openModal({
+ type: "policy_change",
+ changes,
+ acknowledge,
+ });
+ }
+ },
+ ),
+ );
+
+ return (
+
+ {props.children}
+
+ );
+}
+
+/**
+ * Get various lifecycle objects
+ * @returns Lifecycle information
+ */
+export function useClientLifecycle() {
+ const { login, logout, selectUsername, lifecycle, isLoggedIn, isError } =
+ useContext(clientContext);
+
+ return {
+ login,
+ logout,
+ selectUsername,
+ lifecycle,
+ isLoggedIn,
+ isError,
+ };
+}
+
+/**
+ * Get the currently active client if one is available
+ * @returns Client
+ */
+export function useClient(): Accessor {
+ const controller = useContext(clientContext);
+ return () => controller.getCurrentClient()!;
+}
+
+/**
+ * Get the currently logged in user
+ * @returns User
+ */
+export function useUser(): Accessor {
+ const controller = useContext(clientContext);
+ return () => controller.getCurrentClient()!.user;
+}
+
+/**
+ * Plain API client with no authentication
+ * @returns API Client
+ */
+export function useApi() {
+ return useContext(clientContext).api;
+}
+
+export const IS_DEV = import.meta.env.DEV;
diff --git a/components/client/resources.ts b/components/client/resources.ts
new file mode 100644
index 0000000..28a2ce0
--- /dev/null
+++ b/components/client/resources.ts
@@ -0,0 +1,53 @@
+import { createQuery } from "@tanstack/solid-query";
+import { User } from "stoat.js";
+
+import { useClient } from ".";
+
+/**
+ * Create a new resource for current account's MFA configuration
+ * @returns MFA configuration
+ */
+export function createMfaResource() {
+ const client = useClient();
+
+ return createQuery(() => ({
+ queryKey: ["mfa", client().user!.id],
+ queryFn: () => client().account.mfa(),
+ throwOnError: true,
+ }));
+}
+
+/**
+ * Create a new resource for user profile
+ * @param user User
+ * @returns User profile resource
+ */
+export function createProfileResource(user: User) {
+ return createQuery(() => ({
+ queryKey: ["profile", user.id],
+ queryFn: () => user!.fetchProfile(),
+ throwOnError: true,
+ }));
+}
+
+/**
+ * Create a new resource for own user profile
+ * @returns User profile resource
+ */
+export function createOwnProfileResource() {
+ const client = useClient();
+ return createProfileResource(client().user!);
+}
+
+/**
+ * Create a new resource for own bots
+ * @returns List of owned bots
+ */
+export function createOwnBotsResource() {
+ const client = useClient();
+ return createQuery(() => ({
+ queryKey: ["bots", client().user!.id],
+ queryFn: () => client().bots.fetchOwned(),
+ throwOnError: true,
+ }));
+}
diff --git a/components/common/index.tsx b/components/common/index.tsx
new file mode 100644
index 0000000..40f00ae
--- /dev/null
+++ b/components/common/index.tsx
@@ -0,0 +1,3 @@
+export { debounce } from "./lib/debounce";
+export { default as CONFIGURATION } from "./lib/env";
+export { insecureUniqueId } from "./lib/unique";
diff --git a/components/common/lib/debounce.ts b/components/common/lib/debounce.ts
new file mode 100644
index 0000000..9c12a9f
--- /dev/null
+++ b/components/common/lib/debounce.ts
@@ -0,0 +1,24 @@
+/**
+ * Debounce a function calls
+ * @param cb Callback
+ * @param duration Time to wait
+ * @returns New function
+ */
+export function debounce(
+ cb: (...args: A) => void,
+ duration: number,
+) {
+ // Store the timer variable.
+ let timer: number;
+ // This function is given to React.
+ return (...args: A) => {
+ // Get rid of the old timer.
+ clearTimeout(timer);
+ // Set a new timer.
+ timer = setTimeout(() => {
+ // Instead calling the new function.
+ // (with the newer data)
+ cb(...args);
+ }, duration) as never;
+ };
+}
diff --git a/components/common/lib/env.ts b/components/common/lib/env.ts
new file mode 100644
index 0000000..059b105
--- /dev/null
+++ b/components/common/lib/env.ts
@@ -0,0 +1,95 @@
+const DEFAULT_API_URL =
+ (import.meta.env.DEV ? import.meta.env.VITE_DEV_API_URL : undefined) ??
+ (import.meta.env.VITE_API_URL as string) ??
+ "https://stoat.chat/api";
+
+export default {
+ /**
+ * Whether to emit additional debug information
+ */
+ DEBUG: import.meta.env.DEV || true,
+ /**
+ * What API server to connect to by default.
+ */
+ DEFAULT_API_URL,
+ /**
+ * Whether this is Stoat
+ */
+ IS_STOAT: [
+ // historically...
+ "https://api.revolt.chat",
+ "https://beta.revolt.chat/api",
+ "https://revolt.chat/api",
+ // ... and now:
+ "https://stoat.chat/api",
+ ].includes(DEFAULT_API_URL),
+ /**
+ * What WS server to connect to by default.
+ */
+ DEFAULT_WS_URL:
+ (import.meta.env.DEV ? import.meta.env.VITE_DEV_WS_URL : undefined) ??
+ (import.meta.env.VITE_WS_URL as string) ??
+ "wss://stoat.chat/events",
+ /**
+ * What media server to connect to by default.
+ */
+ DEFAULT_MEDIA_URL:
+ (import.meta.env.DEV ? import.meta.env.VITE_DEV_MEDIA_URL : undefined) ??
+ (import.meta.env.VITE_MEDIA_URL as string) ??
+ "https://cdn.stoatusercontent.com",
+ /**
+ * What proxy server to connect to by default.
+ */
+ DEFAULT_PROXY_URL:
+ (import.meta.env.DEV ? import.meta.env.VITE_DEV_PROXY_URL : undefined) ??
+ (import.meta.env.VITE_PROXY_URL as string) ??
+ "https://proxy.stoatusercontent.com",
+ /**
+ * What gifbox server to connect to by default.
+ */
+ DEFAULT_GIFBOX_URL:
+ (import.meta.env.DEV ? import.meta.env.VITE_DEV_GIFBOX_URL : undefined) ??
+ (import.meta.env.VITE_GIFBOX_URL as string) ??
+ "https://api.gifbox.me",
+ /**
+ * hCaptcha site key to use if enabled
+ */
+ HCAPTCHA_SITEKEY: import.meta.env.VITE_HCAPTCHA_SITEKEY as string,
+ /**
+ * Maximum number of replies a message can have
+ */
+ MAX_REPLIES: (import.meta.env.VITE_CFG_MAX_REPLIES as number) ?? 5,
+ /**
+ * Maximum number of attachments a message can have
+ */
+ MAX_ATTACHMENTS: (import.meta.env.VITE_CFG_MAX_ATTACHMENTS as number) ?? 5,
+ /**
+ * Maximum number of emoji a server can have
+ */
+ MAX_EMOJI: (import.meta.env.VITE_CFG_MAX_EMOJI as number) ?? 100,
+ /**
+ * Max file size allowed for uploads (in bytes)
+ * 20 MB = 20 * 1024 * 1024 = 20,971,520 bytes
+ * I kinda wonder if this should be a setting, or something fetched from the backend dynamically.
+ */
+ MAX_FILE_SIZE:
+ (import.meta.env.VITE_CFG_MAX_FILE_SIZE as number) ?? 20_000_000,
+ /**
+ * Session ID to set during development.
+ */
+ DEVELOPMENT_SESSION_ID: import.meta.env.DEV
+ ? (import.meta.env.VITE_SESSION_ID as string)
+ : undefined,
+ /**
+ * Token to set during development.
+ */
+ DEVELOPMENT_TOKEN: import.meta.env.DEV
+ ? (import.meta.env.VITE_TOKEN as string)
+ : undefined,
+ /**
+ * User ID to set during development.
+ */
+ DEVELOPMENT_USER_ID: import.meta.env.DEV
+ ? (import.meta.env.VITE_USER_ID as string)
+ : undefined,
+};
diff --git a/components/common/lib/unique.ts b/components/common/lib/unique.ts
new file mode 100644
index 0000000..e02e779
--- /dev/null
+++ b/components/common/lib/unique.ts
@@ -0,0 +1,13 @@
+/**
+ * Generation counter
+ */
+let counter = 0;
+
+/**
+ * Generates a guaranteed unique ID for use within the client.
+ * This should never be used to uniquely identify something across the network.
+ * @returns a unique identifier
+ */
+export function insecureUniqueId() {
+ return Math.random().toString().substring(2) + new Date() + ++counter;
+}
diff --git a/components/i18n/Languages.ts b/components/i18n/Languages.ts
new file mode 100644
index 0000000..96c9127
--- /dev/null
+++ b/components/i18n/Languages.ts
@@ -0,0 +1,335 @@
+export enum Language {
+ // English
+ ENGLISH = "en",
+ ENGLISH_STUPEFIED = "en_US",
+
+ // Foreign Languages
+ ARABIC = "ar",
+ ASSAMESE = "as",
+ AZERBAIJANI = "az",
+ BELARUSIAN = "be",
+ BULGARIAN = "bg",
+ BENGALI = "bn",
+ BRETON = "br",
+ CATALONIAN = "ca",
+ CEBUANO = "ceb",
+ CENTRAL_KURDISH = "ckb",
+ CZECH = "cs",
+ DANISH = "da",
+ GERMAN = "de",
+ GREEK = "el",
+ SPANISH = "es",
+ SPANISH_LATIN_AMERICA = "es_419",
+ ESTONIAN = "et",
+ FINNISH = "fi",
+ FILIPINO = "fil",
+ FRENCH = "fr",
+ IRISH = "ga",
+ HINDI = "hi",
+ CROATIAN = "hr",
+ HUNGARIAN = "hu",
+ ARMENIAN = "hy",
+ INDONESIAN = "id",
+ ICELANDIC = "is",
+ ITALIAN = "it",
+ JAPANESE = "ja",
+ KOREAN = "ko",
+ LUXEMBOURGISH = "lb",
+ LITHUANIAN = "lt",
+ MACEDONIAN = "mk",
+ MALAY = "ms",
+ NORWEGIAN_BOKMAL = "nb_NO",
+ DUTCH = "nl",
+ PERSIAN = "fa",
+ POLISH = "pl",
+ PORTUGUESE_BRAZIL = "pt_BR",
+ PORTUGUESE_PORTUGAL = "pt_PT",
+ ROMANIAN = "ro",
+ RUSSIAN = "ru",
+ SLOVAK = "sk",
+ SLOVENIAN = "sl",
+ ALBANIAN = "sq",
+ SERBIAN = "sr",
+ SINHALESE = "si",
+ SWEDISH = "sv",
+ TAMIL = "ta",
+ THAI = "th",
+ TURKISH = "tr",
+ UKRANIAN = "uk",
+ URDU = "ur",
+ VENETIAN = "vec",
+ VIETNAMESE = "vi",
+ CHINESE_SIMPLIFIED = "zh_Hans",
+ CHINESE_TRADITIONAL = "zh_Hant",
+ LATVIAN = "lv",
+
+ // Constructed Languages
+ TOKIPONA = "tokipona",
+ ESPERANTO = "esperanto",
+
+ // Joke Languages
+ OWO = "owo",
+ PIRATE = "pr",
+ BOTTOM = "bottom",
+ LEET = "leet",
+ PIGLATIN = "piglatin",
+ ENCHANTMENT_TABLE = "enchantment",
+
+ // Test Languages
+ DEV = "dev",
+}
+
+export interface LocaleOptions {
+ /**
+ * Date format
+ *
+ * Example values: DD/MM/YYYY, MM/DD/YYYY, YYYY/MM/DD
+ */
+ dateFormat?: string;
+
+ /**
+ * Time format
+ *
+ * Example values: h:mm A, hh:mm
+ */
+ timeFormat?: string;
+
+ /**
+ * Whether the UI should be right-to-left
+ */
+ rtl?: boolean;
+}
+
+export interface LanguageEntry {
+ /**
+ * What should appear in the UI as the name for the language
+ */
+ display: string;
+
+ /**
+ * What emoji should be displayed
+ */
+ emoji: string;
+
+ /**
+ * Filename of the related language file
+ */
+ i18n: string;
+
+ /**
+ * Dayjs locale file if different
+ */
+ dayjs?: string;
+
+ /**
+ * Locale options
+ */
+ localeOptions?: Pick;
+
+ /**
+ * Whether the language is a conlang (constructed language) or a joke
+ */
+ cat?: "const" | "alt";
+
+ /**
+ * Whether the language has a maintainer
+ * (patched in)
+ */
+ verified?: boolean;
+
+ /**
+ * Whether the language is incomplete
+ * (patched in)
+ */
+ incomplete?: boolean;
+}
+
+export const Languages: { [key in Language]: LanguageEntry } = {
+ // English and "English"
+ en: {
+ display: "English (Traditional)",
+ emoji: "🇬🇧",
+ i18n: "en",
+ dayjs: "en-gb",
+ },
+ en_US: {
+ display: "English (Simplified)",
+ emoji: "🇺🇸",
+ i18n: "en_US",
+ dayjs: "en",
+ },
+
+ // Foreign languages
+ ar: {
+ display: "عربي",
+ emoji: "🇸🇦",
+ i18n: "ar",
+ localeOptions: { rtl: true },
+ verified: true,
+ },
+ as: {
+ display: "অসমীয়া",
+ emoji: "🇮🇳",
+ i18n: "as",
+ },
+ az: { display: "Azərbaycan dili", emoji: "🇦🇿", i18n: "az" },
+ be: { display: "Беларуская", emoji: "🇧🇾", i18n: "be" },
+ bg: { display: "Български", emoji: "🇧🇬", i18n: "bg" },
+ bn: { display: "বাংলা", emoji: "🇧🇩", i18n: "bn" },
+ br: { display: "Brezhoneg", emoji: "br", i18n: "br", verified: true },
+ ca: { display: "Català", emoji: "🇪🇸", i18n: "ca" },
+ ceb: { display: "Bisaya", emoji: "🇵🇭", i18n: "ceb" },
+ ckb: {
+ display: "کوردی",
+ emoji: "krd",
+ i18n: "ckb",
+ dayjs: "ku",
+ },
+ cs: { display: "Čeština", emoji: "🇨🇿", i18n: "cs" },
+ da: { display: "Dansk", emoji: "🇩🇰", i18n: "da" },
+ de: { display: "Deutsch", emoji: "🇩🇪", i18n: "de", verified: true },
+ el: { display: "Ελληνικά", emoji: "🇬🇷", i18n: "el" },
+ es: { display: "Español", emoji: "🇪🇸", i18n: "es" },
+ es_419: {
+ display: "Español (América Latina)",
+ emoji: "🇪🇸",
+ i18n: "es_419",
+ dayjs: "es",
+ },
+ et: { display: "eesti", emoji: "🇪🇪", i18n: "et", verified: true },
+ fi: { display: "suomi", emoji: "🇫🇮", i18n: "fi" },
+ fil: {
+ display: "Filipino",
+ emoji: "🇵🇭",
+ i18n: "fil",
+ dayjs: "tl-ph",
+ },
+ fr: { display: "Français", emoji: "🇫🇷", i18n: "fr", verified: true },
+ ga: { display: "Gaeilge", emoji: "🇮🇪", i18n: "ga" },
+ hi: { display: "हिन्दी", emoji: "🇮🇳", i18n: "hi" },
+ hr: { display: "Hrvatski", emoji: "🇭🇷", i18n: "hr" },
+ hu: { display: "Magyar", emoji: "🇭🇺", i18n: "hu", verified: true },
+ hy: { display: "հայերեն", emoji: "🇦🇲", i18n: "hy" },
+ id: { display: "Bahasa Indonesia", emoji: "🇮🇩", i18n: "id" },
+ is: { display: "Íslenska", emoji: "🇮🇸", i18n: "is" },
+ it: { display: "Italiano", emoji: "🇮🇹", i18n: "it" },
+ ja: { display: "日本語", emoji: "🇯🇵", i18n: "ja" },
+ ko: { display: "한국어", emoji: "🇰🇷", i18n: "ko" },
+ lb: { display: "Lëtzebuergesch", emoji: "🇱🇺", i18n: "lb" },
+ lt: { display: "Lietuvių", emoji: "🇱🇹", i18n: "lt" },
+ lv: { display: "Latviešu", emoji: "🇱🇻", i18n: "lv", verified: true },
+ mk: { display: "Македонски", emoji: "🇲🇰", i18n: "mk" },
+ ms: { display: "Bahasa Melayu", emoji: "🇲🇾", i18n: "ms" },
+ nb_NO: { display: "Norsk bokmål", emoji: "🇳🇴", i18n: "nb_NO", dayjs: "nb" },
+ nl: { display: "Nederlands", emoji: "🇳🇱", i18n: "nl" },
+ fa: { display: "فارسی", emoji: "🇮🇷", i18n: "fa", verified: true },
+ pl: { display: "Polski", emoji: "🇵🇱", i18n: "pl" },
+ pt_BR: {
+ display: "Português (do Brasil)",
+ emoji: "🇧🇷",
+ i18n: "pt_BR",
+ dayjs: "pt-br",
+ },
+ pt_PT: {
+ display: "Português (Portugal)",
+ emoji: "🇵🇹",
+ i18n: "pt_PT",
+ dayjs: "pt",
+ },
+ ro: { display: "Română", emoji: "🇷🇴", i18n: "ro" },
+ ru: { display: "Русский", emoji: "🇷🇺", i18n: "ru", verified: true },
+ sk: { display: "Slovensky", emoji: "🇸🇰", i18n: "sk" },
+ sl: { display: "Slovenščina", emoji: "🇸🇮", i18n: "sl" },
+ sq: { display: "Shqip", emoji: "🇦🇱", i18n: "sq" },
+ sr: { display: "Српски", emoji: "🇷🇸", i18n: "sr" },
+ si: { display: "සිංහල", emoji: "🇱🇰", i18n: "si" },
+ sv: { display: "Svenska", emoji: "🇸🇪", i18n: "sv", verified: true },
+ ta: { display: "தமிழ்", emoji: "🇮🇳", i18n: "ta" },
+ th: { display: "ไทย", emoji: "🇹🇭", i18n: "th" },
+ tr: { display: "Türkçe", emoji: "🇹🇷", i18n: "tr" },
+ ur: { display: "اردو", emoji: "🇵🇰", i18n: "ur" },
+ uk: { display: "Українська", emoji: "🇺🇦", i18n: "uk", verified: true },
+ vec: { display: "Vèneto", emoji: "vec", i18n: "vec", dayjs: "en-gb" },
+ vi: { display: "Tiếng Việt", emoji: "🇻🇳", i18n: "vi" },
+ zh_Hans: {
+ display: "简体中文",
+ emoji: "🇨🇳",
+ i18n: "zh_Hans",
+ dayjs: "zh",
+ },
+ zh_Hant: {
+ display: "繁體中文",
+ emoji: "🇹🇼",
+ i18n: "zh_Hant",
+ dayjs: "zh",
+ },
+
+ // Constructed languages
+ tokipona: {
+ display: "Toki Pona",
+ emoji: "🙂",
+ i18n: "tokipona",
+ dayjs: "en-gb",
+ cat: "const",
+ },
+ esperanto: {
+ display: "Esperanto",
+ emoji: "EO",
+ i18n: "eo",
+ dayjs: "eo",
+ cat: "const",
+ },
+
+ // Joke languages
+ owo: {
+ display: "OwO",
+ emoji: "😸",
+ i18n: "owo",
+ dayjs: "en-gb",
+ cat: "alt",
+ },
+ pr: {
+ display: "Pirate",
+ emoji: "🏴☠️",
+ i18n: "pr",
+ dayjs: "en-gb",
+ cat: "alt",
+ },
+ bottom: {
+ display: "Bottom",
+ emoji: "🥺",
+ i18n: "bottom",
+ dayjs: "en-gb",
+ cat: "alt",
+ },
+ leet: {
+ display: "1337",
+ emoji: "💾",
+ i18n: "leet",
+ dayjs: "en-gb",
+ cat: "alt",
+ },
+ enchantment: {
+ display: "Enchantment Table",
+ emoji: "🪄",
+ i18n: "enchantment",
+ dayjs: "en-gb",
+ cat: "alt",
+ },
+ piglatin: {
+ display: "Pig Latin",
+ emoji: "🐖",
+ i18n: "piglatin",
+ dayjs: "en-gb",
+ cat: "alt",
+ },
+
+ // Test Language
+ dev: {
+ display: "Developer Test",
+ emoji: "🦝",
+ i18n: "dev",
+ dayjs: "en-gb",
+ cat: "alt",
+ },
+};
diff --git a/components/i18n/catalogs/.gitignore b/components/i18n/catalogs/.gitignore
new file mode 100644
index 0000000..b0a155e
--- /dev/null
+++ b/components/i18n/catalogs/.gitignore
@@ -0,0 +1 @@
+*.ts
\ No newline at end of file
diff --git a/components/i18n/catalogs/ar/messages.js b/components/i18n/catalogs/ar/messages.js
new file mode 100644
index 0000000..8bb5ff3
--- /dev/null
+++ b/components/i18n/catalogs/ar/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"مكتوم\"],\"+YFgJi\":[\"الشارات\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"حدده كمقروء\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"أنشئ رتبة جديدة\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"تسجيل خروج من جميع الجلسات الأخرى\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"اختر اسم مستخدم ليتمكن الآخرون من العثور عليك بواسطته، يمكنك تغييره لاحقاً في الإعدادات.\"],\"/qQDwm\":[\"جار انشاء دعوة…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"الإبلاغ عن الرسالة\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"إرسال اقتراحات لتحسين المنصة\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"انسخ معرّف الرسالة\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"مغادرة المجموعة\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"يمكنك الإبلاغ عن أية مشاكل ومناقشة التحسينات معنا مباشرةً هنا.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"محظور\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"لن تتمكن من الانضمام مجدداً ما لم تتم دعوتك مرة أُخرى.\"],\"3QuNUr\":[\"العديد من الأشخاص يكتبون…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"أنت بالفعل صديق مع هذا المستخدم.\"],\"3T8ziB\":[\"إنشاء حساب\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"الجلسات\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"لقب\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"اختر اللغة\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"ابحث عن مجتمع يحوي هواياتك أو اهتماماتك.\"],\"572q5a\":[\"أبلغ عن مستخدم\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"حدده كغير مقروء\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"تغيير اللقب\"],\"5dJK4M\":[\"الرُتب\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"نظرة عامة\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"غير متصل\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"المستخدم\"],\"7SU2U9\":[\"انسخ معرّف السيرفر\"],\"7VpPHA\":[\"تأكيد\"],\"7dZnmw\":[\"الصلة\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"اسم المستخدم\"],\"7vhWI8\":[\"كلمة مرور جديدة\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"إدارة السيرفر\"],\"8FE4JE\":[\"تفعيل تطبيق المصادقة الثنائية\"],\"8VGnad\":[\"إنتاج رموز استرجاع\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"كلمة المرور\"],\"8aTiea\":[\"التخصيص\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"أدخل اسم المستخدم الخاص بك.\"],\"9D85wC\":[\"انسخ معرّف المستخدم\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"الصلاحيات\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"أُحظر\"],\"9nffag\":[\"ما معروض هو رسائل قديمة\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"فك الحظر\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"أنشئ مجموعة\"],\"A9Rhec\":[\"اسم القناة\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"أدخل كلمة مرور جديدة.\"],\"AU7IRi\":[\"قناة نصية\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"قناة صوتية\"],\"BHsrDx\":[\"الدعوات\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"هذه الرسالة مرسلة من منصة أخرى\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"عرض القناة\"],\"CK7kdd\":[\"امسح الحالة\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"وصف القناة\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"إرسال الرسائل\"],\"CkIs/i\":[\"كتم الأعضاء\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"كلمة السر الحالية\"],\"DDpDsO\":[\"رمز الدعوة\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"التواصل الرسمي\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"تم إنجازه\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"فشل تحميل الرسائل، اضغط للانتقال\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"أرسل إلينا اقتراحاتك لإضافة الميزات\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"أطرد\"],\"EdQY6l\":[\"لا شيء\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"المحادثات\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"أرسل مرفقًا\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"إنشاء فئة\"],\"F1uGNS\":[\"إدارة الألقاب\"],\"FEr96N\":[\"السمة\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"إزالة الصور الرمزية\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"فعّل تنبيهات الحاسوب\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"مركز\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"انسخ معرّف القناة\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"المجموعات المُشتَركة\"],\"GhCPk1\":[\"لا يمكن التراجع عن الحذف.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"أدخل كلمة السر الحالية.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"يرجى إختيار طريقة لمصادقة طلبك.\"],\"HAKBY9\":[\"رفع الملفات\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"الملاحظات المحفوظة\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"إعادة إرسال رسالة التحقق\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"تحريك الأعضاء\"],\"ImOQa9\":[\"ردّ\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"أرسل عدة مرفقات\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"لا يمكن حذف الحساب حتى يتم حذف الخوادم أو نقلها\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"تأكيد الأمر\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"إعرض التحديثات السابقة\"],\"JUJmXm\":[\"يرجى التأكيد بإستخدام الطريقة المختارة.\"],\"JW8mxK\":[\"الحفظ في ملاحظاتك\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"مرحباً بك في\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"يمكنك أيضًا النقر بالزر الأيمن للفأرة فوق صورة المستخدم الموجودة في الجزء العلوي الأيسر، أو النقر بزر الفأرة الأيسر إذا كنت في الصفحة الرئيسية.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"احذف الرسالة\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"يخالف المحتوى قانونًا واحدًا أو أكثر\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"الأصوات\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"سيرفر رسمي\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"إزالة الصديق\"],\"LcET2C\":[\"سياسة الخصوصية\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"لقد أرسلنا لك بريد إلكتروني للتحقق. الرجاء انتظار لمدة 10 دقائق لوصول البريد قبل المحاولة مرة أخري.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"اسم السيرفر\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"غادر\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"عرض تقارير متعقب الأخطاء هنا.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"أخبرنا كيف يمكننا تحسين تطبيقنا من خلال تزويدنا بالتعليقات.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"تم توثيق حسابك بنجاح!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"البريد الإلكتروني\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"ليس لديك صلاحية لإرسال رسائل في هذه القناة.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"إعادة التعيين\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"رفض طلب الصداقة\"],\"PSP1MZ\":[\"اسم الرتبة\"],\"PWOA0E\":[\"عند ذكري فقط\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"إرسال رسائل مُضمَنة\"],\"PnzsrT\":[\"مصدر البرنامج\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"انتقل إلى الرسائل الحاضرة\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"خامل\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"عدّل الرسالة\"],\"QqoBlW\":[\"راجع بريدك الإلكتروني!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"أعد تعيين كلمة السر\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"متعقب الأخطاء\"],\"S3bIKF\":[\"انسخ المعرّف\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"يرجى استعمال الكاميرا لتصوير الشكل أو استخدام الرمز أدناه في تطبيق المصادقة الذي تستخدمه.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"أزل موثقًا\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"إدارة الرسائل\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"إدارة الرتب\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"الإعدادات\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"قم بدعوة جميع أصدقائك، وبعض البوتات الرائعة، وأقم حفلة كبيرة.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"تغيير الصورة الرمزية\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"عند إرسال رسالة\"],\"VJScHU\":[\"السبب\"],\"VKsaTi\":[\"الرد على\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"منع الأعضاء من الاستماع\"],\"VsHxv+\":[\"انسخ النص\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"جار التحقق من حسابك…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"الروابط الخارجية قد تكون خطيرة!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"إعدادات التطبيق\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"تطبيق المصادقة الثنائية\"],\"YcVBkL\":[\"عند استلام رسالة\"],\"YirHq7\":[\"رأيك\"],\"YlFpiA\":[\"فشل توثيق حسابك!\"],\"Yp+Hi/\":[\"افتح الإعدادات\"],\"Z5HWHd\":[\"مفعل\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"رموز الإسترجاع الخاصة بك\"],\"aAIQg2\":[\"المظهر\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"لا يمكنك التراجع عن هذا الفعل.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"موقف\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"تعطيل الحساب\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"قراءة سِجِل الرسائل\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"اُحظر العضو\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"إدارة الصلاحيات\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"الداعي\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"احذف\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"ألغ\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"إنشاء بوت جديد\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"دعوة الآخرين\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"متخفي\"],\"ekfzWq\":[\"إعدادات المستخدم\"],\"etgedT\":[\"الرموز التعبيرية\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"إدارة التعديلات\"],\"fTMMeD\":[\"إنشاء دعوة\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"سجّل\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"إلغاء طلب الصداقه\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"تعيين الرتب\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"بلّغ\"],\"gkBHk/\":[\"إنشاء قناة\"],\"gkmjYT\":[\"مغادرة السيرفر\"],\"go1IWB\":[\"لقد قام هذا المستخدم بحظرك.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"حذف القناة\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"الرجاء إدخال بريدك الإلكتروني.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"أنشئ\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"الصفحة الرئيسية\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"الإتصال\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"أذكر\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"بوت\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"العودة لتسجيل الدخول\"],\"jpJ5AL\":[\"رمز الاسترجاع\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"الصورة الرمزية\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"أهلًا!\"],\"knjY+b\":[\"يمكنك فتحها لاحقاً ولكنها ستختفي من كِلا الطرفين.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"إرسال طلب صداقة\"],\"lSGjX7\":[\"عند انضمام مستخدم للمكالمة\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"القنوات\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"اسم المجموعة\"],\"mAYvqA\":[\"مرحباً!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"عدل هويتك\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"لن يكن لك القدرة أن تستخدم حسابك إلا إذا اتصلت بالدعم لكن بياناتك لن تحذف.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"حالة مُخَصَّصة\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"الأصدقاء المُشتَركون\"],\"nbzz1A\":[\"ادخل الرمز\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"هذه بداية ملاحظاتك.\"],\"o+XJ9D\":[\"تعديل\"],\"oB4OOq\":[\"حظر الأعضاء\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"متصل\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"طرد الأعضاء\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"إفتراضي\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"تسجيل خروج\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"انتقل إلى البداية\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"عند مغادرة مستخدم للمكالمة\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"حسابي\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"كل الرسائل\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"شخص واحد تفاعل\"],\"rxaY+5\":[\"لا تقم بالإزعاج\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"متقدم\"],\"t43mBk\":[\"الإبلاغ عن السيرفر\"],\"tBmnPU\":[\"الأصدقاء\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"إدارة ربط الخدمات\"],\"tdTuUv\":[\"احظر المستخدم\"],\"tfDRzk\":[\"احفظ\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"مستخدم محظور\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"الذهاب لسيرفر المختبرين\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"اطرد العضو\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"حذف الرتبة\"],\"utrCh2\":[\"حظر مؤقت للأعضاء\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"حول\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"وصف السيرفر\"],\"v1kQyJ\":[\"ربط الخدمات\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"الملف الشخصي\"],\"vJum3e\":[\"ادعم المشروع بالتبرع - شكرًا لك!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"فيديو\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"تعديل الهوية\"],\"vXIe7J\":[\"اللغة\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"الرجاء حفظ هذه الرموز في مكان آمن.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"المراسلة\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"الدخول للقناة\"],\"wL3cK8\":[\"الأحدث\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"الأعضاء\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"التَّنَكُّر\"],\"xDAtGP\":[\"راسِل\"],\"xGVfLh\":[\"استمرار\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"المستخدمون المحظورون\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"شروط الخدمة\"],\"xpgPPI\":[\"البوتّات الخاصة بي\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"قبول طلب الصداقة\"],\"y1eoq1\":[\"انسخ الرابط\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"أنا أؤكد أن عمري لا يقل عن 18 عاماً.\"],\"yDOdwQ\":[\"إدارة المستخدمين\"],\"yIBLq8\":[\"تحدث\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"أغلق\"],\"z0hW8A\":[\"عرض رموز الاسترجاع\"],\"z0t9bb\":[\"تسجيل الدخول\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"تأكيد\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"هذه هي بداية محادثتكم.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"الأقدم\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ar/messages.mjs b/components/i18n/catalogs/ar/messages.mjs
new file mode 100644
index 0000000..bc97f59
--- /dev/null
+++ b/components/i18n/catalogs/ar/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"مكتوم\"],\"+YFgJi\":[\"الشارات\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"حدده كمقروء\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"أنشئ رتبة جديدة\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"تسجيل خروج من جميع الجلسات الأخرى\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"اختر اسم مستخدم ليتمكن الآخرون من العثور عليك بواسطته، يمكنك تغييره لاحقاً في الإعدادات.\"],\"/qQDwm\":[\"جار انشاء دعوة…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"الإبلاغ عن الرسالة\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"إرسال اقتراحات لتحسين المنصة\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"انسخ معرّف الرسالة\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"مغادرة المجموعة\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"يمكنك الإبلاغ عن أية مشاكل ومناقشة التحسينات معنا مباشرةً هنا.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"محظور\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"لن تتمكن من الانضمام مجدداً ما لم تتم دعوتك مرة أُخرى.\"],\"3QuNUr\":[\"العديد من الأشخاص يكتبون…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"أنت بالفعل صديق مع هذا المستخدم.\"],\"3T8ziB\":[\"إنشاء حساب\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"الجلسات\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"لقب\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"اختر اللغة\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"ابحث عن مجتمع يحوي هواياتك أو اهتماماتك.\"],\"572q5a\":[\"أبلغ عن مستخدم\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"حدده كغير مقروء\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"تغيير اللقب\"],\"5dJK4M\":[\"الرُتب\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"نظرة عامة\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"غير متصل\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"المستخدم\"],\"7SU2U9\":[\"انسخ معرّف السيرفر\"],\"7VpPHA\":[\"تأكيد\"],\"7dZnmw\":[\"الصلة\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"اسم المستخدم\"],\"7vhWI8\":[\"كلمة مرور جديدة\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"إدارة السيرفر\"],\"8FE4JE\":[\"تفعيل تطبيق المصادقة الثنائية\"],\"8VGnad\":[\"إنتاج رموز استرجاع\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"كلمة المرور\"],\"8aTiea\":[\"التخصيص\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"أدخل اسم المستخدم الخاص بك.\"],\"9D85wC\":[\"انسخ معرّف المستخدم\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"الصلاحيات\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"أُحظر\"],\"9nffag\":[\"ما معروض هو رسائل قديمة\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"فك الحظر\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"أنشئ مجموعة\"],\"A9Rhec\":[\"اسم القناة\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"أدخل كلمة مرور جديدة.\"],\"AU7IRi\":[\"قناة نصية\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"قناة صوتية\"],\"BHsrDx\":[\"الدعوات\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"هذه الرسالة مرسلة من منصة أخرى\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"عرض القناة\"],\"CK7kdd\":[\"امسح الحالة\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"وصف القناة\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"إرسال الرسائل\"],\"CkIs/i\":[\"كتم الأعضاء\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"كلمة السر الحالية\"],\"DDpDsO\":[\"رمز الدعوة\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"التواصل الرسمي\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"تم إنجازه\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"فشل تحميل الرسائل، اضغط للانتقال\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"أرسل إلينا اقتراحاتك لإضافة الميزات\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"أطرد\"],\"EdQY6l\":[\"لا شيء\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"المحادثات\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"أرسل مرفقًا\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"إنشاء فئة\"],\"F1uGNS\":[\"إدارة الألقاب\"],\"FEr96N\":[\"السمة\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"إزالة الصور الرمزية\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"فعّل تنبيهات الحاسوب\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"مركز\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"انسخ معرّف القناة\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"المجموعات المُشتَركة\"],\"GhCPk1\":[\"لا يمكن التراجع عن الحذف.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"أدخل كلمة السر الحالية.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"يرجى إختيار طريقة لمصادقة طلبك.\"],\"HAKBY9\":[\"رفع الملفات\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"الملاحظات المحفوظة\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"إعادة إرسال رسالة التحقق\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"تحريك الأعضاء\"],\"ImOQa9\":[\"ردّ\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"أرسل عدة مرفقات\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"لا يمكن حذف الحساب حتى يتم حذف الخوادم أو نقلها\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"تأكيد الأمر\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"إعرض التحديثات السابقة\"],\"JUJmXm\":[\"يرجى التأكيد بإستخدام الطريقة المختارة.\"],\"JW8mxK\":[\"الحفظ في ملاحظاتك\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"مرحباً بك في\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"يمكنك أيضًا النقر بالزر الأيمن للفأرة فوق صورة المستخدم الموجودة في الجزء العلوي الأيسر، أو النقر بزر الفأرة الأيسر إذا كنت في الصفحة الرئيسية.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"احذف الرسالة\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"يخالف المحتوى قانونًا واحدًا أو أكثر\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"الأصوات\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"سيرفر رسمي\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"إزالة الصديق\"],\"LcET2C\":[\"سياسة الخصوصية\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"لقد أرسلنا لك بريد إلكتروني للتحقق. الرجاء انتظار لمدة 10 دقائق لوصول البريد قبل المحاولة مرة أخري.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"اسم السيرفر\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"غادر\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"عرض تقارير متعقب الأخطاء هنا.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"أخبرنا كيف يمكننا تحسين تطبيقنا من خلال تزويدنا بالتعليقات.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"تم توثيق حسابك بنجاح!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"البريد الإلكتروني\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"ليس لديك صلاحية لإرسال رسائل في هذه القناة.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"إعادة التعيين\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"رفض طلب الصداقة\"],\"PSP1MZ\":[\"اسم الرتبة\"],\"PWOA0E\":[\"عند ذكري فقط\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"إرسال رسائل مُضمَنة\"],\"PnzsrT\":[\"مصدر البرنامج\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"انتقل إلى الرسائل الحاضرة\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"خامل\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"عدّل الرسالة\"],\"QqoBlW\":[\"راجع بريدك الإلكتروني!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"أعد تعيين كلمة السر\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"متعقب الأخطاء\"],\"S3bIKF\":[\"انسخ المعرّف\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"يرجى استعمال الكاميرا لتصوير الشكل أو استخدام الرمز أدناه في تطبيق المصادقة الذي تستخدمه.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"أزل موثقًا\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"إدارة الرسائل\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"إدارة الرتب\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"الإعدادات\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"قم بدعوة جميع أصدقائك، وبعض البوتات الرائعة، وأقم حفلة كبيرة.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"تغيير الصورة الرمزية\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"عند إرسال رسالة\"],\"VJScHU\":[\"السبب\"],\"VKsaTi\":[\"الرد على\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"منع الأعضاء من الاستماع\"],\"VsHxv+\":[\"انسخ النص\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"جار التحقق من حسابك…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"الروابط الخارجية قد تكون خطيرة!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"إعدادات التطبيق\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"تطبيق المصادقة الثنائية\"],\"YcVBkL\":[\"عند استلام رسالة\"],\"YirHq7\":[\"رأيك\"],\"YlFpiA\":[\"فشل توثيق حسابك!\"],\"Yp+Hi/\":[\"افتح الإعدادات\"],\"Z5HWHd\":[\"مفعل\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"رموز الإسترجاع الخاصة بك\"],\"aAIQg2\":[\"المظهر\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"لا يمكنك التراجع عن هذا الفعل.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"موقف\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"تعطيل الحساب\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"قراءة سِجِل الرسائل\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"اُحظر العضو\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"إدارة الصلاحيات\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"الداعي\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"احذف\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"ألغ\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"إنشاء بوت جديد\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"دعوة الآخرين\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"متخفي\"],\"ekfzWq\":[\"إعدادات المستخدم\"],\"etgedT\":[\"الرموز التعبيرية\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"إدارة التعديلات\"],\"fTMMeD\":[\"إنشاء دعوة\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"سجّل\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"إلغاء طلب الصداقه\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"تعيين الرتب\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"بلّغ\"],\"gkBHk/\":[\"إنشاء قناة\"],\"gkmjYT\":[\"مغادرة السيرفر\"],\"go1IWB\":[\"لقد قام هذا المستخدم بحظرك.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"حذف القناة\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"الرجاء إدخال بريدك الإلكتروني.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"أنشئ\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"الصفحة الرئيسية\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"الإتصال\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"أذكر\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"بوت\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"العودة لتسجيل الدخول\"],\"jpJ5AL\":[\"رمز الاسترجاع\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"الصورة الرمزية\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"أهلًا!\"],\"knjY+b\":[\"يمكنك فتحها لاحقاً ولكنها ستختفي من كِلا الطرفين.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"إرسال طلب صداقة\"],\"lSGjX7\":[\"عند انضمام مستخدم للمكالمة\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"القنوات\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"اسم المجموعة\"],\"mAYvqA\":[\"مرحباً!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"عدل هويتك\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"لن يكن لك القدرة أن تستخدم حسابك إلا إذا اتصلت بالدعم لكن بياناتك لن تحذف.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"حالة مُخَصَّصة\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"الأصدقاء المُشتَركون\"],\"nbzz1A\":[\"ادخل الرمز\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"هذه بداية ملاحظاتك.\"],\"o+XJ9D\":[\"تعديل\"],\"oB4OOq\":[\"حظر الأعضاء\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"متصل\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"طرد الأعضاء\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"إفتراضي\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"تسجيل خروج\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"انتقل إلى البداية\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"عند مغادرة مستخدم للمكالمة\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"حسابي\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"كل الرسائل\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"شخص واحد تفاعل\"],\"rxaY+5\":[\"لا تقم بالإزعاج\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"متقدم\"],\"t43mBk\":[\"الإبلاغ عن السيرفر\"],\"tBmnPU\":[\"الأصدقاء\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"إدارة ربط الخدمات\"],\"tdTuUv\":[\"احظر المستخدم\"],\"tfDRzk\":[\"احفظ\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"مستخدم محظور\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"الذهاب لسيرفر المختبرين\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"اطرد العضو\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"حذف الرتبة\"],\"utrCh2\":[\"حظر مؤقت للأعضاء\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"حول\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"وصف السيرفر\"],\"v1kQyJ\":[\"ربط الخدمات\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"الملف الشخصي\"],\"vJum3e\":[\"ادعم المشروع بالتبرع - شكرًا لك!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"فيديو\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"تعديل الهوية\"],\"vXIe7J\":[\"اللغة\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"الرجاء حفظ هذه الرموز في مكان آمن.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"المراسلة\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"الدخول للقناة\"],\"wL3cK8\":[\"الأحدث\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"الأعضاء\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"التَّنَكُّر\"],\"xDAtGP\":[\"راسِل\"],\"xGVfLh\":[\"استمرار\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"المستخدمون المحظورون\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"شروط الخدمة\"],\"xpgPPI\":[\"البوتّات الخاصة بي\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"قبول طلب الصداقة\"],\"y1eoq1\":[\"انسخ الرابط\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"أنا أؤكد أن عمري لا يقل عن 18 عاماً.\"],\"yDOdwQ\":[\"إدارة المستخدمين\"],\"yIBLq8\":[\"تحدث\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"أغلق\"],\"z0hW8A\":[\"عرض رموز الاسترجاع\"],\"z0t9bb\":[\"تسجيل الدخول\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"تأكيد\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"هذه هي بداية محادثتكم.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"الأقدم\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ar/messages.po b/components/i18n/catalogs/ar/messages.po
new file mode 100644
index 0000000..ed2bcf6
--- /dev/null
+++ b/components/i18n/catalogs/ar/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ar\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "شخص واحد تفاعل"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "حول"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "قبول طلب الصداقة"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "إرسال طلب صداقة"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "متقدم"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "كل الرسائل"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "أنت بالفعل صديق مع هذا المستخدم."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "المظهر"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "تعيين الرتب"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "تطبيق المصادقة الثنائية"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "الصورة الرمزية"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "الشارات"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "أُحظر"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "اُحظر العضو"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "حظر الأعضاء"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "المستخدمون المحظورون"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "احظر المستخدم"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "محظور"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "مستخدم محظور"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "بوت"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "متعقب الأخطاء"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "ألغ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "إلغاء طلب الصداقه"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "لا يمكن حذف الحساب حتى يتم حذف الخوادم أو نقلها"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "تعديل"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "تغيير الصورة الرمزية"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "تغيير اللقب"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "وصف القناة"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "اسم القناة"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "القنوات"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "راجع بريدك الإلكتروني!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "امسح الحالة"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "إعدادات التطبيق"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "أغلق"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "تأكيد"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "تأكيد الأمر"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "الإتصال"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "يخالف المحتوى قانونًا واحدًا أو أكثر"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "استمرار"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "المحادثات"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "انسخ معرّف القناة"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "انسخ المعرّف"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "انسخ الرابط"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "انسخ معرّف الرسالة"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "انسخ معرّف السيرفر"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "انسخ النص"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "انسخ معرّف المستخدم"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "أنشئ"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "أنشئ مجموعة"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "إنشاء بوت جديد"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "أنشئ رتبة جديدة"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "إنشاء حساب"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "إنشاء فئة"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "إنشاء قناة"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "إنشاء دعوة"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "كلمة السر الحالية"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "حالة مُخَصَّصة"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "التخصيص"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "منع الأعضاء من الاستماع"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "إفتراضي"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "احذف"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "حذف القناة"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "احذف الرسالة"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "حذف الرتبة"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "تعطيل الحساب"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "لا تقم بالإزعاج"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "تم إنجازه"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "تعديل الهوية"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "عدّل الرسالة"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "عدل هويتك"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "البريد الإلكتروني"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "الرموز التعبيرية"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "تفعيل تطبيق المصادقة الثنائية"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "فعّل تنبيهات الحاسوب"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "أدخل كلمة مرور جديدة."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "الدخول للقناة"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "ادخل الرمز"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "أدخل كلمة السر الحالية."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "أدخل اسم المستخدم الخاص بك."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "الروابط الخارجية قد تكون خطيرة!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "فشل توثيق حسابك!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "رأيك"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "ابحث عن مجتمع يحوي هواياتك أو اهتماماتك."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "مركز"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "الأصدقاء"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "إنتاج رموز استرجاع"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "جار انشاء دعوة…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "العودة لتسجيل الدخول"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "الذهاب لسيرفر المختبرين"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "اسم المجموعة"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "مرحباً!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "الصفحة الرئيسية"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "أنا أؤكد أن عمري لا يقل عن 18 عاماً."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "خامل"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "متخفي"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "قم بدعوة جميع أصدقائك، وبعض البوتات الرائعة، وأقم حفلة كبيرة."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "رمز الدعوة"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "دعوة الآخرين"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "الداعي"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "الدعوات"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "انتقل إلى الرسائل الحاضرة"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "انتقل إلى البداية"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "أطرد"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "اطرد العضو"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "طرد الأعضاء"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "اللغة"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "الأحدث"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "غادر"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "مغادرة المجموعة"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "مغادرة السيرفر"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "أخبرنا كيف يمكننا تحسين تطبيقنا من خلال تزويدنا بالتعليقات."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "تسجيل خروج"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "تسجيل خروج من جميع الجلسات الأخرى"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "تسجيل الدخول"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "إدارة التعديلات"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "إدارة الرسائل"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "إدارة الألقاب"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "إدارة الصلاحيات"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "إدارة الرتب"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "إدارة السيرفر"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "إدارة ربط الخدمات"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "حدده كمقروء"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "حدده كغير مقروء"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "التَّنَكُّر"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "الأعضاء"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "أذكر"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "عند ذكري فقط"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "راسِل"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "فشل تحميل الرسائل، اضغط للانتقال"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "عند استلام رسالة"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "عند إرسال رسالة"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "هذه الرسالة مرسلة من منصة أخرى"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "المراسلة"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "تحريك الأعضاء"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "كتم الأعضاء"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "مكتوم"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "الأصدقاء المُشتَركون"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "المجموعات المُشتَركة"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "حسابي"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "البوتّات الخاصة بي"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "كلمة مرور جديدة"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "لقب"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "لا شيء"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "الإشعارات"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "موقف"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "التواصل الرسمي"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "سيرفر رسمي"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "غير متصل"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "تأكيد"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "الأقدم"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "مفعل"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "لا يمكن التراجع عن الحذف."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "متصل"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "افتح الإعدادات"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "نظرة عامة"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "كلمة المرور"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "الصلاحيات"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "اختر اسم مستخدم ليتمكن الآخرون من العثور عليك بواسطته، يمكنك تغييره لاحقاً في الإعدادات."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "يرجى التأكيد بإستخدام الطريقة المختارة."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "الرجاء إدخال بريدك الإلكتروني."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "الرجاء حفظ هذه الرموز في مكان آمن."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "يرجى استعمال الكاميرا لتصوير الشكل أو استخدام الرمز أدناه في تطبيق المصادقة الذي تستخدمه."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "يرجى إختيار طريقة لمصادقة طلبك."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "سياسة الخصوصية"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "الملف الشخصي"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "قراءة سِجِل الرسائل"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "السبب"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "رمز الاسترجاع"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "سجّل"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "رفض طلب الصداقة"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "الصلة"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "أزل موثقًا"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "إزالة الصور الرمزية"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "إزالة الصديق"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "ردّ"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "الرد على"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "بلّغ"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "الإبلاغ عن الرسالة"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "الإبلاغ عن السيرفر"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "أبلغ عن مستخدم"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "إعادة إرسال رسالة التحقق"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "إعادة التعيين"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "أعد تعيين كلمة السر"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "اسم الرتبة"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "الرُتب"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "احفظ"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "الحفظ في ملاحظاتك"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "الملاحظات المحفوظة"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "اختر اللغة"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "إرسال رسائل مُضمَنة"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "إرسال الرسائل"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "أرسل مرفقًا"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "أرسل عدة مرفقات"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "وصف السيرفر"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "اسم السيرفر"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "الجلسات"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "الإعدادات"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "العديد من الأشخاص يكتبون…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "الأصوات"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "مصدر البرنامج"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "تحدث"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "أرسل إلينا اقتراحاتك لإضافة الميزات"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "إرسال اقتراحات لتحسين المنصة"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "ادعم المشروع بالتبرع - شكرًا لك!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "شروط الخدمة"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "قناة نصية"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "السمة"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "هذه هي بداية محادثتكم."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "هذه بداية ملاحظاتك."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "لقد قام هذا المستخدم بحظرك."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "حظر مؤقت للأعضاء"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "فك الحظر"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "رفع الملفات"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "المستخدم"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "عند انضمام مستخدم للمكالمة"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "عند مغادرة مستخدم للمكالمة"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "إدارة المستخدمين"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "إعدادات المستخدم"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "اسم المستخدم"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "جار التحقق من حسابك…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "فيديو"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "عرض القناة"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "عرض تقارير متعقب الأخطاء هنا."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "إعرض التحديثات السابقة"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "عرض رموز الاسترجاع"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "ما معروض هو رسائل قديمة"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "قناة صوتية"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "لقد أرسلنا لك بريد إلكتروني للتحقق. الرجاء انتظار لمدة 10 دقائق لوصول البريد قبل المحاولة مرة أخري."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "ربط الخدمات"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "مرحباً بك في"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "أهلًا!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "يمكنك أيضًا النقر بالزر الأيمن للفأرة فوق صورة المستخدم الموجودة في الجزء العلوي الأيسر، أو النقر بزر الفأرة الأيسر إذا كنت في الصفحة الرئيسية."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "يمكنك فتحها لاحقاً ولكنها ستختفي من كِلا الطرفين."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "يمكنك الإبلاغ عن أية مشاكل ومناقشة التحسينات معنا مباشرةً هنا."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "لا يمكنك التراجع عن هذا الفعل."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "ليس لديك صلاحية لإرسال رسائل في هذه القناة."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "لن يكن لك القدرة أن تستخدم حسابك إلا إذا اتصلت بالدعم لكن بياناتك لن تحذف."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "لن تتمكن من الانضمام مجدداً ما لم تتم دعوتك مرة أُخرى."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "تم توثيق حسابك بنجاح!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "رموز الإسترجاع الخاصة بك"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/as/messages.js b/components/i18n/catalogs/as/messages.js
new file mode 100644
index 0000000..580b553
--- /dev/null
+++ b/components/i18n/catalogs/as/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"নিস্তব্ধ কৰা হৈছে\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"গোট এৰি যাওক\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"আপুনি সমস্যাবোৰ প্ৰতিবেদন কৰিব পাৰে আৰু ইয়াত পোনপটীয়াকৈ আমাৰ সৈতে উন্নতিৰ বিষয়ে আলোচনা কৰিব পাৰে।\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"কেইবাজনো লোকে টাইপ কৰি আছে…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"এটা একাওন্ট সৃষ্টি কৰক\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"আপোনাৰ ৰুচি বা আগ্ৰহৰ ওপৰত আধাৰিত কৰি এটা সম্প্ৰদায় বিচাৰি উলিয়াওক।\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"অফলাইন\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"প্ৰাসংগিকতা\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ব্যৱহাৰকাৰীনাম\"],\"7vhWI8\":[\"নতুন পাছৱাৰ্ড\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"পুনৰুদ্ধাৰ কোড সৃষ্টি কৰক\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"পাসওয়ার্ড\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"আপোনাৰ ব্যৱহাৰকাৰীনাম প্ৰবিষ্ট কৰক।\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"পুৰণি বাৰ্তাসমূহ দৰ্শন কৰা হৈছে\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ব্যৱহাৰকাৰীক আনব্লক কৰক\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"এটা গোট সৃষ্টি কৰক\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"আপোনাৰ ইমেইল প্ৰবিষ্ট কৰক।\"],\"AU7IRi\":[\"টেক্সট চেনেল\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ভইচ চেনেল\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"বাৰ্তা অন্য প্লেটফৰ্মত প্ৰেৰণ কৰা হৈছিল\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"ষ্টেটাছ আঁতৰাওক\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"বৰ্তমান পাছৱাৰ্ড\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"অফিচিয়েল কমিউনিকেচন\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"বাৰ্তা লোড কৰা হোৱা নাই, জঁপিয়াবলৈ ক্লিক কৰক\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"একো নাই\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"কথোপকথন\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"এটা ফাইল পঠাইছে\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"এটা শ্ৰেণী সৃষ্টি কৰক\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"ফোকাচ\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"আপোনাৰ বৰ্তমানৰ পাছৱৰ্ড প্ৰবিষ্ট কৰক।\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"সংৰক্ষিত টোকাসমূহ\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"প্ৰমাণীকৰণ পুনৰ প্ৰেৰণ কৰক\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"বহু কেতা ফাইল পঠিয়াইছে\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"আপোনাৰ টোকাসমূহত সংৰক্ষণ কৰক\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"আপুনি ওপৰৰ বাওঁফালে থকা ব্যৱহাৰকাৰী আইকনটো সোঁ-ক্লিক কৰিব পাৰে, বা আপুনি ইতিমধ্যে ঘৰত থাকিলে ইয়াত ক্লিক কৰিব পাৰে।\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"বন্ধুক আঁতৰাওক\"],\"LcET2C\":[\"গোপনীয়তা নীতি\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"অনুগ্ৰহ কৰি ইয়াক আহিপোৱাৰ বাবে 10 মিনিটলৈকে অনুমতি দিয়ক।\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"আমাক মতামত দি আমি কেনেকৈ আমাৰ এপটো উন্নত কৰিব পাৰোঁ আমাক জনাব।\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"অপুনাৰ একাউণ্ট প্ৰমণিত কৰা হয় গইছে!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ইমেইল\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"এই চেনেলত বাৰ্তা প্ৰেৰণ কৰাৰ অনুমতি আপোনাৰ নাই।\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"কেৱল উল্লেখ কৰক\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"বৰ্তমানলৈ জাঁপ দিয়ক\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"নিষ্ক্ৰিয়\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"আপোনাৰ মেইল পৰীক্ষা কৰক!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"পাছৱাৰ্ড ৰিছেট কৰক\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"ছেটিংছ\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"আপোনাৰ সকলো বন্ধুবৰ্গক নিমন্ত্ৰণ কৰক, কিছুমান শীতল বট, আৰু এটা ডাঙৰ পাৰ্টি দিয়ক।\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"উত্তৰ দিয়া হৈছে\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"অপুনাৰ একাউণ্ট প্ৰমণিত কৰা হয় আছে…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ক্লায়েন্টৰ ছেটিংছ\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"প্ৰমাণীকৰণ এপ্প\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"প্ৰমাণিত কৰিব পৰা নগল!\"],\"Yp+Hi/\":[\"ছেটিংছ খোলক\"],\"Z5HWHd\":[\"অন\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"বন্ধ\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"সদস্যজনক নিষিদ্ধ কৰক\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"অদৃশ্য\"],\"ekfzWq\":[\"আপোনাৰ ছেটিংছ\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"পঞ্জীয়ন কৰক\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"অনুৰোধ বাতিল কৰক\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"এটা চেনেল সৃষ্টি কৰক\"],\"gkmjYT\":[\"চাৰ্ভাৰ এৰি যাওক\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"চেনেল ডিলিট কৰক\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"অনুগ্ৰহ কৰি আপোনাৰ ইমেইল প্ৰবিষ্ট কৰক।\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"ঘৰ\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"বট\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"লগইনলৈ ঘূৰি যাওক\"],\"jpJ5AL\":[\"পুনৰুদ্ধাৰ কোড\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"স্বাগতম!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"বন্ধুক যোগ কৰক\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"চেনেলসমূহ\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"গোটৰ নাম\"],\"mAYvqA\":[\"নমস্কাৰ!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"কাষ্টম ষ্টেটাছ\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"এয়া হৈছে আপোনাৰ টোকাবোৰৰ আৰম্ভণি।\"],\"o+XJ9D\":[\"সলনি কৰক\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"অনলাইন\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"আৰম্ভণিলৈ জঁপিয়াওক\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"মোৰ একাউণ্ট\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"সকলো বাৰ্তা\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 জন ব্যক্তিয়ে প্ৰতিক্ৰিয়া প্ৰকাশ কৰিছে\"],\"rxaY+5\":[\"বিচলিত নকৰিব\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"বন্ধুসকল\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"ব্যৱহাৰকাৰীক ব্লক কৰক\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"অৱৰুদ্ধ ব্যক্তি\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"পৰীক্ষক চাৰ্ভাৰলৈ যাওক\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"বিষয়ে\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"চাৰ্ভাৰৰ বিৱৰণ\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"দান কৰি প্ৰকল্পটো সমৰ্থন কৰক - ধন্যবাদ!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"আপোনাৰ পৰিচয় সম্পাদনা কৰক\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"চেনেলত প্ৰৱেশ কৰক\"],\"wL3cK8\":[\"শেহতীয়া\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"সেৱাৰ চৰ্তাৱলী\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"লিংকটো কপি কৰক\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"মই নিশ্চিত কৰো যে মোৰ বয়স ১৮ বছৰতকৈ অধিক।\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"পুনৰুদ্ধাৰ কোডসমূহ দৰ্শন কৰক\"],\"z0t9bb\":[\"লগইন\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"এয়া হৈছে আপোনাৰ কথোপকথনৰ আৰম্ভণি।\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"আটাইতকৈ পুৰণি\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/as/messages.mjs b/components/i18n/catalogs/as/messages.mjs
new file mode 100644
index 0000000..f44d05e
--- /dev/null
+++ b/components/i18n/catalogs/as/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"নিস্তব্ধ কৰা হৈছে\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"গোট এৰি যাওক\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"আপুনি সমস্যাবোৰ প্ৰতিবেদন কৰিব পাৰে আৰু ইয়াত পোনপটীয়াকৈ আমাৰ সৈতে উন্নতিৰ বিষয়ে আলোচনা কৰিব পাৰে।\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"কেইবাজনো লোকে টাইপ কৰি আছে…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"এটা একাওন্ট সৃষ্টি কৰক\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"আপোনাৰ ৰুচি বা আগ্ৰহৰ ওপৰত আধাৰিত কৰি এটা সম্প্ৰদায় বিচাৰি উলিয়াওক।\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"অফলাইন\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"প্ৰাসংগিকতা\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ব্যৱহাৰকাৰীনাম\"],\"7vhWI8\":[\"নতুন পাছৱাৰ্ড\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"পুনৰুদ্ধাৰ কোড সৃষ্টি কৰক\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"পাসওয়ার্ড\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"আপোনাৰ ব্যৱহাৰকাৰীনাম প্ৰবিষ্ট কৰক।\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"পুৰণি বাৰ্তাসমূহ দৰ্শন কৰা হৈছে\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ব্যৱহাৰকাৰীক আনব্লক কৰক\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"এটা গোট সৃষ্টি কৰক\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"আপোনাৰ ইমেইল প্ৰবিষ্ট কৰক।\"],\"AU7IRi\":[\"টেক্সট চেনেল\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ভইচ চেনেল\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"বাৰ্তা অন্য প্লেটফৰ্মত প্ৰেৰণ কৰা হৈছিল\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"ষ্টেটাছ আঁতৰাওক\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"বৰ্তমান পাছৱাৰ্ড\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"অফিচিয়েল কমিউনিকেচন\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"বাৰ্তা লোড কৰা হোৱা নাই, জঁপিয়াবলৈ ক্লিক কৰক\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"একো নাই\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"কথোপকথন\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"এটা ফাইল পঠাইছে\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"এটা শ্ৰেণী সৃষ্টি কৰক\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"ফোকাচ\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"আপোনাৰ বৰ্তমানৰ পাছৱৰ্ড প্ৰবিষ্ট কৰক।\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"সংৰক্ষিত টোকাসমূহ\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"প্ৰমাণীকৰণ পুনৰ প্ৰেৰণ কৰক\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"বহু কেতা ফাইল পঠিয়াইছে\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"আপোনাৰ টোকাসমূহত সংৰক্ষণ কৰক\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"আপুনি ওপৰৰ বাওঁফালে থকা ব্যৱহাৰকাৰী আইকনটো সোঁ-ক্লিক কৰিব পাৰে, বা আপুনি ইতিমধ্যে ঘৰত থাকিলে ইয়াত ক্লিক কৰিব পাৰে।\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"বন্ধুক আঁতৰাওক\"],\"LcET2C\":[\"গোপনীয়তা নীতি\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"অনুগ্ৰহ কৰি ইয়াক আহিপোৱাৰ বাবে 10 মিনিটলৈকে অনুমতি দিয়ক।\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"আমাক মতামত দি আমি কেনেকৈ আমাৰ এপটো উন্নত কৰিব পাৰোঁ আমাক জনাব।\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"অপুনাৰ একাউণ্ট প্ৰমণিত কৰা হয় গইছে!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ইমেইল\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"এই চেনেলত বাৰ্তা প্ৰেৰণ কৰাৰ অনুমতি আপোনাৰ নাই।\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"কেৱল উল্লেখ কৰক\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"বৰ্তমানলৈ জাঁপ দিয়ক\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"নিষ্ক্ৰিয়\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"আপোনাৰ মেইল পৰীক্ষা কৰক!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"পাছৱাৰ্ড ৰিছেট কৰক\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"ছেটিংছ\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"আপোনাৰ সকলো বন্ধুবৰ্গক নিমন্ত্ৰণ কৰক, কিছুমান শীতল বট, আৰু এটা ডাঙৰ পাৰ্টি দিয়ক।\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"উত্তৰ দিয়া হৈছে\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"অপুনাৰ একাউণ্ট প্ৰমণিত কৰা হয় আছে…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ক্লায়েন্টৰ ছেটিংছ\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"প্ৰমাণীকৰণ এপ্প\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"প্ৰমাণিত কৰিব পৰা নগল!\"],\"Yp+Hi/\":[\"ছেটিংছ খোলক\"],\"Z5HWHd\":[\"অন\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"বন্ধ\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"সদস্যজনক নিষিদ্ধ কৰক\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"অদৃশ্য\"],\"ekfzWq\":[\"আপোনাৰ ছেটিংছ\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"পঞ্জীয়ন কৰক\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"অনুৰোধ বাতিল কৰক\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"এটা চেনেল সৃষ্টি কৰক\"],\"gkmjYT\":[\"চাৰ্ভাৰ এৰি যাওক\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"চেনেল ডিলিট কৰক\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"অনুগ্ৰহ কৰি আপোনাৰ ইমেইল প্ৰবিষ্ট কৰক।\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"ঘৰ\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"বট\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"লগইনলৈ ঘূৰি যাওক\"],\"jpJ5AL\":[\"পুনৰুদ্ধাৰ কোড\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"স্বাগতম!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"বন্ধুক যোগ কৰক\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"চেনেলসমূহ\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"গোটৰ নাম\"],\"mAYvqA\":[\"নমস্কাৰ!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"কাষ্টম ষ্টেটাছ\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"এয়া হৈছে আপোনাৰ টোকাবোৰৰ আৰম্ভণি।\"],\"o+XJ9D\":[\"সলনি কৰক\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"অনলাইন\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"আৰম্ভণিলৈ জঁপিয়াওক\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"মোৰ একাউণ্ট\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"সকলো বাৰ্তা\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 জন ব্যক্তিয়ে প্ৰতিক্ৰিয়া প্ৰকাশ কৰিছে\"],\"rxaY+5\":[\"বিচলিত নকৰিব\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"বন্ধুসকল\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"ব্যৱহাৰকাৰীক ব্লক কৰক\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"অৱৰুদ্ধ ব্যক্তি\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"পৰীক্ষক চাৰ্ভাৰলৈ যাওক\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"বিষয়ে\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"চাৰ্ভাৰৰ বিৱৰণ\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"দান কৰি প্ৰকল্পটো সমৰ্থন কৰক - ধন্যবাদ!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"আপোনাৰ পৰিচয় সম্পাদনা কৰক\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"চেনেলত প্ৰৱেশ কৰক\"],\"wL3cK8\":[\"শেহতীয়া\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"সেৱাৰ চৰ্তাৱলী\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"লিংকটো কপি কৰক\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"মই নিশ্চিত কৰো যে মোৰ বয়স ১৮ বছৰতকৈ অধিক।\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"পুনৰুদ্ধাৰ কোডসমূহ দৰ্শন কৰক\"],\"z0t9bb\":[\"লগইন\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"এয়া হৈছে আপোনাৰ কথোপকথনৰ আৰম্ভণি।\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"আটাইতকৈ পুৰণি\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/as/messages.po b/components/i18n/catalogs/as/messages.po
new file mode 100644
index 0000000..eb00208
--- /dev/null
+++ b/components/i18n/catalogs/as/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: as\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 জন ব্যক্তিয়ে প্ৰতিক্ৰিয়া প্ৰকাশ কৰিছে"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "বিষয়ে"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "বন্ধুক যোগ কৰক"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "সকলো বাৰ্তা"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "প্ৰমাণীকৰণ এপ্প"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "সদস্যজনক নিষিদ্ধ কৰক"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "ব্যৱহাৰকাৰীক ব্লক কৰক"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "অৱৰুদ্ধ ব্যক্তি"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "বট"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "অনুৰোধ বাতিল কৰক"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "সলনি কৰক"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr ""
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "চেনেলসমূহ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "আপোনাৰ মেইল পৰীক্ষা কৰক!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "ষ্টেটাছ আঁতৰাওক"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "ক্লায়েন্টৰ ছেটিংছ"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "কথোপকথন"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "লিংকটো কপি কৰক"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "এটা গোট সৃষ্টি কৰক"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr ""
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "এটা একাওন্ট সৃষ্টি কৰক"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "এটা শ্ৰেণী সৃষ্টি কৰক"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "এটা চেনেল সৃষ্টি কৰক"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "বৰ্তমান পাছৱাৰ্ড"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "কাষ্টম ষ্টেটাছ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "চেনেল ডিলিট কৰক"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "বিচলিত নকৰিব"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "আপোনাৰ পৰিচয় সম্পাদনা কৰক"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "ইমেইল"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "আপোনাৰ ইমেইল প্ৰবিষ্ট কৰক।"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "চেনেলত প্ৰৱেশ কৰক"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "আপোনাৰ বৰ্তমানৰ পাছৱৰ্ড প্ৰবিষ্ট কৰক।"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "আপোনাৰ ব্যৱহাৰকাৰীনাম প্ৰবিষ্ট কৰক।"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "প্ৰমাণিত কৰিব পৰা নগল!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "আপোনাৰ ৰুচি বা আগ্ৰহৰ ওপৰত আধাৰিত কৰি এটা সম্প্ৰদায় বিচাৰি উলিয়াওক।"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "ফোকাচ"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "বন্ধুসকল"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "পুনৰুদ্ধাৰ কোড সৃষ্টি কৰক"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "লগইনলৈ ঘূৰি যাওক"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "পৰীক্ষক চাৰ্ভাৰলৈ যাওক"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "গোটৰ নাম"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "নমস্কাৰ!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "ঘৰ"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "মই নিশ্চিত কৰো যে মোৰ বয়স ১৮ বছৰতকৈ অধিক।"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "নিষ্ক্ৰিয়"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "অদৃশ্য"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "আপোনাৰ সকলো বন্ধুবৰ্গক নিমন্ত্ৰণ কৰক, কিছুমান শীতল বট, আৰু এটা ডাঙৰ পাৰ্টি দিয়ক।"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "বৰ্তমানলৈ জাঁপ দিয়ক"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "আৰম্ভণিলৈ জঁপিয়াওক"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "শেহতীয়া"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "গোট এৰি যাওক"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "চাৰ্ভাৰ এৰি যাওক"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "আমাক মতামত দি আমি কেনেকৈ আমাৰ এপটো উন্নত কৰিব পাৰোঁ আমাক জনাব।"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "লগইন"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "কেৱল উল্লেখ কৰক"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "বাৰ্তা লোড কৰা হোৱা নাই, জঁপিয়াবলৈ ক্লিক কৰক"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "বাৰ্তা অন্য প্লেটফৰ্মত প্ৰেৰণ কৰা হৈছিল"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "নিস্তব্ধ কৰা হৈছে"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr ""
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "মোৰ একাউণ্ট"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "নতুন পাছৱাৰ্ড"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "একো নাই"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "বন্ধ"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "অফিচিয়েল কমিউনিকেচন"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "অফলাইন"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "আটাইতকৈ পুৰণি"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "অন"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "অনলাইন"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "ছেটিংছ খোলক"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "পাসওয়ার্ড"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "অনুগ্ৰহ কৰি আপোনাৰ ইমেইল প্ৰবিষ্ট কৰক।"
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "গোপনীয়তা নীতি"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "পুনৰুদ্ধাৰ কোড"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "পঞ্জীয়ন কৰক"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "প্ৰাসংগিকতা"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "বন্ধুক আঁতৰাওক"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "উত্তৰ দিয়া হৈছে"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "প্ৰমাণীকৰণ পুনৰ প্ৰেৰণ কৰক"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "পাছৱাৰ্ড ৰিছেট কৰক"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "আপোনাৰ টোকাসমূহত সংৰক্ষণ কৰক"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "সংৰক্ষিত টোকাসমূহ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "এটা ফাইল পঠাইছে"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "বহু কেতা ফাইল পঠিয়াইছে"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "চাৰ্ভাৰৰ বিৱৰণ"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "ছেটিংছ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "কেইবাজনো লোকে টাইপ কৰি আছে…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "দান কৰি প্ৰকল্পটো সমৰ্থন কৰক - ধন্যবাদ!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "সেৱাৰ চৰ্তাৱলী"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "টেক্সট চেনেল"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "এয়া হৈছে আপোনাৰ কথোপকথনৰ আৰম্ভণি।"
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "এয়া হৈছে আপোনাৰ টোকাবোৰৰ আৰম্ভণি।"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "ব্যৱহাৰকাৰীক আনব্লক কৰক"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "আপোনাৰ ছেটিংছ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "ব্যৱহাৰকাৰীনাম"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "অপুনাৰ একাউণ্ট প্ৰমণিত কৰা হয় আছে…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "পুনৰুদ্ধাৰ কোডসমূহ দৰ্শন কৰক"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "পুৰণি বাৰ্তাসমূহ দৰ্শন কৰা হৈছে"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "ভইচ চেনেল"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "অনুগ্ৰহ কৰি ইয়াক আহিপোৱাৰ বাবে 10 মিনিটলৈকে অনুমতি দিয়ক।"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "স্বাগতম!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "আপুনি ওপৰৰ বাওঁফালে থকা ব্যৱহাৰকাৰী আইকনটো সোঁ-ক্লিক কৰিব পাৰে, বা আপুনি ইতিমধ্যে ঘৰত থাকিলে ইয়াত ক্লিক কৰিব পাৰে।"
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "আপুনি সমস্যাবোৰ প্ৰতিবেদন কৰিব পাৰে আৰু ইয়াত পোনপটীয়াকৈ আমাৰ সৈতে উন্নতিৰ বিষয়ে আলোচনা কৰিব পাৰে।"
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "এই চেনেলত বাৰ্তা প্ৰেৰণ কৰাৰ অনুমতি আপোনাৰ নাই।"
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "অপুনাৰ একাউণ্ট প্ৰমণিত কৰা হয় গইছে!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/az/messages.js b/components/i18n/catalogs/az/messages.js
new file mode 100644
index 0000000..53f1522
--- /dev/null
+++ b/components/i18n/catalogs/az/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Səssiz\"],\"+YFgJi\":[\"Nişanlar\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Oxundu kimi qeyd edin\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Yeni bir rol yaradın\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Bütün digər iclaslardan çıxın\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"İnsanların sizi tapa bilməsini istədiyiniz bir istifadəçi adı seçin, bu daha sonra ayarlarda dəyişdirilə bilər.\"],\"/qQDwm\":[\"Dəvət hazırlanır…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Rəy göndərin\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Mesaj kimliyini kopyalayın\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"qrupu tərk et\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Problemləri bildirə və inkişafları birbaşa burada bizimlə müzakirə edə bilərsiniz.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blok edildi\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Yenidən dəvət edilmədikdə yenidən qoşula bilməyəcəksiniz.\"],\"3QuNUr\":[\"Bir neçə nəfər yazır…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Bu istifadəçi ilə artıq dostlar.\"],\"3T8ziB\":[\"Hesab yarat\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"İclaslar\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Ad\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Dilinizi seçin\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Hobbinizə və ya maraqlarınıza əsaslanan bir cəmiyyət tapın.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"istifadəçi adını dəyişdirin\"],\"5dJK4M\":[\"Rollar\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Baxış\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Oflayn\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"İstifadəçi\"],\"7SU2U9\":[\"Server kimliyini kopyalayın\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Uyğunluq\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"İstifadəçi adı\"],\"7vhWI8\":[\"Yeni Şifrə\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Serveri idarə edin\"],\"8FE4JE\":[\"Autentifikator tətbiqini aktivləşdirin\"],\"8VGnad\":[\"Bərpa Kodları Yarat\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Şifrə\"],\"8aTiea\":[\"Fərdiləşdirmə\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"İstədiyiniz istifadəçi adını daxil edin.\"],\"9D85wC\":[\"İstifadəçi identifikatorunu kopyalayın\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"İcazələr\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"qadağa\"],\"9nffag\":[\"Köhnə mesajlar göstərilir\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"İstifadəçini blokdan çıxarın\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Qrup yaradın\"],\"A9Rhec\":[\"Kanal adı\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Yeni şifrənizi daxil edin.\"],\"AU7IRi\":[\"Mətn Kanalı\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Səs kanalı\"],\"BHsrDx\":[\"Dəvətlər\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesaj başqa platformada göndərildi\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Kanala baxın\"],\"CK7kdd\":[\"Statusu sil\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanal Təsviri\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Mesaj göndər\"],\"CkIs/i\":[\"Üzvləri susdurun\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Hazırkı şifrə\"],\"DDpDsO\":[\"Dəvət kodu\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Rəsmi Əlaqə\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesaj yüklənmədi, tullanmaq üçün klikləyin\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Xüsusiyyət təklifi göndərin\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"At\"],\"EdQY6l\":[\"Yoxdur\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Söhbətlər\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Əlavə göndərildi\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kateqorya yarat\"],\"F1uGNS\":[\"İstifadəçi adlarını idarə edin\"],\"FEr96N\":[\"Mövzu\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Avatarları silin\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Masaüstü Bildirişlərini Aktivləşdir.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Diqqət\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kanal kimliyini kopyalayın\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Qarşılıqlı Qruplar\"],\"GhCPk1\":[\"Silinəndən sonra geri qayıtmaq olmaz.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Cari parolunuzu daxil edin.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Sorğunuzu doğrulamaq üçün bir üsul seçin.\"],\"HAKBY9\":[\"Faylları yükləyin\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saxlanılan qeydlər\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Doğrulama mesajını yenidən göndər\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Üzvləri köçürün\"],\"ImOQa9\":[\"Cavab ver\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Birdən çox qoşma göndərildi\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Hesab serverlər silinməyənə və ya köçürülməyənə qədər silinə bilməz\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Fəaliyyəti təsdiqləyin\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Köhnə yeniləmələrə baxın\"],\"JUJmXm\":[\"Lütfən, seçilmiş metoddan istifadə edərək təsdiqləyin.\"],\"JW8mxK\":[\"Qeydlərinizə yazın\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Xoş gəlmisiniz\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Siz həmçinin yuxarı sol küncdəki istifadəçi ikonasına sağ klikləyə və ya artıq evdəsinizsə, sol klikləyə bilərsiniz.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Mesajı silin\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Səslər\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Rəsmi Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Dostluqdan çıxar\"],\"LcET2C\":[\"Gizlilik Siyasəti\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Sizə Təsdiq e-poçtu göndərdik. Zəhmət olmasa 10 dəqiqəyə qədər gözləyin.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Adı\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Buraxın\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Hazırda aktiv bug reportlarına burada baxın.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Rəy bildirərək tətbiqimizi necə inkişaf etdirə biləcəyimizi bizə bildirin.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Hesabınız təsdiqləndi!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Elektron poçt\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Bu kanalda mesaj göndərmək üçün icazəniz yoxdur.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rol adı\"],\"PWOA0E\":[\"Yalnız qeydlər\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Mənbə kodu\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Bu günə qayıdın\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Boş\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Mesajı redaktə edin\"],\"QqoBlW\":[\"Poçtunuzu yoxlayın!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Parolu sıfırla\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Hata İzləyici\"],\"S3bIKF\":[\"Şəxsiyyət sənədini kopyalayın\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Lütfən, autentifikasiya tətbiqinizdə aşağıdakı nişanı skan edin və ya istifadə edin.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Doğrulayıcıyı silin\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Mesajları idarə edin\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Rolları idarə edin\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Parametrlər\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Bütün dostlarınızı, bəzi sərin Botları dəvət edin və böyük bir qonaqlıq verin.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Dəyişdirmək Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesaj göndərildi\"],\"VJScHU\":[\"Səbəb\"],\"VKsaTi\":[\"cavab verilir\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Mətni kopyalayın\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Hesabınızı yoxlamaq…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Xarici linkər təhlükəli ola bilər!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Müştəri parametrləri\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator tətbiqi\"],\"YcVBkL\":[\"Mesaj alındı\"],\"YirHq7\":[\"Əlaqə\"],\"YlFpiA\":[\"Doğrulamaq alınmadı!\"],\"Yp+Hi/\":[\"Parametrləri aç\"],\"Z5HWHd\":[\"Açıq\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Bərpa kodlarınız\"],\"aAIQg2\":[\"Görünüş\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Bu əməliyyatı geri qaytara bilməzsiniz.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Qapalı\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Hesabı deaktiv edin\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Üzv qadağanlıdır\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Dəvət Edən\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Sil\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ləğv et\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Yeni Bot Yarat\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"istifadəçi adını dəyişdirin\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Görünməz\"],\"ekfzWq\":[\"İstifadəçi parametrləri\"],\"etgedT\":[\"Emojilər\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Dəvət yarat\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Qeydiyyatdan keçin\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"İstəyi ləğv edin\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Kanal yaradın\"],\"gkmjYT\":[\"Serverdən ayrıl\"],\"go1IWB\":[\"Bu istifadəçi sizi blok edib.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Kanalı sil\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"E-poçtunuzu daxil edin.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Yaradın\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Ana səhifə\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Bəhs edin\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Giriş səyfəsinə geri qayıt\"],\"jpJ5AL\":[\"Bərpa kodu\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profil\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Xoşgəldiniz!\"],\"knjY+b\":[\"Daha sonra yenidən aça bilərsiniz, lakin hər iki tərəfdə yox olacaq.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dost əlavə edin\"],\"lSGjX7\":[\"İstifadəçi Zəngə qatıldı\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanallar\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Qrup Adı\"],\"mAYvqA\":[\"Salam!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Dəstək xidməti ilə əlaqə saxlamadığınız halda hesabınıza giriş edə bilməyəcəksiniz - lakin məlumatlarınız silinməyəcək.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Xüsusi status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Qarşılıqlı Dostlar\"],\"nbzz1A\":[\"Kodu daxil edin\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Bu, qeydlərinizin başlanğıcıdır.\"],\"o+XJ9D\":[\"Dəyişdirin\"],\"oB4OOq\":[\"Üzvləri qadağan edin\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Onlayn\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"At Üzvləri\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Defolt\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Çıxış\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Başlanğıca geri dön\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"İstifadəçi Sol Axtarış\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mənim Hesabım\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Bütün mesajlar\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 nəfər reaksiya verdi\"],\"rxaY+5\":[\"Narahat Etməyin\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Irəliləşmiş\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Dostlar\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"İstifadəçini bloklayın\"],\"tfDRzk\":[\"Yadda saxla\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Bloklanmış İstifadəçi\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Testerlər serverinə get\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Üzvü atın\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Rolu silin\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Haqqında\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Təsviri\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Layihəni ianə ilə dəstəkləyin - təşəkkür edirəm!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Kimliyi Redaktə Et\"],\"vXIe7J\":[\"Dil\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Lütfən, bunları təhlükəsiz yerdə saxlayın.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mesajlaşma\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Kanala daxil olun\"],\"wL3cK8\":[\"Ən son\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Üzvlər\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"maskarad\"],\"xDAtGP\":[\"Mesaj\"],\"xGVfLh\":[\"Davam edin\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Qadağalar\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Xidmət Şərtləri\"],\"xpgPPI\":[\"Botlərim\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Linki kopyalayın\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ən azı 18 yaşım olduğunu təsdiqləyirəm.\"],\"yDOdwQ\":[\"İstifadəçi İdarəetmə\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Yaxın\"],\"z0hW8A\":[\"Bərpa Kodlarına Bax\"],\"z0t9bb\":[\"Daxil ol\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Tamam\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Bu söhbətinizin başlanğıcıdır.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Ən köhnə\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/az/messages.mjs b/components/i18n/catalogs/az/messages.mjs
new file mode 100644
index 0000000..e8d3829
--- /dev/null
+++ b/components/i18n/catalogs/az/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Səssiz\"],\"+YFgJi\":[\"Nişanlar\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Oxundu kimi qeyd edin\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Yeni bir rol yaradın\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Bütün digər iclaslardan çıxın\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"İnsanların sizi tapa bilməsini istədiyiniz bir istifadəçi adı seçin, bu daha sonra ayarlarda dəyişdirilə bilər.\"],\"/qQDwm\":[\"Dəvət hazırlanır…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Rəy göndərin\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Mesaj kimliyini kopyalayın\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"qrupu tərk et\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Problemləri bildirə və inkişafları birbaşa burada bizimlə müzakirə edə bilərsiniz.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blok edildi\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Yenidən dəvət edilmədikdə yenidən qoşula bilməyəcəksiniz.\"],\"3QuNUr\":[\"Bir neçə nəfər yazır…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Bu istifadəçi ilə artıq dostlar.\"],\"3T8ziB\":[\"Hesab yarat\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"İclaslar\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Ad\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Dilinizi seçin\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Hobbinizə və ya maraqlarınıza əsaslanan bir cəmiyyət tapın.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"istifadəçi adını dəyişdirin\"],\"5dJK4M\":[\"Rollar\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Baxış\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Oflayn\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"İstifadəçi\"],\"7SU2U9\":[\"Server kimliyini kopyalayın\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Uyğunluq\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"İstifadəçi adı\"],\"7vhWI8\":[\"Yeni Şifrə\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Serveri idarə edin\"],\"8FE4JE\":[\"Autentifikator tətbiqini aktivləşdirin\"],\"8VGnad\":[\"Bərpa Kodları Yarat\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Şifrə\"],\"8aTiea\":[\"Fərdiləşdirmə\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"İstədiyiniz istifadəçi adını daxil edin.\"],\"9D85wC\":[\"İstifadəçi identifikatorunu kopyalayın\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"İcazələr\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"qadağa\"],\"9nffag\":[\"Köhnə mesajlar göstərilir\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"İstifadəçini blokdan çıxarın\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Qrup yaradın\"],\"A9Rhec\":[\"Kanal adı\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Yeni şifrənizi daxil edin.\"],\"AU7IRi\":[\"Mətn Kanalı\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Səs kanalı\"],\"BHsrDx\":[\"Dəvətlər\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesaj başqa platformada göndərildi\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Kanala baxın\"],\"CK7kdd\":[\"Statusu sil\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanal Təsviri\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Mesaj göndər\"],\"CkIs/i\":[\"Üzvləri susdurun\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Hazırkı şifrə\"],\"DDpDsO\":[\"Dəvət kodu\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Rəsmi Əlaqə\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesaj yüklənmədi, tullanmaq üçün klikləyin\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Xüsusiyyət təklifi göndərin\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"At\"],\"EdQY6l\":[\"Yoxdur\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Söhbətlər\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Əlavə göndərildi\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kateqorya yarat\"],\"F1uGNS\":[\"İstifadəçi adlarını idarə edin\"],\"FEr96N\":[\"Mövzu\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Avatarları silin\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Masaüstü Bildirişlərini Aktivləşdir.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Diqqət\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kanal kimliyini kopyalayın\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Qarşılıqlı Qruplar\"],\"GhCPk1\":[\"Silinəndən sonra geri qayıtmaq olmaz.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Cari parolunuzu daxil edin.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Sorğunuzu doğrulamaq üçün bir üsul seçin.\"],\"HAKBY9\":[\"Faylları yükləyin\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saxlanılan qeydlər\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Doğrulama mesajını yenidən göndər\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Üzvləri köçürün\"],\"ImOQa9\":[\"Cavab ver\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Birdən çox qoşma göndərildi\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Hesab serverlər silinməyənə və ya köçürülməyənə qədər silinə bilməz\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Fəaliyyəti təsdiqləyin\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Köhnə yeniləmələrə baxın\"],\"JUJmXm\":[\"Lütfən, seçilmiş metoddan istifadə edərək təsdiqləyin.\"],\"JW8mxK\":[\"Qeydlərinizə yazın\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Xoş gəlmisiniz\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Siz həmçinin yuxarı sol küncdəki istifadəçi ikonasına sağ klikləyə və ya artıq evdəsinizsə, sol klikləyə bilərsiniz.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Mesajı silin\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Səslər\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Rəsmi Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Dostluqdan çıxar\"],\"LcET2C\":[\"Gizlilik Siyasəti\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Sizə Təsdiq e-poçtu göndərdik. Zəhmət olmasa 10 dəqiqəyə qədər gözləyin.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Adı\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Buraxın\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Hazırda aktiv bug reportlarına burada baxın.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Rəy bildirərək tətbiqimizi necə inkişaf etdirə biləcəyimizi bizə bildirin.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Hesabınız təsdiqləndi!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Elektron poçt\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Bu kanalda mesaj göndərmək üçün icazəniz yoxdur.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rol adı\"],\"PWOA0E\":[\"Yalnız qeydlər\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Mənbə kodu\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Bu günə qayıdın\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Boş\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Mesajı redaktə edin\"],\"QqoBlW\":[\"Poçtunuzu yoxlayın!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Parolu sıfırla\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Hata İzləyici\"],\"S3bIKF\":[\"Şəxsiyyət sənədini kopyalayın\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Lütfən, autentifikasiya tətbiqinizdə aşağıdakı nişanı skan edin və ya istifadə edin.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Doğrulayıcıyı silin\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Mesajları idarə edin\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Rolları idarə edin\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Parametrlər\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Bütün dostlarınızı, bəzi sərin Botları dəvət edin və böyük bir qonaqlıq verin.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Dəyişdirmək Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesaj göndərildi\"],\"VJScHU\":[\"Səbəb\"],\"VKsaTi\":[\"cavab verilir\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Mətni kopyalayın\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Hesabınızı yoxlamaq…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Xarici linkər təhlükəli ola bilər!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Müştəri parametrləri\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator tətbiqi\"],\"YcVBkL\":[\"Mesaj alındı\"],\"YirHq7\":[\"Əlaqə\"],\"YlFpiA\":[\"Doğrulamaq alınmadı!\"],\"Yp+Hi/\":[\"Parametrləri aç\"],\"Z5HWHd\":[\"Açıq\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Bərpa kodlarınız\"],\"aAIQg2\":[\"Görünüş\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Bu əməliyyatı geri qaytara bilməzsiniz.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Qapalı\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Hesabı deaktiv edin\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Üzv qadağanlıdır\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Dəvət Edən\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Sil\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ləğv et\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Yeni Bot Yarat\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"istifadəçi adını dəyişdirin\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Görünməz\"],\"ekfzWq\":[\"İstifadəçi parametrləri\"],\"etgedT\":[\"Emojilər\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Dəvət yarat\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Qeydiyyatdan keçin\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"İstəyi ləğv edin\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Kanal yaradın\"],\"gkmjYT\":[\"Serverdən ayrıl\"],\"go1IWB\":[\"Bu istifadəçi sizi blok edib.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Kanalı sil\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"E-poçtunuzu daxil edin.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Yaradın\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Ana səhifə\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Bəhs edin\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Giriş səyfəsinə geri qayıt\"],\"jpJ5AL\":[\"Bərpa kodu\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profil\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Xoşgəldiniz!\"],\"knjY+b\":[\"Daha sonra yenidən aça bilərsiniz, lakin hər iki tərəfdə yox olacaq.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dost əlavə edin\"],\"lSGjX7\":[\"İstifadəçi Zəngə qatıldı\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanallar\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Qrup Adı\"],\"mAYvqA\":[\"Salam!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Dəstək xidməti ilə əlaqə saxlamadığınız halda hesabınıza giriş edə bilməyəcəksiniz - lakin məlumatlarınız silinməyəcək.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Xüsusi status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Qarşılıqlı Dostlar\"],\"nbzz1A\":[\"Kodu daxil edin\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Bu, qeydlərinizin başlanğıcıdır.\"],\"o+XJ9D\":[\"Dəyişdirin\"],\"oB4OOq\":[\"Üzvləri qadağan edin\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Onlayn\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"At Üzvləri\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Defolt\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Çıxış\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Başlanğıca geri dön\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"İstifadəçi Sol Axtarış\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mənim Hesabım\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Bütün mesajlar\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 nəfər reaksiya verdi\"],\"rxaY+5\":[\"Narahat Etməyin\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Irəliləşmiş\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Dostlar\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"İstifadəçini bloklayın\"],\"tfDRzk\":[\"Yadda saxla\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Bloklanmış İstifadəçi\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Testerlər serverinə get\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Üzvü atın\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Rolu silin\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Haqqında\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Təsviri\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Layihəni ianə ilə dəstəkləyin - təşəkkür edirəm!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Kimliyi Redaktə Et\"],\"vXIe7J\":[\"Dil\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Lütfən, bunları təhlükəsiz yerdə saxlayın.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mesajlaşma\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Kanala daxil olun\"],\"wL3cK8\":[\"Ən son\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Üzvlər\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"maskarad\"],\"xDAtGP\":[\"Mesaj\"],\"xGVfLh\":[\"Davam edin\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Qadağalar\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Xidmət Şərtləri\"],\"xpgPPI\":[\"Botlərim\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Linki kopyalayın\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ən azı 18 yaşım olduğunu təsdiqləyirəm.\"],\"yDOdwQ\":[\"İstifadəçi İdarəetmə\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Yaxın\"],\"z0hW8A\":[\"Bərpa Kodlarına Bax\"],\"z0t9bb\":[\"Daxil ol\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Tamam\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Bu söhbətinizin başlanğıcıdır.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Ən köhnə\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/az/messages.po b/components/i18n/catalogs/az/messages.po
new file mode 100644
index 0000000..cba7de5
--- /dev/null
+++ b/components/i18n/catalogs/az/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: az\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 nəfər reaksiya verdi"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Haqqında"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Dost əlavə edin"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Irəliləşmiş"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Bütün mesajlar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Bu istifadəçi ilə artıq dostlar."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Görünüş"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authenticator tətbiqi"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Profil"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Nişanlar"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "qadağa"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Üzv qadağanlıdır"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Üzvləri qadağan edin"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Qadağalar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "İstifadəçini bloklayın"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blok edildi"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Bloklanmış İstifadəçi"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Hata İzləyici"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Ləğv et"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "İstəyi ləğv edin"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Hesab serverlər silinməyənə və ya köçürülməyənə qədər silinə bilməz"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Dəyişdirin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Dəyişdirmək Avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "istifadəçi adını dəyişdirin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanal Təsviri"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanal adı"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanallar"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Poçtunuzu yoxlayın!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Statusu sil"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Müştəri parametrləri"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Yaxın"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Fəaliyyəti təsdiqləyin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Davam edin"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Söhbətlər"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kanal kimliyini kopyalayın"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Şəxsiyyət sənədini kopyalayın"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Linki kopyalayın"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Mesaj kimliyini kopyalayın"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Server kimliyini kopyalayın"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Mətni kopyalayın"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "İstifadəçi identifikatorunu kopyalayın"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Yaradın"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Qrup yaradın"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Yeni Bot Yarat"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Yeni bir rol yaradın"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Hesab yarat"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Kateqorya yarat"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Kanal yaradın"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Dəvət yarat"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Hazırkı şifrə"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Xüsusi status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Fərdiləşdirmə"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Defolt"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Sil"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Kanalı sil"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Mesajı silin"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Rolu silin"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Hesabı deaktiv edin"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Narahat Etməyin"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Kimliyi Redaktə Et"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Mesajı redaktə edin"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Elektron poçt"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojilər"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Autentifikator tətbiqini aktivləşdirin"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Masaüstü Bildirişlərini Aktivləşdir."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Yeni şifrənizi daxil edin."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Kanala daxil olun"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Kodu daxil edin"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Cari parolunuzu daxil edin."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "İstədiyiniz istifadəçi adını daxil edin."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Xarici linkər təhlükəli ola bilər!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Doğrulamaq alınmadı!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Əlaqə"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Hobbinizə və ya maraqlarınıza əsaslanan bir cəmiyyət tapın."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Diqqət"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Dostlar"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Bərpa Kodları Yarat"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Dəvət hazırlanır…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Giriş səyfəsinə geri qayıt"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Testerlər serverinə get"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Qrup Adı"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Salam!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Ana səhifə"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Ən azı 18 yaşım olduğunu təsdiqləyirəm."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Boş"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Görünməz"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Bütün dostlarınızı, bəzi sərin Botları dəvət edin və böyük bir qonaqlıq verin."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Dəvət kodu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "istifadəçi adını dəyişdirin"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Dəvət Edən"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Dəvətlər"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Bu günə qayıdın"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Başlanğıca geri dön"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "At"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Üzvü atın"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "At Üzvləri"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Dil"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Ən son"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Buraxın"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "qrupu tərk et"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Serverdən ayrıl"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Rəy bildirərək tətbiqimizi necə inkişaf etdirə biləcəyimizi bizə bildirin."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Çıxış"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Bütün digər iclaslardan çıxın"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Daxil ol"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Mesajları idarə edin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "İstifadəçi adlarını idarə edin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Rolları idarə edin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Serveri idarə edin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Oxundu kimi qeyd edin"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "maskarad"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Üzvlər"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Bəhs edin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Yalnız qeydlər"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Mesaj"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mesaj yüklənmədi, tullanmaq üçün klikləyin"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Mesaj alındı"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mesaj göndərildi"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Mesaj başqa platformada göndərildi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Mesajlaşma"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Üzvləri köçürün"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Üzvləri susdurun"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Səssiz"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Qarşılıqlı Dostlar"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Qarşılıqlı Qruplar"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mənim Hesabım"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Botlərim"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Yeni Şifrə"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Ad"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Yoxdur"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Bildirişlər"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Qapalı"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Rəsmi Əlaqə"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Rəsmi Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Oflayn"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Tamam"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Ən köhnə"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Açıq"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Silinəndən sonra geri qayıtmaq olmaz."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Onlayn"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Parametrləri aç"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Baxış"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Şifrə"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "İcazələr"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "İnsanların sizi tapa bilməsini istədiyiniz bir istifadəçi adı seçin, bu daha sonra ayarlarda dəyişdirilə bilər."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Lütfən, seçilmiş metoddan istifadə edərək təsdiqləyin."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "E-poçtunuzu daxil edin."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Lütfən, bunları təhlükəsiz yerdə saxlayın."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Lütfən, autentifikasiya tətbiqinizdə aşağıdakı nişanı skan edin və ya istifadə edin."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Sorğunuzu doğrulamaq üçün bir üsul seçin."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Gizlilik Siyasəti"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Səbəb"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Bərpa kodu"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Qeydiyyatdan keçin"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Uyğunluq"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Doğrulayıcıyı silin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Avatarları silin"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Dostluqdan çıxar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Cavab ver"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "cavab verilir"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Doğrulama mesajını yenidən göndər"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Parolu sıfırla"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rol adı"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Rollar"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Yadda saxla"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Qeydlərinizə yazın"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Saxlanılan qeydlər"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Dilinizi seçin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Mesaj göndər"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Əlavə göndərildi"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Birdən çox qoşma göndərildi"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Server Təsviri"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Server Adı"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "İclaslar"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Parametrlər"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Bir neçə nəfər yazır…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Səslər"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Mənbə kodu"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Xüsusiyyət təklifi göndərin"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Rəy göndərin"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Layihəni ianə ilə dəstəkləyin - təşəkkür edirəm!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Xidmət Şərtləri"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Mətn Kanalı"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Mövzu"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Bu söhbətinizin başlanğıcıdır."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Bu, qeydlərinizin başlanğıcıdır."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Bu istifadəçi sizi blok edib."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "İstifadəçini blokdan çıxarın"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Faylları yükləyin"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "İstifadəçi"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "İstifadəçi Zəngə qatıldı"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "İstifadəçi Sol Axtarış"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "İstifadəçi İdarəetmə"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "İstifadəçi parametrləri"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "İstifadəçi adı"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Hesabınızı yoxlamaq…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Kanala baxın"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Hazırda aktiv bug reportlarına burada baxın."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Köhnə yeniləmələrə baxın"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Bərpa Kodlarına Bax"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Köhnə mesajlar göstərilir"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Səs kanalı"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Sizə Təsdiq e-poçtu göndərdik. Zəhmət olmasa 10 dəqiqəyə qədər gözləyin."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Xoş gəlmisiniz"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Xoşgəldiniz!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Siz həmçinin yuxarı sol küncdəki istifadəçi ikonasına sağ klikləyə və ya artıq evdəsinizsə, sol klikləyə bilərsiniz."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Daha sonra yenidən aça bilərsiniz, lakin hər iki tərəfdə yox olacaq."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Problemləri bildirə və inkişafları birbaşa burada bizimlə müzakirə edə bilərsiniz."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Bu əməliyyatı geri qaytara bilməzsiniz."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Bu kanalda mesaj göndərmək üçün icazəniz yoxdur."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Dəstək xidməti ilə əlaqə saxlamadığınız halda hesabınıza giriş edə bilməyəcəksiniz - lakin məlumatlarınız silinməyəcək."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Yenidən dəvət edilmədikdə yenidən qoşula bilməyəcəksiniz."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Hesabınız təsdiqləndi!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Bərpa kodlarınız"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/be/messages.js b/components/i18n/catalogs/be/messages.js
new file mode 100644
index 0000000..9fd4156
--- /dev/null
+++ b/components/i18n/catalogs/be/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Заглушаны\"],\"+YFgJi\":[\"Значкі\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Адзначыць як прачытанае\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Стварыць новую ролю\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Выйсці з усіх іншых сеансаў\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Абярыце імя карыстальніка, па якому людзі змогуць знаходзіць вас. Пазней яго можна будзе змяніць у наладах карыстальніка.\"],\"/qQDwm\":[\"Стварэнне запрашэння…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Паскардзіцца на гэта паведамленне\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Адправіць водгук\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Скапіяваць ID паведамлення\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Выйсці з групы\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Тут вы можаце паведаміць аб праблемах і абмеркаваць з намі паляпшэнні.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Заблакіраваныя\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Вы не зможаце далучыцца ізноў, пакуль вас не запросяць паўторна.\"],\"3QuNUr\":[\"Некалькі чалавек пішуць…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Вы ўжо сябруеце з гэтым карыстальнікам.\"],\"3T8ziB\":[\"Стварыць уліковы запіс\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сеансы\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Нікнэйм\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Абярыце мову\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Знайдзіце супольнасць на аснове вашых хобі або інтарэсаў.\"],\"572q5a\":[\"Паскардзіцца на карыстальніка\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Адзначыць як непрачытанае\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Змяняць нікнэйм\"],\"5dJK4M\":[\"Ролі\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Агляд\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Па-за сеткай\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Карыстальнік\"],\"7SU2U9\":[\"Скапіяваць ID сервера\"],\"7VpPHA\":[\"Пацвердзіць\"],\"7dZnmw\":[\"Актуальныя\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Імя карыстальніка\"],\"7vhWI8\":[\"Новы пароль\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Кіраванне серверам\"],\"8FE4JE\":[\"Уключыць праграму для праверкі сапраўднасці\"],\"8VGnad\":[\"Стварыць коды аднаўлення\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Пароль\"],\"8aTiea\":[\"Дапасаванне\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Увядзіце імя карыстальніка, якое вам спадабаецца.\"],\"9D85wC\":[\"Скапіяваць ID карыстальніка\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Скінуць токен\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Дазволы\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Заблакіраваць\"],\"9nffag\":[\"Вы праглядвайце старыя паведамленні\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Разблакіраваць карыстальніка\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Стварыць групу\"],\"A9Rhec\":[\"Назва канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Увядзіце новы пароль.\"],\"AU7IRi\":[\"Тэкставы канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Галасавы канал\"],\"BHsrDx\":[\"Запрашэнні\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Паведамленне было адпраўлена з іншай платформы\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Праглядваць канал\"],\"CK7kdd\":[\"Ачысціць статус\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Апісанне канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Адпраўляць паведамленні\"],\"CkIs/i\":[\"Адключаць мікрафон удзельнікам\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Бягучы пароль\"],\"DDpDsO\":[\"Код запрашэння\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Афіцыйныя зносіны\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Гатова\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Паведамленне не загружана, націсніце для перахода\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Адправіць прапанову\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Выгнаць\"],\"EdQY6l\":[\"Нічога\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Гутаркі\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Адправіў далучэнне\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Стварыць катэгорыю\"],\"F1uGNS\":[\"Кіраваць нікнэймамі\"],\"FEr96N\":[\"Тэма\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Выдаляць аватары\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Уключыць кампутарныя апавяшчэнні\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Сфакусіраваны\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Скапіяваць ID канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Агульныя групы\"],\"GhCPk1\":[\"Пасля выдалення, шляху назад не будзе.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Увядзіце ваш бягучы пароль.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Калі ласка, абярыце спосаб для праверкі сапраўднасці вашага запыту.\"],\"HAKBY9\":[\"Запампоўваць файлы\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Захаваныя нататкі\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Паслаць паўторна\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Перамяшчаць удзельнікаў\"],\"ImOQa9\":[\"Адказаць\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Адправіў некалькі далучэнняў\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Немагчыма выдаліць уліковы запіс, пакуль вашы серверы не выдалены, альбо вы не перадалі іншаму ўдзельніку ролю уладальніка\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Пацвердзіць дзеянне\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Праглядзець старыя абнаўленні\"],\"JUJmXm\":[\"Калі ласка, пацвердзіце гэта дзеянне абраным спосабам.\"],\"JW8mxK\":[\"Захаваць у нататкі\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Сардэчна запрашаем у\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Вы таксама можаце націснуць правай кнопкай мышы на значок карыстальніка ў левым верхнім вуглу, або левай кнопкай мышы, калі вы на дамашняй старонцы.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Выдаліць паведамленне\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Кантэнт парушае адзін ці некалькі законаў\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Гукі\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Афіцыйны сервер\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Выдаліць з сяброў\"],\"LcET2C\":[\"Палітыка прыватнасці\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Мы адправілі вам электронны ліст для пацвяржэння вашага ўліковага запісу. Вы атрымайце яго ня больш, чым праз 10 хвілін.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Назва сервера\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Выйсці\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Паглядзець актыўныя ў бягучы час справаздачы пра памылкі можна тут.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Паведаміце, як мы можам палепшыць нашу праграму, пакінуўшы водгук.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ваш уліковы запіс быў пацверджаны!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Электронная пошта\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"У вас няма дазволу на адпраўленне паведамленняў у гэтым канале.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Скінуць\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Адхіліць запыт сяброўства\"],\"PSP1MZ\":[\"Назва ролі\"],\"PWOA0E\":[\"Толькі згадаванні\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Адпраўляць эмбеды\"],\"PnzsrT\":[\"Зыходны код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Перайсці у канец\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактыўны\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Рэдагаваць паведамленне\"],\"QqoBlW\":[\"Праверце сваю пошту!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Скінуць пароль\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Журнал багаў\"],\"S3bIKF\":[\"Скапіяваць ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Калі ласка, сканіруйце ці скарыстайцеся маркёрам ніжэй у вашай праграме для праверкі сапраўднасці.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Выдаліць праграму для праверкі сапраўднасці\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Кіраванне паведамленнямі\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Кіраванне ролямі\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Налады\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Запрасіце ўсіх сваіх сяброў, крыху крутых ботаў і пачніце вялікую вечарыну.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Змяняць аватар\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Паведамленне адпраўлена\"],\"VJScHU\":[\"Прычына\"],\"VKsaTi\":[\"Адказваючы\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Адключаць удзельнікам гук\"],\"VsHxv+\":[\"Скапіяваць тэкст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Пацвярджэнне вашага ўліковага запісу…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Вонкавыя спасылкі могуць быць небяспечнымі!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Налады кліента\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Праграма для праверкі сапраўднасці\"],\"YcVBkL\":[\"Паведамленне атрымана\"],\"YirHq7\":[\"Зваротная сувязь\"],\"YlFpiA\":[\"Не ўдалося пацвердзіць аккаунт!\"],\"Yp+Hi/\":[\"Адкрыйце налады\"],\"Z5HWHd\":[\"Уключана\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Вашы коды аднаўлення\"],\"aAIQg2\":[\"Знешні выгляд\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Гэта дзеянне нельга адрабіць.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Выключана\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Адключыць уліковы запіс\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Чытаць гісторыю паведамленняў\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Заблакіраваць удзельніка\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Кіраванне дазволамі\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Запрашаючы\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Выдалiць\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Скасаваць\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Стварыць новага бота\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Запрашаць іншых\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Нябачны\"],\"ekfzWq\":[\"Налады карыстальніка\"],\"etgedT\":[\"Эмодзі\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Кіраванне дапасаванням\"],\"fTMMeD\":[\"Стварыць запрашэнне\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Зарэгістравацца\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Адмяніць запыт сяброўства\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Прызначэнне роляў\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Паскардзіцца\"],\"gkBHk/\":[\"Стварыць канал\"],\"gkmjYT\":[\"Выйсці з сервера\"],\"go1IWB\":[\"Гэты карыстальнік заблакіраваў вас.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Выдаліць канал\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Увядзіце ваш электронны адрас.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Стварыць\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Галоўная\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Далучацца\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Згадаць\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Вярнуцца да ўваходу\"],\"jpJ5AL\":[\"Код аднаўлення\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Аватар\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Вітаем!\"],\"knjY+b\":[\"Вы можаце зноў адкрыць яе пазней, але яна знікне з абодвух бакоў.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Дадаць у сябры\"],\"lSGjX7\":[\"Карыстальнік далучыўся да выкліку\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Каналы\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Назва групы\"],\"mAYvqA\":[\"Прывітанне!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Змяніць вашу асобу\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Вы не будзеце мець доступу да ўліковага запісу, пакуль не звернецеся да службы падтрымкі, але вашы дадзеныя не будуць выдалены.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Карыстальніцкі статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Агульныя сябры\"],\"nbzz1A\":[\"Увядзіце код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Гэта пачатак вашых нататак.\"],\"o+XJ9D\":[\"Змяніць\"],\"oB4OOq\":[\"Блакіраваць удзельнікаў\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"У сетцы\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Выганяць удзельнікаў\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Прадвызначаныя\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Выйсці з уліковага запісу\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Перайсці ў пачатак\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Карыстальнік выйшаў з выкліку\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Мой уліковы запіс\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Усе паведамленні\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 чалавек адрэагаваў\"],\"rxaY+5\":[\"Не турбаваць\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Пашыраныя\"],\"t43mBk\":[\"Паскардзіцца на сервер\"],\"tBmnPU\":[\"Сябры\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Кіраванне вэбхукамі\"],\"tdTuUv\":[\"Заблакіраваць карыстальніка\"],\"tfDRzk\":[\"Захаваць\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Заблакіраваны карыстальнік\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Перайсці на сервер тэсціроўшчыкаў\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Выгнаць удзельніка\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Выдаліць ролю\"],\"utrCh2\":[\"Адстраняць удзельнікаў\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Пра нас\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Апісанне сервера\"],\"v1kQyJ\":[\"Вэбхукі\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профіль\"],\"vJum3e\":[\"Падтрымайце праект ахвяраваннем - дзякуй!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Трансліраваць\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Змяніць асобу\"],\"vXIe7J\":[\"Мова\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Калі ласка, захавайце іх ў бяспечным месцы.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Абмен паведамленнямі\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Увайсці ў канал\"],\"wL3cK8\":[\"Апошнія\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Удзельнікі\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскарад\"],\"xDAtGP\":[\"Напісаць\"],\"xGVfLh\":[\"Працягнуць\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Блакіроўкі\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Умовы карыстання\"],\"xpgPPI\":[\"Мае боты\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Прыняць запыт сяброўства\"],\"y1eoq1\":[\"Скапіяваць спасылку\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Я пацвяржаю, што я старэйшы за 18 гадоў.\"],\"yDOdwQ\":[\"Кіраванне карыстальнікамі\"],\"yIBLq8\":[\"Гаварыць\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Закрыць\"],\"z0hW8A\":[\"Праглядзець коды аднаўлення\"],\"z0t9bb\":[\"Увайсці\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ок\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Гэта пачатак вашай размовы.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Старыя\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/be/messages.mjs b/components/i18n/catalogs/be/messages.mjs
new file mode 100644
index 0000000..0570344
--- /dev/null
+++ b/components/i18n/catalogs/be/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Заглушаны\"],\"+YFgJi\":[\"Значкі\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Адзначыць як прачытанае\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Стварыць новую ролю\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Выйсці з усіх іншых сеансаў\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Абярыце імя карыстальніка, па якому людзі змогуць знаходзіць вас. Пазней яго можна будзе змяніць у наладах карыстальніка.\"],\"/qQDwm\":[\"Стварэнне запрашэння…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Паскардзіцца на гэта паведамленне\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Адправіць водгук\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Скапіяваць ID паведамлення\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Выйсці з групы\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Тут вы можаце паведаміць аб праблемах і абмеркаваць з намі паляпшэнні.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Заблакіраваныя\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Вы не зможаце далучыцца ізноў, пакуль вас не запросяць паўторна.\"],\"3QuNUr\":[\"Некалькі чалавек пішуць…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Вы ўжо сябруеце з гэтым карыстальнікам.\"],\"3T8ziB\":[\"Стварыць уліковы запіс\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сеансы\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Нікнэйм\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Абярыце мову\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Знайдзіце супольнасць на аснове вашых хобі або інтарэсаў.\"],\"572q5a\":[\"Паскардзіцца на карыстальніка\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Адзначыць як непрачытанае\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Змяняць нікнэйм\"],\"5dJK4M\":[\"Ролі\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Агляд\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Па-за сеткай\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Карыстальнік\"],\"7SU2U9\":[\"Скапіяваць ID сервера\"],\"7VpPHA\":[\"Пацвердзіць\"],\"7dZnmw\":[\"Актуальныя\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Імя карыстальніка\"],\"7vhWI8\":[\"Новы пароль\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Кіраванне серверам\"],\"8FE4JE\":[\"Уключыць праграму для праверкі сапраўднасці\"],\"8VGnad\":[\"Стварыць коды аднаўлення\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Пароль\"],\"8aTiea\":[\"Дапасаванне\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Увядзіце імя карыстальніка, якое вам спадабаецца.\"],\"9D85wC\":[\"Скапіяваць ID карыстальніка\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Скінуць токен\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Дазволы\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Заблакіраваць\"],\"9nffag\":[\"Вы праглядвайце старыя паведамленні\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Разблакіраваць карыстальніка\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Стварыць групу\"],\"A9Rhec\":[\"Назва канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Увядзіце новы пароль.\"],\"AU7IRi\":[\"Тэкставы канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Галасавы канал\"],\"BHsrDx\":[\"Запрашэнні\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Паведамленне было адпраўлена з іншай платформы\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Праглядваць канал\"],\"CK7kdd\":[\"Ачысціць статус\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Апісанне канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Адпраўляць паведамленні\"],\"CkIs/i\":[\"Адключаць мікрафон удзельнікам\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Бягучы пароль\"],\"DDpDsO\":[\"Код запрашэння\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Афіцыйныя зносіны\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Гатова\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Паведамленне не загружана, націсніце для перахода\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Адправіць прапанову\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Выгнаць\"],\"EdQY6l\":[\"Нічога\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Гутаркі\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Адправіў далучэнне\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Стварыць катэгорыю\"],\"F1uGNS\":[\"Кіраваць нікнэймамі\"],\"FEr96N\":[\"Тэма\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Выдаляць аватары\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Уключыць кампутарныя апавяшчэнні\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Сфакусіраваны\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Скапіяваць ID канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Агульныя групы\"],\"GhCPk1\":[\"Пасля выдалення, шляху назад не будзе.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Увядзіце ваш бягучы пароль.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Калі ласка, абярыце спосаб для праверкі сапраўднасці вашага запыту.\"],\"HAKBY9\":[\"Запампоўваць файлы\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Захаваныя нататкі\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Паслаць паўторна\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Перамяшчаць удзельнікаў\"],\"ImOQa9\":[\"Адказаць\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Адправіў некалькі далучэнняў\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Немагчыма выдаліць уліковы запіс, пакуль вашы серверы не выдалены, альбо вы не перадалі іншаму ўдзельніку ролю уладальніка\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Пацвердзіць дзеянне\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Праглядзець старыя абнаўленні\"],\"JUJmXm\":[\"Калі ласка, пацвердзіце гэта дзеянне абраным спосабам.\"],\"JW8mxK\":[\"Захаваць у нататкі\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Сардэчна запрашаем у\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Вы таксама можаце націснуць правай кнопкай мышы на значок карыстальніка ў левым верхнім вуглу, або левай кнопкай мышы, калі вы на дамашняй старонцы.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Выдаліць паведамленне\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Кантэнт парушае адзін ці некалькі законаў\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Гукі\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Афіцыйны сервер\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Выдаліць з сяброў\"],\"LcET2C\":[\"Палітыка прыватнасці\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Мы адправілі вам электронны ліст для пацвяржэння вашага ўліковага запісу. Вы атрымайце яго ня больш, чым праз 10 хвілін.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Назва сервера\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Выйсці\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Паглядзець актыўныя ў бягучы час справаздачы пра памылкі можна тут.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Паведаміце, як мы можам палепшыць нашу праграму, пакінуўшы водгук.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ваш уліковы запіс быў пацверджаны!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Электронная пошта\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"У вас няма дазволу на адпраўленне паведамленняў у гэтым канале.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Скінуць\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Адхіліць запыт сяброўства\"],\"PSP1MZ\":[\"Назва ролі\"],\"PWOA0E\":[\"Толькі згадаванні\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Адпраўляць эмбеды\"],\"PnzsrT\":[\"Зыходны код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Перайсці у канец\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактыўны\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Рэдагаваць паведамленне\"],\"QqoBlW\":[\"Праверце сваю пошту!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Скінуць пароль\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Журнал багаў\"],\"S3bIKF\":[\"Скапіяваць ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Калі ласка, сканіруйце ці скарыстайцеся маркёрам ніжэй у вашай праграме для праверкі сапраўднасці.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Выдаліць праграму для праверкі сапраўднасці\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Кіраванне паведамленнямі\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Кіраванне ролямі\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Налады\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Запрасіце ўсіх сваіх сяброў, крыху крутых ботаў і пачніце вялікую вечарыну.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Змяняць аватар\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Паведамленне адпраўлена\"],\"VJScHU\":[\"Прычына\"],\"VKsaTi\":[\"Адказваючы\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Адключаць удзельнікам гук\"],\"VsHxv+\":[\"Скапіяваць тэкст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Пацвярджэнне вашага ўліковага запісу…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Вонкавыя спасылкі могуць быць небяспечнымі!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Налады кліента\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Праграма для праверкі сапраўднасці\"],\"YcVBkL\":[\"Паведамленне атрымана\"],\"YirHq7\":[\"Зваротная сувязь\"],\"YlFpiA\":[\"Не ўдалося пацвердзіць аккаунт!\"],\"Yp+Hi/\":[\"Адкрыйце налады\"],\"Z5HWHd\":[\"Уключана\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Вашы коды аднаўлення\"],\"aAIQg2\":[\"Знешні выгляд\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Гэта дзеянне нельга адрабіць.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Выключана\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Адключыць уліковы запіс\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Чытаць гісторыю паведамленняў\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Заблакіраваць удзельніка\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Кіраванне дазволамі\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Запрашаючы\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Выдалiць\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Скасаваць\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Стварыць новага бота\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Запрашаць іншых\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Нябачны\"],\"ekfzWq\":[\"Налады карыстальніка\"],\"etgedT\":[\"Эмодзі\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Кіраванне дапасаванням\"],\"fTMMeD\":[\"Стварыць запрашэнне\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Зарэгістравацца\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Адмяніць запыт сяброўства\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Прызначэнне роляў\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Паскардзіцца\"],\"gkBHk/\":[\"Стварыць канал\"],\"gkmjYT\":[\"Выйсці з сервера\"],\"go1IWB\":[\"Гэты карыстальнік заблакіраваў вас.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Выдаліць канал\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Увядзіце ваш электронны адрас.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Стварыць\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Галоўная\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Далучацца\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Згадаць\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Вярнуцца да ўваходу\"],\"jpJ5AL\":[\"Код аднаўлення\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Аватар\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Вітаем!\"],\"knjY+b\":[\"Вы можаце зноў адкрыць яе пазней, але яна знікне з абодвух бакоў.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Дадаць у сябры\"],\"lSGjX7\":[\"Карыстальнік далучыўся да выкліку\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Каналы\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Назва групы\"],\"mAYvqA\":[\"Прывітанне!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Змяніць вашу асобу\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Вы не будзеце мець доступу да ўліковага запісу, пакуль не звернецеся да службы падтрымкі, але вашы дадзеныя не будуць выдалены.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Карыстальніцкі статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Агульныя сябры\"],\"nbzz1A\":[\"Увядзіце код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Гэта пачатак вашых нататак.\"],\"o+XJ9D\":[\"Змяніць\"],\"oB4OOq\":[\"Блакіраваць удзельнікаў\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"У сетцы\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Выганяць удзельнікаў\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Прадвызначаныя\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Выйсці з уліковага запісу\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Перайсці ў пачатак\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Карыстальнік выйшаў з выкліку\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Мой уліковы запіс\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Усе паведамленні\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 чалавек адрэагаваў\"],\"rxaY+5\":[\"Не турбаваць\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Пашыраныя\"],\"t43mBk\":[\"Паскардзіцца на сервер\"],\"tBmnPU\":[\"Сябры\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Кіраванне вэбхукамі\"],\"tdTuUv\":[\"Заблакіраваць карыстальніка\"],\"tfDRzk\":[\"Захаваць\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Заблакіраваны карыстальнік\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Перайсці на сервер тэсціроўшчыкаў\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Выгнаць удзельніка\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Выдаліць ролю\"],\"utrCh2\":[\"Адстраняць удзельнікаў\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Пра нас\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Апісанне сервера\"],\"v1kQyJ\":[\"Вэбхукі\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профіль\"],\"vJum3e\":[\"Падтрымайце праект ахвяраваннем - дзякуй!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Трансліраваць\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Змяніць асобу\"],\"vXIe7J\":[\"Мова\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Калі ласка, захавайце іх ў бяспечным месцы.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Абмен паведамленнямі\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Увайсці ў канал\"],\"wL3cK8\":[\"Апошнія\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Удзельнікі\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскарад\"],\"xDAtGP\":[\"Напісаць\"],\"xGVfLh\":[\"Працягнуць\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Блакіроўкі\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Умовы карыстання\"],\"xpgPPI\":[\"Мае боты\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Прыняць запыт сяброўства\"],\"y1eoq1\":[\"Скапіяваць спасылку\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Я пацвяржаю, што я старэйшы за 18 гадоў.\"],\"yDOdwQ\":[\"Кіраванне карыстальнікамі\"],\"yIBLq8\":[\"Гаварыць\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Закрыць\"],\"z0hW8A\":[\"Праглядзець коды аднаўлення\"],\"z0t9bb\":[\"Увайсці\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ок\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Гэта пачатак вашай размовы.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Старыя\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/be/messages.po b/components/i18n/catalogs/be/messages.po
new file mode 100644
index 0000000..f1c0fae
--- /dev/null
+++ b/components/i18n/catalogs/be/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: be\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 чалавек адрэагаваў"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Пра нас"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Прыняць запыт сяброўства"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Дадаць у сябры"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Пашыраныя"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Усе паведамленні"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Вы ўжо сябруеце з гэтым карыстальнікам."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Знешні выгляд"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Прызначэнне роляў"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Праграма для праверкі сапраўднасці"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Аватар"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Значкі"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Заблакіраваць"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Заблакіраваць удзельніка"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Блакіраваць удзельнікаў"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Блакіроўкі"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Заблакіраваць карыстальніка"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Заблакіраваныя"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Заблакіраваны карыстальнік"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Бот"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Журнал багаў"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Скасаваць"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Адмяніць запыт сяброўства"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Немагчыма выдаліць уліковы запіс, пакуль вашы серверы не выдалены, альбо вы не перадалі іншаму ўдзельніку ролю уладальніка"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Змяніць"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Змяняць аватар"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Змяняць нікнэйм"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Апісанне канала"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Назва канала"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Каналы"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Праверце сваю пошту!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Ачысціць статус"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Налады кліента"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Закрыць"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Пацвердзіць"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Пацвердзіць дзеянне"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Далучацца"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Кантэнт парушае адзін ці некалькі законаў"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Працягнуць"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Гутаркі"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Скапіяваць ID канала"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Скапіяваць ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Скапіяваць спасылку"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Скапіяваць ID паведамлення"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Скапіяваць ID сервера"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Скапіяваць тэкст"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Скапіяваць ID карыстальніка"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Стварыць"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Стварыць групу"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Стварыць новага бота"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Стварыць новую ролю"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Стварыць уліковы запіс"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Стварыць катэгорыю"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Стварыць канал"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Стварыць запрашэнне"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Бягучы пароль"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Карыстальніцкі статус"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Дапасаванне"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Адключаць удзельнікам гук"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Прадвызначаныя"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Выдалiць"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Выдаліць канал"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Выдаліць паведамленне"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Выдаліць ролю"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Адключыць уліковы запіс"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Не турбаваць"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Гатова"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Змяніць асобу"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Рэдагаваць паведамленне"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Змяніць вашу асобу"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Электронная пошта"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Эмодзі"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Уключыць праграму для праверкі сапраўднасці"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Уключыць кампутарныя апавяшчэнні"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Увядзіце новы пароль."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Увайсці ў канал"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Увядзіце код"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Увядзіце ваш бягучы пароль."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Увядзіце імя карыстальніка, якое вам спадабаецца."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Вонкавыя спасылкі могуць быць небяспечнымі!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Не ўдалося пацвердзіць аккаунт!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Зваротная сувязь"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Знайдзіце супольнасць на аснове вашых хобі або інтарэсаў."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Сфакусіраваны"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Сябры"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Стварыць коды аднаўлення"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Стварэнне запрашэння…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Вярнуцца да ўваходу"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Перайсці на сервер тэсціроўшчыкаў"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Назва групы"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Прывітанне!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Галоўная"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Я пацвяржаю, што я старэйшы за 18 гадоў."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Неактыўны"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Нябачны"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Запрасіце ўсіх сваіх сяброў, крыху крутых ботаў і пачніце вялікую вечарыну."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Код запрашэння"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Запрашаць іншых"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Запрашаючы"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Запрашэнні"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Перайсці у канец"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Перайсці ў пачатак"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Выгнаць"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Выгнаць удзельніка"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Выганяць удзельнікаў"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Мова"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Апошнія"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Выйсці"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Выйсці з групы"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Выйсці з сервера"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Паведаміце, як мы можам палепшыць нашу праграму, пакінуўшы водгук."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Выйсці з уліковага запісу"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Выйсці з усіх іншых сеансаў"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Увайсці"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Кіраванне дапасаванням"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Кіраванне паведамленнямі"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Кіраваць нікнэймамі"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Кіраванне дазволамі"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Кіраванне ролямі"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Кіраванне серверам"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Кіраванне вэбхукамі"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Адзначыць як прачытанае"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Адзначыць як непрачытанае"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Маскарад"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Удзельнікі"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Згадаць"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Толькі згадаванні"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Напісаць"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Паведамленне не загружана, націсніце для перахода"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Паведамленне атрымана"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Паведамленне адпраўлена"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Паведамленне было адпраўлена з іншай платформы"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Абмен паведамленнямі"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Перамяшчаць удзельнікаў"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Адключаць мікрафон удзельнікам"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Заглушаны"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Агульныя сябры"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Агульныя групы"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Мой уліковы запіс"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Мае боты"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Новы пароль"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Нікнэйм"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Нічога"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Апавяшчэнні"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Выключана"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Афіцыйныя зносіны"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Афіцыйны сервер"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Па-за сеткай"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ок"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Старыя"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Уключана"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Пасля выдалення, шляху назад не будзе."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "У сетцы"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Адкрыйце налады"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Агляд"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Пароль"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Дазволы"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Абярыце імя карыстальніка, па якому людзі змогуць знаходзіць вас. Пазней яго можна будзе змяніць у наладах карыстальніка."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Калі ласка, пацвердзіце гэта дзеянне абраным спосабам."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Увядзіце ваш электронны адрас."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Калі ласка, захавайце іх ў бяспечным месцы."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Калі ласка, сканіруйце ці скарыстайцеся маркёрам ніжэй у вашай праграме для праверкі сапраўднасці."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Калі ласка, абярыце спосаб для праверкі сапраўднасці вашага запыту."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Палітыка прыватнасці"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Профіль"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Чытаць гісторыю паведамленняў"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Прычына"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Код аднаўлення"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Зарэгістравацца"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Адхіліць запыт сяброўства"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Актуальныя"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Выдаліць праграму для праверкі сапраўднасці"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Выдаляць аватары"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Выдаліць з сяброў"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Адказаць"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Адказваючы"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Паскардзіцца"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Паскардзіцца на гэта паведамленне"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Паскардзіцца на сервер"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Паскардзіцца на карыстальніка"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Паслаць паўторна"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Скінуць"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Скінуць пароль"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Скінуць токен"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Назва ролі"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Ролі"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Захаваць"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Захаваць у нататкі"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Захаваныя нататкі"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Абярыце мову"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Адпраўляць эмбеды"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Адпраўляць паведамленні"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Адправіў далучэнне"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Адправіў некалькі далучэнняў"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Апісанне сервера"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Назва сервера"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Сеансы"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Налады"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Некалькі чалавек пішуць…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Гукі"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Зыходны код"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Гаварыць"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Адправіць прапанову"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Адправіць водгук"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Падтрымайце праект ахвяраваннем - дзякуй!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Умовы карыстання"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Тэкставы канал"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Тэма"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Гэта пачатак вашай размовы."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Гэта пачатак вашых нататак."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Гэты карыстальнік заблакіраваў вас."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Адстраняць удзельнікаў"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Разблакіраваць карыстальніка"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Запампоўваць файлы"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Карыстальнік"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Карыстальнік далучыўся да выкліку"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Карыстальнік выйшаў з выкліку"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Кіраванне карыстальнікамі"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Налады карыстальніка"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Імя карыстальніка"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Пацвярджэнне вашага ўліковага запісу…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Трансліраваць"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Праглядваць канал"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Паглядзець актыўныя ў бягучы час справаздачы пра памылкі можна тут."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Праглядзець старыя абнаўленні"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Праглядзець коды аднаўлення"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Вы праглядвайце старыя паведамленні"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Галасавы канал"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Мы адправілі вам электронны ліст для пацвяржэння вашага ўліковага запісу. Вы атрымайце яго ня больш, чым праз 10 хвілін."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Вэбхукі"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Сардэчна запрашаем у"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Вітаем!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Вы таксама можаце націснуць правай кнопкай мышы на значок карыстальніка ў левым верхнім вуглу, або левай кнопкай мышы, калі вы на дамашняй старонцы."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Вы можаце зноў адкрыць яе пазней, але яна знікне з абодвух бакоў."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Тут вы можаце паведаміць аб праблемах і абмеркаваць з намі паляпшэнні."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Гэта дзеянне нельга адрабіць."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "У вас няма дазволу на адпраўленне паведамленняў у гэтым канале."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Вы не будзеце мець доступу да ўліковага запісу, пакуль не звернецеся да службы падтрымкі, але вашы дадзеныя не будуць выдалены."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Вы не зможаце далучыцца ізноў, пакуль вас не запросяць паўторна."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Ваш уліковы запіс быў пацверджаны!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Вашы коды аднаўлення"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/bg/messages.js b/components/i18n/catalogs/bg/messages.js
new file mode 100644
index 0000000..64872ef
--- /dev/null
+++ b/components/i18n/catalogs/bg/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Заглушен\"],\"+YFgJi\":[\"Значки\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Маркиране като прочетено\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Създаване на нова роля\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Изтриване на всички други сесии\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Изберете потребителско име, по което искате хората да ви намират, което може да бъде променено по-късно в настройките.\"],\"/qQDwm\":[\"Генериране на покана…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Изпрати обратна връзка\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Копиране на идентификатора на съобщението\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Излизане от групата\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Можете да докладвате проблеми и да обсъждате подобрения с нас директно тук.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Блокирани\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Няма да можете да се присъедините отново, освен ако не бъдете поканени отново.\"],\"3QuNUr\":[\"Няколко души пишат…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Вече сте приятели с този потребител.\"],\"3T8ziB\":[\"Създай профил\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сесии\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Псевдоним\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Изберете езика си\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Намерете общност въз основа на вашите хобита или интереси.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Маркирай като непрочетено\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Промяна на прякора\"],\"5dJK4M\":[\"Роли\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Общ преглед\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Извън линия\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Потребител\"],\"7SU2U9\":[\"Копиране на идентификатора на сървъра\"],\"7VpPHA\":[\"Потвърди\"],\"7dZnmw\":[\"По съответствие\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Потребителско име\"],\"7vhWI8\":[\"Нова Парола\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Управление на сървъра\"],\"8FE4JE\":[\"Включване на приложението за удостоверяване\"],\"8VGnad\":[\"Генерирай кодове за възстановяване\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Парола\"],\"8aTiea\":[\"Персонализиране\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Въведете Вашето потребителско име.\"],\"9D85wC\":[\"Копиране на потребителския идентификатор\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Права\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Бан\"],\"9nffag\":[\"Преглед на по-стари съобщения\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Отмяна на блокирането на потребител\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Създаване на група\"],\"A9Rhec\":[\"Име на канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Въведете нова парола.\"],\"AU7IRi\":[\"Текстов канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Гласов канал\"],\"BHsrDx\":[\"Покани\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Съобщението бе изпратено от друга платформа\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Преглед на канал\"],\"CK7kdd\":[\"Изчистване на статуса\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Описание на канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Пращане на съобщения\"],\"CkIs/i\":[\"Заглушаване членове\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Текуща парола\"],\"DDpDsO\":[\"Код за покана\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Официална комуникация\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Готово\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Съобщението не зареди, кликни за препращане\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Предложете нова функция\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Изгони\"],\"EdQY6l\":[\"Няма\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Разговори\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Изпрати прикачен файл\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Създаване на категория\"],\"F1uGNS\":[\"Управление на прякори\"],\"FEr96N\":[\"Тема\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Премахване на профилни снимки\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Разрешаване на известията на работния плот.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Фокус\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Копиране на идентификатора на канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Взаимни групи\"],\"GhCPk1\":[\"След изтриването му няма връщане назад.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Въведете текущата си парола.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Моля изберете метод, за да удостоверите вашата заявка.\"],\"HAKBY9\":[\"Качване на файлове\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Запазени бележки\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Пращане отново\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Преместване на членове\"],\"ImOQa9\":[\"Отговор\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Изпратете множество прикачени файлове\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Потвърждаване на действие\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Вижте предишни промени\"],\"JUJmXm\":[\"Моля потвърдете използвайки избрания метод.\"],\"JW8mxK\":[\"Запазете във вашите бележки\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Добре дошли в\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Можете също да щракнете с десния бутон върху иконата на потребителя в горния ляв ъгъл или щракнете с левия бутон върху нея, ако вече сте у дома.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Изтриване на съобщението\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Съдържанието не спазва едно или повече правила\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Звуци\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Официялен сървър\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Премахване на приятел\"],\"LcET2C\":[\"Декларация за поверителност\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Изпратихме ти имейл за потвърждаване. Може да отнеме до 10 минути за да пристигне.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Име на сървъра\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Напусни\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Напревете преглед на активните в момента доклади за бъгове тук.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Кажете ни как можем да подобрим нашето приложение, като ни дадете обратна връзка.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Акаунтът ви беше потвърден!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Имейл\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Нямате разрешение да изпращате съобщения в този канал.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Нулиране\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Отхвърляне на заявката\"],\"PSP1MZ\":[\"Име на роля\"],\"PWOA0E\":[\"Само споменавания\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Изпратете embeds\"],\"PnzsrT\":[\"Изходен код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Преминаване към представяне\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Празен\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Редакция на съобщението\"],\"QqoBlW\":[\"Проверете входната си поща!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Променете паролата си\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Преследвач на бъгове\"],\"S3bIKF\":[\"Копиране на идентификатор\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Моля, сканирайте или използвайте токена по-долу във вашето приложение за удостоверяване.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Премахване на аутентификатор\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Управление на съобщенията\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Управление на ролите\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Настройки\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Поканете всичките си приятели, някои страхотни ботове и организирайте голямо парти.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Промяна на профилна снимка\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Пратено съобщение\"],\"VJScHU\":[\"Причина\"],\"VKsaTi\":[\"Отговаряйки на\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Оглушавам членове\"],\"VsHxv+\":[\"Копиране на текст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Потвърдете вашият акаунт…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Външните линкове може да са опасни!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Настройки на приложението\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Приложение за удостоверяване\"],\"YcVBkL\":[\"Получено съобщение\"],\"YirHq7\":[\"Обратна връзка\"],\"YlFpiA\":[\"Неуспешна проверка!\"],\"Yp+Hi/\":[\"Отворете настройките\"],\"Z5HWHd\":[\"Включено\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Вашите кодове за възстановяване\"],\"aAIQg2\":[\"Външен вид\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Това действие не може да бъде отменено.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Изключено\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Деактивиране на акаунта ви\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Прочетете историята на съобщенията\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Бан на потребител\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Управлявайте Разрешения\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Поканващ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Изтрий\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Откажете се\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Създай нов бот\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Покани други хора\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидим\"],\"ekfzWq\":[\"Потребителски настройки\"],\"etgedT\":[\"Емоджита\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Управление на персонализирането\"],\"fTMMeD\":[\"Създаване на покана\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Регистриране\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Отмяна на заявката\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Присвояване Роли\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Докладване\"],\"gkBHk/\":[\"Създаване на канала\"],\"gkmjYT\":[\"Излизане от сървъра\"],\"go1IWB\":[\"Този потребител ви е блокирал.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Изтриване на канала\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Моля, въведете Вашия имейл.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Създаване\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Начална страница\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Свържете се\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Спомени\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Върнете се към входната страница\"],\"jpJ5AL\":[\"Код за възстановяване\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Аватар\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добре дошли!\"],\"knjY+b\":[\"Можете да го отворите отново по-късно, но той ще изчезне и от двете страни.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Добавяне на приятел\"],\"lSGjX7\":[\"Потребител влезе в гласовия канал\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Канали\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Име на групата\"],\"mAYvqA\":[\"Здравейте!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Редактиране на самоличността ви\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Персонализиран статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Взаимни приятели\"],\"nbzz1A\":[\"Въведете код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Това е началото на вашите бележки.\"],\"o+XJ9D\":[\"Промяна\"],\"oB4OOq\":[\"Бан на потребители\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Онлайн\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Изгонване на потребители\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Роля по подразбиране\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Отпишете се\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Преминете към началото\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Потребител напусна гласовия канал\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Моят акаунт\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Всички съобщения\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 човек реагира\"],\"rxaY+5\":[\"Не безпокой\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Приятели\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Управлявайте Webhooks\"],\"tdTuUv\":[\"Блокиране на потребител\"],\"tfDRzk\":[\"Запази\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Блокиран потребител\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Отидете на сървъра на тестери\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Изгонване на потребител\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Изтриване на роля\"],\"utrCh2\":[\"Таймаут на потребители\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Относно\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Описание на сървъра\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профил\"],\"vJum3e\":[\"Подкрепете проекта чрез дарение - благодарим ви!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Видео\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Редактиране на идентичността\"],\"vXIe7J\":[\"Език\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Моля запазете тези на сигурно място.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Влезте в канала\"],\"wL3cK8\":[\"Най-нови\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Потребители\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскарад\"],\"xDAtGP\":[\"Прати съобщение\"],\"xGVfLh\":[\"Продължаване\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Банове\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Условия за ползване\"],\"xpgPPI\":[\"Моите ботове\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Копиране на линк\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Потвърждавам, че имам навършени 18 години.\"],\"yDOdwQ\":[\"Членове\"],\"yIBLq8\":[\"говори\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Затвори\"],\"z0hW8A\":[\"Вижте кодовете за възстановяване\"],\"z0t9bb\":[\"Вход\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Продължаване\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Това е началото на вашия разговор.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Най-стари\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/bg/messages.mjs b/components/i18n/catalogs/bg/messages.mjs
new file mode 100644
index 0000000..eb35ac2
--- /dev/null
+++ b/components/i18n/catalogs/bg/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Заглушен\"],\"+YFgJi\":[\"Значки\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Маркиране като прочетено\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Създаване на нова роля\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Изтриване на всички други сесии\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Изберете потребителско име, по което искате хората да ви намират, което може да бъде променено по-късно в настройките.\"],\"/qQDwm\":[\"Генериране на покана…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Изпрати обратна връзка\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Копиране на идентификатора на съобщението\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Излизане от групата\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Можете да докладвате проблеми и да обсъждате подобрения с нас директно тук.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Блокирани\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Няма да можете да се присъедините отново, освен ако не бъдете поканени отново.\"],\"3QuNUr\":[\"Няколко души пишат…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Вече сте приятели с този потребител.\"],\"3T8ziB\":[\"Създай профил\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сесии\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Псевдоним\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Изберете езика си\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Намерете общност въз основа на вашите хобита или интереси.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Маркирай като непрочетено\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Промяна на прякора\"],\"5dJK4M\":[\"Роли\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Общ преглед\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Извън линия\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Потребител\"],\"7SU2U9\":[\"Копиране на идентификатора на сървъра\"],\"7VpPHA\":[\"Потвърди\"],\"7dZnmw\":[\"По съответствие\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Потребителско име\"],\"7vhWI8\":[\"Нова Парола\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Управление на сървъра\"],\"8FE4JE\":[\"Включване на приложението за удостоверяване\"],\"8VGnad\":[\"Генерирай кодове за възстановяване\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Парола\"],\"8aTiea\":[\"Персонализиране\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Въведете Вашето потребителско име.\"],\"9D85wC\":[\"Копиране на потребителския идентификатор\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Права\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Бан\"],\"9nffag\":[\"Преглед на по-стари съобщения\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Отмяна на блокирането на потребител\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Създаване на група\"],\"A9Rhec\":[\"Име на канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Въведете нова парола.\"],\"AU7IRi\":[\"Текстов канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Гласов канал\"],\"BHsrDx\":[\"Покани\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Съобщението бе изпратено от друга платформа\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Преглед на канал\"],\"CK7kdd\":[\"Изчистване на статуса\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Описание на канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Пращане на съобщения\"],\"CkIs/i\":[\"Заглушаване членове\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Текуща парола\"],\"DDpDsO\":[\"Код за покана\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Официална комуникация\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Готово\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Съобщението не зареди, кликни за препращане\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Предложете нова функция\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Изгони\"],\"EdQY6l\":[\"Няма\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Разговори\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Изпрати прикачен файл\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Създаване на категория\"],\"F1uGNS\":[\"Управление на прякори\"],\"FEr96N\":[\"Тема\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Премахване на профилни снимки\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Разрешаване на известията на работния плот.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Фокус\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Копиране на идентификатора на канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Взаимни групи\"],\"GhCPk1\":[\"След изтриването му няма връщане назад.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Въведете текущата си парола.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Моля изберете метод, за да удостоверите вашата заявка.\"],\"HAKBY9\":[\"Качване на файлове\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Запазени бележки\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Пращане отново\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Преместване на членове\"],\"ImOQa9\":[\"Отговор\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Изпратете множество прикачени файлове\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Потвърждаване на действие\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Вижте предишни промени\"],\"JUJmXm\":[\"Моля потвърдете използвайки избрания метод.\"],\"JW8mxK\":[\"Запазете във вашите бележки\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Добре дошли в\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Можете също да щракнете с десния бутон върху иконата на потребителя в горния ляв ъгъл или щракнете с левия бутон върху нея, ако вече сте у дома.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Изтриване на съобщението\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Съдържанието не спазва едно или повече правила\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Звуци\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Официялен сървър\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Премахване на приятел\"],\"LcET2C\":[\"Декларация за поверителност\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Изпратихме ти имейл за потвърждаване. Може да отнеме до 10 минути за да пристигне.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Име на сървъра\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Напусни\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Напревете преглед на активните в момента доклади за бъгове тук.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Кажете ни как можем да подобрим нашето приложение, като ни дадете обратна връзка.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Акаунтът ви беше потвърден!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Имейл\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Нямате разрешение да изпращате съобщения в този канал.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Нулиране\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Отхвърляне на заявката\"],\"PSP1MZ\":[\"Име на роля\"],\"PWOA0E\":[\"Само споменавания\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Изпратете embeds\"],\"PnzsrT\":[\"Изходен код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Преминаване към представяне\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Празен\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Редакция на съобщението\"],\"QqoBlW\":[\"Проверете входната си поща!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Променете паролата си\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Преследвач на бъгове\"],\"S3bIKF\":[\"Копиране на идентификатор\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Моля, сканирайте или използвайте токена по-долу във вашето приложение за удостоверяване.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Премахване на аутентификатор\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Управление на съобщенията\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Управление на ролите\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Настройки\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Поканете всичките си приятели, някои страхотни ботове и организирайте голямо парти.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Промяна на профилна снимка\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Пратено съобщение\"],\"VJScHU\":[\"Причина\"],\"VKsaTi\":[\"Отговаряйки на\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Оглушавам членове\"],\"VsHxv+\":[\"Копиране на текст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Потвърдете вашият акаунт…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Външните линкове може да са опасни!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Настройки на приложението\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Приложение за удостоверяване\"],\"YcVBkL\":[\"Получено съобщение\"],\"YirHq7\":[\"Обратна връзка\"],\"YlFpiA\":[\"Неуспешна проверка!\"],\"Yp+Hi/\":[\"Отворете настройките\"],\"Z5HWHd\":[\"Включено\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Вашите кодове за възстановяване\"],\"aAIQg2\":[\"Външен вид\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Това действие не може да бъде отменено.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Изключено\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Деактивиране на акаунта ви\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Прочетете историята на съобщенията\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Бан на потребител\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Управлявайте Разрешения\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Поканващ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Изтрий\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Откажете се\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Създай нов бот\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Покани други хора\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидим\"],\"ekfzWq\":[\"Потребителски настройки\"],\"etgedT\":[\"Емоджита\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Управление на персонализирането\"],\"fTMMeD\":[\"Създаване на покана\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Регистриране\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Отмяна на заявката\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Присвояване Роли\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Докладване\"],\"gkBHk/\":[\"Създаване на канала\"],\"gkmjYT\":[\"Излизане от сървъра\"],\"go1IWB\":[\"Този потребител ви е блокирал.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Изтриване на канала\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Моля, въведете Вашия имейл.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Създаване\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Начална страница\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Свържете се\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Спомени\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Върнете се към входната страница\"],\"jpJ5AL\":[\"Код за възстановяване\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Аватар\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добре дошли!\"],\"knjY+b\":[\"Можете да го отворите отново по-късно, но той ще изчезне и от двете страни.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Добавяне на приятел\"],\"lSGjX7\":[\"Потребител влезе в гласовия канал\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Канали\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Име на групата\"],\"mAYvqA\":[\"Здравейте!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Редактиране на самоличността ви\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Персонализиран статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Взаимни приятели\"],\"nbzz1A\":[\"Въведете код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Това е началото на вашите бележки.\"],\"o+XJ9D\":[\"Промяна\"],\"oB4OOq\":[\"Бан на потребители\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Онлайн\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Изгонване на потребители\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Роля по подразбиране\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Отпишете се\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Преминете към началото\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Потребител напусна гласовия канал\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Моят акаунт\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Всички съобщения\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 човек реагира\"],\"rxaY+5\":[\"Не безпокой\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Приятели\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Управлявайте Webhooks\"],\"tdTuUv\":[\"Блокиране на потребител\"],\"tfDRzk\":[\"Запази\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Блокиран потребител\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Отидете на сървъра на тестери\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Изгонване на потребител\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Изтриване на роля\"],\"utrCh2\":[\"Таймаут на потребители\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Относно\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Описание на сървъра\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профил\"],\"vJum3e\":[\"Подкрепете проекта чрез дарение - благодарим ви!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Видео\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Редактиране на идентичността\"],\"vXIe7J\":[\"Език\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Моля запазете тези на сигурно място.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Влезте в канала\"],\"wL3cK8\":[\"Най-нови\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Потребители\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскарад\"],\"xDAtGP\":[\"Прати съобщение\"],\"xGVfLh\":[\"Продължаване\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Банове\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Условия за ползване\"],\"xpgPPI\":[\"Моите ботове\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Копиране на линк\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Потвърждавам, че имам навършени 18 години.\"],\"yDOdwQ\":[\"Членове\"],\"yIBLq8\":[\"говори\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Затвори\"],\"z0hW8A\":[\"Вижте кодовете за възстановяване\"],\"z0t9bb\":[\"Вход\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Продължаване\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Това е началото на вашия разговор.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Най-стари\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/bg/messages.po b/components/i18n/catalogs/bg/messages.po
new file mode 100644
index 0000000..244a534
--- /dev/null
+++ b/components/i18n/catalogs/bg/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: bg\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 човек реагира"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Относно"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Добавяне на приятел"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Всички съобщения"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Вече сте приятели с този потребител."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Външен вид"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Присвояване Роли"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Приложение за удостоверяване"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Аватар"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Значки"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Бан"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Бан на потребител"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Бан на потребители"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Банове"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Блокиране на потребител"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Блокирани"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Блокиран потребител"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "бот"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Преследвач на бъгове"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Откажете се"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Отмяна на заявката"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Промяна"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Промяна на профилна снимка"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Промяна на прякора"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Описание на канала"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Име на канала"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Канали"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Проверете входната си поща!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Изчистване на статуса"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Настройки на приложението"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Затвори"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Потвърди"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Потвърждаване на действие"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Свържете се"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Съдържанието не спазва едно или повече правила"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Продължаване"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Разговори"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Копиране на идентификатора на канала"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Копиране на идентификатор"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Копиране на линк"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Копиране на идентификатора на съобщението"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Копиране на идентификатора на сървъра"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Копиране на текст"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Копиране на потребителския идентификатор"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Създаване"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Създаване на група"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Създай нов бот"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Създаване на нова роля"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Създай профил"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Създаване на категория"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Създаване на канала"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Създаване на покана"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Текуща парола"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Персонализиран статус"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Персонализиране"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Оглушавам членове"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Роля по подразбиране"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Изтрий"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Изтриване на канала"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Изтриване на съобщението"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Изтриване на роля"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Деактивиране на акаунта ви"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Не безпокой"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Готово"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Редактиране на идентичността"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Редакция на съобщението"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Редактиране на самоличността ви"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Имейл"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Емоджита"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Включване на приложението за удостоверяване"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Разрешаване на известията на работния плот."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Въведете нова парола."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Влезте в канала"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Въведете код"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Въведете текущата си парола."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Въведете Вашето потребителско име."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Външните линкове може да са опасни!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Неуспешна проверка!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Обратна връзка"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Намерете общност въз основа на вашите хобита или интереси."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Фокус"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Приятели"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Генерирай кодове за възстановяване"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Генериране на покана…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Върнете се към входната страница"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Отидете на сървъра на тестери"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Име на групата"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Здравейте!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Начална страница"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Потвърждавам, че имам навършени 18 години."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Празен"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Невидим"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Поканете всичките си приятели, някои страхотни ботове и организирайте голямо парти."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Код за покана"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Покани други хора"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Поканващ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Покани"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Преминаване към представяне"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Преминете към началото"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Изгони"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Изгонване на потребител"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Изгонване на потребители"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Език"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Най-нови"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Напусни"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Излизане от групата"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Излизане от сървъра"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Кажете ни как можем да подобрим нашето приложение, като ни дадете обратна връзка."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Отпишете се"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Изтриване на всички други сесии"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Вход"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Управление на персонализирането"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Управление на съобщенията"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Управление на прякори"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Управлявайте Разрешения"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Управление на ролите"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Управление на сървъра"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Управлявайте Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Маркиране като прочетено"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Маркирай като непрочетено"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Маскарад"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Потребители"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Спомени"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Само споменавания"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Прати съобщение"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Съобщението не зареди, кликни за препращане"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Получено съобщение"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Пратено съобщение"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Съобщението бе изпратено от друга платформа"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Преместване на членове"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Заглушаване членове"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Заглушен"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Взаимни приятели"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Взаимни групи"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Моят акаунт"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Моите ботове"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Нова Парола"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Псевдоним"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Няма"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Известия"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Изключено"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Официална комуникация"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Официялен сървър"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Извън линия"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Продължаване"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Най-стари"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Включено"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "След изтриването му няма връщане назад."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Онлайн"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Отворете настройките"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Общ преглед"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Парола"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Права"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Изберете потребителско име, по което искате хората да ви намират, което може да бъде променено по-късно в настройките."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Моля потвърдете използвайки избрания метод."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Моля, въведете Вашия имейл."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Моля запазете тези на сигурно място."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Моля, сканирайте или използвайте токена по-долу във вашето приложение за удостоверяване."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Моля изберете метод, за да удостоверите вашата заявка."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Декларация за поверителност"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Профил"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Прочетете историята на съобщенията"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Причина"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Код за възстановяване"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Регистриране"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Отхвърляне на заявката"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "По съответствие"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Премахване на аутентификатор"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Премахване на профилни снимки"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Премахване на приятел"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Отговор"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Отговаряйки на"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Докладване"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Пращане отново"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Нулиране"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Променете паролата си"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Име на роля"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Роли"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Запази"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Запазете във вашите бележки"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Запазени бележки"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Изберете езика си"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Изпратете embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Пращане на съобщения"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Изпрати прикачен файл"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Изпратете множество прикачени файлове"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Описание на сървъра"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Име на сървъра"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Сесии"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Настройки"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Няколко души пишат…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Звуци"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Изходен код"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "говори"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Предложете нова функция"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Изпрати обратна връзка"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Подкрепете проекта чрез дарение - благодарим ви!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Условия за ползване"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Текстов канал"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Тема"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Това е началото на вашия разговор."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Това е началото на вашите бележки."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Този потребител ви е блокирал."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Таймаут на потребители"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Отмяна на блокирането на потребител"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Качване на файлове"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Потребител"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Потребител влезе в гласовия канал"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Потребител напусна гласовия канал"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Членове"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Потребителски настройки"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Потребителско име"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Потвърдете вашият акаунт…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Видео"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Преглед на канал"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Напревете преглед на активните в момента доклади за бъгове тук."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Вижте предишни промени"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Вижте кодовете за възстановяване"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Преглед на по-стари съобщения"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Гласов канал"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Изпратихме ти имейл за потвърждаване. Може да отнеме до 10 минути за да пристигне."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Добре дошли в"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Добре дошли!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Можете също да щракнете с десния бутон върху иконата на потребителя в горния ляв ъгъл или щракнете с левия бутон върху нея, ако вече сте у дома."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Можете да го отворите отново по-късно, но той ще изчезне и от двете страни."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Можете да докладвате проблеми и да обсъждате подобрения с нас директно тук."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Това действие не може да бъде отменено."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Нямате разрешение да изпращате съобщения в този канал."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Няма да можете да се присъедините отново, освен ако не бъдете поканени отново."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Акаунтът ви беше потвърден!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Вашите кодове за възстановяване"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/bn/messages.js b/components/i18n/catalogs/bn/messages.js
new file mode 100644
index 0000000..944a286
--- /dev/null
+++ b/components/i18n/catalogs/bn/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"মিউট করা\"],\"+YFgJi\":[\"ব্যাজগুলি\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"পঠিত হিসেবে মার্ক করে রাখুন\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"একটি নতুন রোল তৈরি করুন\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"অন্যান্য সকল সেশন থেকে লগ আউট করুন\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"একটি ইউজারনেম নির্বাচন করুন যার দ্বারা যে কোনো কেউ আপনাকে খুঁজে পেতে পারে, এটি পরে আপনার ইউজার সেটিংসে পরিবর্তন করা যেতে পারে।\"],\"/qQDwm\":[\"আমন্ত্রণ কোড তৈরি করা হচ্ছে…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"মেসেজ রিপোর্ট করুন\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"আপনার মতামত জমা করুন\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"মেসেজ আইডি কপি করুন\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"গ্রুপ ছেড়ে চলে যান\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"আপনি এখানে অ্যাপ সম্পর্কিত যেকোন সমস্যার রিপোর্ট করতে ও অ্যাপের উন্নতি সম্পর্কে আমাদের সঙ্গে সরাসরি আলোচনা করতে পারেন।\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ব্লকড\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"পুনরায় আমন্ত্রিত না হলে আপনি যোগদান করতে পারবেন না।\"],\"3QuNUr\":[\"অনেকে লিখছেন …\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"আপনি ইতিমধ্যেই এই ইউজারের বন্ধু।\"],\"3T8ziB\":[\"একটি অ্যাকাউন্ট তৈরি করুন\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"সেশনগুলো\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"ডাকনাম\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"আপনার ভাষা নির্বাচন করুন\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"আপনার আগ্রহ ও শখ অনুযায়ী সম্প্রদায় (কমিউনিটি) খুঁজুন।\"],\"572q5a\":[\"ইউজারের নামে রিপোর্ট করুন\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"অপঠিত হিসেবে মার্ক করে রাখুন\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"ডাকনাম পরিবর্তন করুন\"],\"5dJK4M\":[\"রোলগুলো\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"ওভারভিউ\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"অফলাইন\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"ইউজার\"],\"7SU2U9\":[\"সার্ভার আইডি কপি করুন\"],\"7VpPHA\":[\"নিশ্চিত করুন\"],\"7dZnmw\":[\"প্রাসঙ্গিক\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ইউজারনেম\"],\"7vhWI8\":[\"নতুন পাসওয়ার্ড\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"সার্ভার পরিচালনা করুন\"],\"8FE4JE\":[\"অথেনটিকেটর অ্যাপ চালু করুন\"],\"8VGnad\":[\"রিকভারি কোডগুলো বের করুন\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"পাসওয়ার্ড\"],\"8aTiea\":[\"কাস্টমাইজেশন\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"আপনার পছন্দের নাম লিখুন।\"],\"9D85wC\":[\"ইউজার আইডি কপি করুন\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"অনুমতিগুলো\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"ব্যান করুন\"],\"9nffag\":[\"আপনি পুরনো মেসেজগুলো দেখছেন\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ইউজারকে আনব্লক করুন\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"একটি গ্রুপ তৈরি করুন\"],\"A9Rhec\":[\"চ্যানেলের নাম\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"একটি নতুন পাসওয়ার্ড লিখুন।\"],\"AU7IRi\":[\"টেক্সট চ্যানেল\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ভয়েস চ্যানেল\"],\"BHsrDx\":[\"আমন্ত্রণগুলো\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"মেসেজটি অন্য প্ল্যাটফর্মে পাঠানো হয়েছে\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"চ্যানেল দেখুন\"],\"CK7kdd\":[\"স্ট্যাটাস মুছুন\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"চ্যানেলের বর্ণনা\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"মেসেজ পাঠান\"],\"CkIs/i\":[\"সদস্যদের মিউট করুন\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"বর্তমান পাসওয়ার্ড\"],\"DDpDsO\":[\"আমন্ত্রণ কোড\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"অফিসিয়াল কমিউনিকেশন\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"হয়ে গেছে\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"মেসেজ লোড হয়নি, ক্লিক করে উপরে চলে যান\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ফিচার সম্পর্কে আপনার মতামত জানান\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"কিক করুন\"],\"EdQY6l\":[\"কিছুই নয়\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"কথোপকথনগুলো\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"একটি ফাইল পাঠানো হয়েছে\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"বিভাগ তৈরি করুন\"],\"F1uGNS\":[\"ডাকনামগুলি পরিচালনা করুন\"],\"FEr96N\":[\"থিম\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"প্রোফাইলের ছবি মুছুন\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"ডেস্কটপ নোটিফিকেশন চালু করুন-\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"ফোকাস\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"চ্যানেল আইডি কপি করুন\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"পারস্পরিক গ্রুপ\"],\"GhCPk1\":[\"একবার এটি মুছে ফেলা হলে, আর ফিরে যাওয়া সম্ভব নয়।\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"আপনার বর্তমান পাসওয়ার্ড লিখুন।\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"আপনার অনুরোধকে প্রমানিত করার জন্য একটি পদ্ধতি বাছুন।\"],\"HAKBY9\":[\"ফাইল আপলোড করুন\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"সেভ করা নোটসগুলো\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"যাচাইকরণ ইমেল আবার পাঠানোর জন্য অনুরোধ করুন\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"সদস্যদের সরান\"],\"ImOQa9\":[\"উত্তর দিন\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"একাধিক ফাইল পাঠানো হয়েছে\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"যতক্ষণ না আপনি আপনার সমস্ত সার্ভার ডিলিট করছেন বা সার্ভারগুলোর মালিকানা হস্তান্তর করছেন, ততক্ষণ আপনি আপনার অ্যাকাউন্ট ডিলিট করতে পারবেন না\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"কার্য নিশ্চিত করুন\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"পুরানো আপডেটগুলি দেখুন\"],\"JUJmXm\":[\"নির্বাচিত পদ্ধতিকে ব্যবহার করে এটি নিশ্চিত করুন।\"],\"JW8mxK\":[\"আপনার নোটসে সেভ করুন\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"স্বাগতম\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"আপনি বাম দিকে থাকা ইউজার আইকনে-ক্লিক করতে পারেন, অথবা আপনি যদি বাড়িতেই থাকেন তবে আপনি বাম ক্লিকও করতে পারেন।\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"মেসেজ মুছুন\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"কনটেন্ট এক বা একাধিক নিয়ম ভাঙছে\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"শব্দ\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"অফিসিয়াল সার্ভার\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"বন্ধুকে মুছে ফেলুন\"],\"LcET2C\":[\"গোপনীয়তা নীতি\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"আমরা আপনাকে যাচাইকরণের একটি জন্য ই-মেইল পাঠিয়েছি। এটি আসার জন্য দয়া করে 10 মিনিট সময় দিন।\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"সার্ভারের নাম\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"চলে যান\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"বর্তমানের সমস্ত সক্রিয় বাগ রিপোর্টগুলো এখানে দেখুন।\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"আপনার মতামত দ্বারা আমাদেরকে জানান যে কিভাবে আমরা আমাদের অ্যাপকে আরো ভালো করতে পারি।\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"আপনার অ্যাকাউন্টকে যাচাই করা হয়ে গেছে!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ই-মেইল\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"এই চ্যানেলে আপনার মেসেজ পাঠানোর অনুমতি নেই।\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"রিসেট করুন\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"রোলের নাম\"],\"PWOA0E\":[\"শুধুমাত্র পিং করা মেসেজগুলো\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"এম্বেড মেসেজ পাঠান\"],\"PnzsrT\":[\"সোর্স কোড\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"বর্তমানের মেসেজগুলোতে ফিরে যান\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"অলস\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"মেসেজকে সম্পাদনা করুন\"],\"QqoBlW\":[\"আপনার মেইল দেখুন!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"পাসওয়ার্ড পুনরায় সেট করুন\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"বাগ ট্র্যাকার\"],\"S3bIKF\":[\"আইডি (ID) কপি করুন\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"দয়া করে স্ক্যান করুন বা আপনার অথেনটিকেটর অ্যাপের দেওয়া টোকেনটি ব্যবহার করুন।\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"অথেনটিকেটর সিস্টেমকে বন্ধ করুন\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"মেসেজ নিয়ন্ত্রণ করুন\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"রোল পরিচালনা করুন\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"সেটিংস\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"আপনার সমস্ত বন্ধুদের আমন্ত্রণ জানান, কিছু দুর্দান্ত বটেদের সার্ভারে যুক্ত করুন, এবং একটি বড় অনুষ্ঠানের আয়োজন করুন।\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"প্রোফাইলের ছবি পরিবর্তন করুন\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"আপনি মেসেজ পাঠিয়েছেন\"],\"VJScHU\":[\"কারণ\"],\"VKsaTi\":[\"উত্তর দিচ্ছেন\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"সদস্যদের ভয়েস চ্যানেলে ব্লক করুন\"],\"VsHxv+\":[\"টেক্সট কপি করুন\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"আপনার অ্যাকাউন্টকে যাচাই করা হচ্ছে…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"বাহ্যিক লিঙ্ক বিপজ্জনক হতে পারে!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ক্লায়েন্ট সেটিংস\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"অথেনটিকেটর অ্যাপ\"],\"YcVBkL\":[\"আপনি মেসেজ পেয়েছেন\"],\"YirHq7\":[\"মতামত\"],\"YlFpiA\":[\"যাচাই করা যায়নি!\"],\"Yp+Hi/\":[\"সেটিংস খুলুন\"],\"Z5HWHd\":[\"চালু করুন\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"আপনার রিকভারি কোডগুলি\"],\"aAIQg2\":[\"রুপ\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"আপনি এই ক্রিয়াটিকে আর আগের অবস্থায় ফিরিয়ে আনতে পারবেন না৷\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"বন্ধ করুন\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"অ্যাকাউন্টকে সাময়িকভাবে নিস্ক্রিয় করুন\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"মেসেজের ইতিহাস পড়ুন\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"সদস্যকে ব্যান করুন\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"অনুমতি পরিচালনা করুন\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"আমন্ত্রক\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"মুছুন\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"বাতিল করুন\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"একটি নতুন বট তৈরি করুন\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"অন্যদের আমন্ত্রণ পাঠান\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"অদৃশ্য\"],\"ekfzWq\":[\"ইউজার সেটিংস\"],\"etgedT\":[\"ইমোজিগুলি\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"কাস্টমাইজেশন পরিচালনা করুন\"],\"fTMMeD\":[\"আমন্ত্রণ লিঙ্ক তৈরি করুন\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"রেজিষ্টার করুন\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"অনুরোধ বাতিল করুন\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"রোলগুলো যোগ করুন\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"রিপোর্ট করুন\"],\"gkBHk/\":[\"চ্যানেল তৈরি করুন\"],\"gkmjYT\":[\"সার্ভার ছেড়ে চলে যান\"],\"go1IWB\":[\"এই ইউজার আপনাকে ব্লক করেছে।\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"চ্যানেল মুছুন\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"দয়া করে আপনার ইমেইল লিখুন।\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"তৈরি করুন\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"বাড়ি\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"নোটিফিকেশন\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"সংযোগ করুন\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"পিং করুন\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"বট\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"লগইনে ফিরে যান\"],\"jpJ5AL\":[\"রিকভারি কোড\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"প্রোফাইলের ছবি\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"আপনাকে স্বাগত জানাই!\"],\"knjY+b\":[\"আপনি পরে এটি আবারও খুলতে পারেন, কিন্তু এটি উভয় পক্ষ থেকে অদৃশ্য হয়ে যাবে।\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"বন্ধু যোগ করুন\"],\"lSGjX7\":[\"ইউজার কলে যুক্ত হয়েছেন\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"চ্যানেলগুলো\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"গ্রুপের নাম\"],\"mAYvqA\":[\"নমস্কার!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"আপনি আমাদের সহায়তা কেন্দ্রের সাথে যোগাযোগ না করা পর্যন্ত আপনার অ্যাকাউন্ট অ্যাক্সেস করতে পারবেন না - তবে, আপনার সমস্ত তথ্যাদি মুছে ফেলা হবে না।\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"কাস্টম স্ট্যাটাস\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"পারস্পরিক বন্ধু\"],\"nbzz1A\":[\"কোডটি দিন\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"এটি আপনার নোটসের সূচনা।\"],\"o+XJ9D\":[\"পরিবর্তন করুন\"],\"oB4OOq\":[\"সদস্যদের ব্যান করুন\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"অনলাইন\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"সদস্যদের কিক করুন\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"ডিফল্ট\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"লগ আউট করুন\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"শুরুতে চলে যান\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"ইউজার কল ছেড়ে চলে গেলেন\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"আমার অ্যাকাউন্ট\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"সমস্ত মেসেজগুলো\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 জন রিয়্যাক্ট করেছেন\"],\"rxaY+5\":[\"বিরক্ত করবেন না\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"সার্ভারের নামে রিপোর্ট করুন\"],\"tBmnPU\":[\"বন্ধুরা\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"ওয়েবহুক (Webhook) পরিচালনা করুন\"],\"tdTuUv\":[\"ইউজারকে ব্লক করুন\"],\"tfDRzk\":[\"সেভ করুন\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ব্লক করা ইউজার\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"পরীক্ষক সার্ভারে যান\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"সদস্যকে কিক করুন\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"রোল মুছে ফেলুন\"],\"utrCh2\":[\"সদস্যদের টাইমআউট করুন\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Revolt সম্পর্কে জানুন\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"সার্ভারের বর্ণনা\"],\"v1kQyJ\":[\"ওয়েবহুকগুলি\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"প্রোফাইল\"],\"vJum3e\":[\"অনুদানের মাধ্যমে আপনি আমাদের সাহায্য করতে পারেন - ধন্যবাদ!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ভিডিও করুন\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"পরিচয় সম্পাদনা করুন\"],\"vXIe7J\":[\"ভাষা\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"দয়া করে এগুলোকে কোনো নিরাপদ স্থানে সেভ করে রাখুন।\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"মেসেজিং\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"চ্যানেলে প্রবেশ করুন\"],\"wL3cK8\":[\"সর্বশেষ\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"সদস্যরা\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ম্যাসকোয়ারেড\"],\"xDAtGP\":[\"মেসেজ করুন\"],\"xGVfLh\":[\"চালিয়ে যান\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"ব্যানগুলো\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Revolt এর সার্ভিসের শর্তাবলী\"],\"xpgPPI\":[\"আমার সমস্ত বট অ্যাপ্লিকেশনগুলো\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"লিঙ্ক কপি করুন\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"আমি নিশ্চিত যে আমার বয়স কমপক্ষে 18 বছর।\"],\"yDOdwQ\":[\"ইউজার ব্যবস্থাপনা\"],\"yIBLq8\":[\"বলুন\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"বন্ধ করুন\"],\"z0hW8A\":[\"রিকভারি কোডগুলো দেখুন\"],\"z0t9bb\":[\"লগইন করুন\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"ঠিক আছে\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"এটি আপনার কথোপকথনের সূচনা।\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"সবথেকে পুরনো\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/bn/messages.mjs b/components/i18n/catalogs/bn/messages.mjs
new file mode 100644
index 0000000..9ceb962
--- /dev/null
+++ b/components/i18n/catalogs/bn/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"মিউট করা\"],\"+YFgJi\":[\"ব্যাজগুলি\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"পঠিত হিসেবে মার্ক করে রাখুন\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"একটি নতুন রোল তৈরি করুন\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"অন্যান্য সকল সেশন থেকে লগ আউট করুন\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"একটি ইউজারনেম নির্বাচন করুন যার দ্বারা যে কোনো কেউ আপনাকে খুঁজে পেতে পারে, এটি পরে আপনার ইউজার সেটিংসে পরিবর্তন করা যেতে পারে।\"],\"/qQDwm\":[\"আমন্ত্রণ কোড তৈরি করা হচ্ছে…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"মেসেজ রিপোর্ট করুন\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"আপনার মতামত জমা করুন\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"মেসেজ আইডি কপি করুন\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"গ্রুপ ছেড়ে চলে যান\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"আপনি এখানে অ্যাপ সম্পর্কিত যেকোন সমস্যার রিপোর্ট করতে ও অ্যাপের উন্নতি সম্পর্কে আমাদের সঙ্গে সরাসরি আলোচনা করতে পারেন।\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ব্লকড\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"পুনরায় আমন্ত্রিত না হলে আপনি যোগদান করতে পারবেন না।\"],\"3QuNUr\":[\"অনেকে লিখছেন …\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"আপনি ইতিমধ্যেই এই ইউজারের বন্ধু।\"],\"3T8ziB\":[\"একটি অ্যাকাউন্ট তৈরি করুন\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"সেশনগুলো\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"ডাকনাম\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"আপনার ভাষা নির্বাচন করুন\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"আপনার আগ্রহ ও শখ অনুযায়ী সম্প্রদায় (কমিউনিটি) খুঁজুন।\"],\"572q5a\":[\"ইউজারের নামে রিপোর্ট করুন\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"অপঠিত হিসেবে মার্ক করে রাখুন\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"ডাকনাম পরিবর্তন করুন\"],\"5dJK4M\":[\"রোলগুলো\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"ওভারভিউ\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"অফলাইন\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"ইউজার\"],\"7SU2U9\":[\"সার্ভার আইডি কপি করুন\"],\"7VpPHA\":[\"নিশ্চিত করুন\"],\"7dZnmw\":[\"প্রাসঙ্গিক\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ইউজারনেম\"],\"7vhWI8\":[\"নতুন পাসওয়ার্ড\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"সার্ভার পরিচালনা করুন\"],\"8FE4JE\":[\"অথেনটিকেটর অ্যাপ চালু করুন\"],\"8VGnad\":[\"রিকভারি কোডগুলো বের করুন\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"পাসওয়ার্ড\"],\"8aTiea\":[\"কাস্টমাইজেশন\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"আপনার পছন্দের নাম লিখুন।\"],\"9D85wC\":[\"ইউজার আইডি কপি করুন\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"অনুমতিগুলো\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"ব্যান করুন\"],\"9nffag\":[\"আপনি পুরনো মেসেজগুলো দেখছেন\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ইউজারকে আনব্লক করুন\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"একটি গ্রুপ তৈরি করুন\"],\"A9Rhec\":[\"চ্যানেলের নাম\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"একটি নতুন পাসওয়ার্ড লিখুন।\"],\"AU7IRi\":[\"টেক্সট চ্যানেল\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ভয়েস চ্যানেল\"],\"BHsrDx\":[\"আমন্ত্রণগুলো\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"মেসেজটি অন্য প্ল্যাটফর্মে পাঠানো হয়েছে\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"চ্যানেল দেখুন\"],\"CK7kdd\":[\"স্ট্যাটাস মুছুন\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"চ্যানেলের বর্ণনা\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"মেসেজ পাঠান\"],\"CkIs/i\":[\"সদস্যদের মিউট করুন\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"বর্তমান পাসওয়ার্ড\"],\"DDpDsO\":[\"আমন্ত্রণ কোড\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"অফিসিয়াল কমিউনিকেশন\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"হয়ে গেছে\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"মেসেজ লোড হয়নি, ক্লিক করে উপরে চলে যান\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ফিচার সম্পর্কে আপনার মতামত জানান\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"কিক করুন\"],\"EdQY6l\":[\"কিছুই নয়\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"কথোপকথনগুলো\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"একটি ফাইল পাঠানো হয়েছে\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"বিভাগ তৈরি করুন\"],\"F1uGNS\":[\"ডাকনামগুলি পরিচালনা করুন\"],\"FEr96N\":[\"থিম\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"প্রোফাইলের ছবি মুছুন\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"ডেস্কটপ নোটিফিকেশন চালু করুন-\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"ফোকাস\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"চ্যানেল আইডি কপি করুন\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"পারস্পরিক গ্রুপ\"],\"GhCPk1\":[\"একবার এটি মুছে ফেলা হলে, আর ফিরে যাওয়া সম্ভব নয়।\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"আপনার বর্তমান পাসওয়ার্ড লিখুন।\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"আপনার অনুরোধকে প্রমানিত করার জন্য একটি পদ্ধতি বাছুন।\"],\"HAKBY9\":[\"ফাইল আপলোড করুন\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"সেভ করা নোটসগুলো\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"যাচাইকরণ ইমেল আবার পাঠানোর জন্য অনুরোধ করুন\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"সদস্যদের সরান\"],\"ImOQa9\":[\"উত্তর দিন\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"একাধিক ফাইল পাঠানো হয়েছে\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"যতক্ষণ না আপনি আপনার সমস্ত সার্ভার ডিলিট করছেন বা সার্ভারগুলোর মালিকানা হস্তান্তর করছেন, ততক্ষণ আপনি আপনার অ্যাকাউন্ট ডিলিট করতে পারবেন না\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"কার্য নিশ্চিত করুন\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"পুরানো আপডেটগুলি দেখুন\"],\"JUJmXm\":[\"নির্বাচিত পদ্ধতিকে ব্যবহার করে এটি নিশ্চিত করুন।\"],\"JW8mxK\":[\"আপনার নোটসে সেভ করুন\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"স্বাগতম\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"আপনি বাম দিকে থাকা ইউজার আইকনে-ক্লিক করতে পারেন, অথবা আপনি যদি বাড়িতেই থাকেন তবে আপনি বাম ক্লিকও করতে পারেন।\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"মেসেজ মুছুন\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"কনটেন্ট এক বা একাধিক নিয়ম ভাঙছে\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"শব্দ\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"অফিসিয়াল সার্ভার\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"বন্ধুকে মুছে ফেলুন\"],\"LcET2C\":[\"গোপনীয়তা নীতি\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"আমরা আপনাকে যাচাইকরণের একটি জন্য ই-মেইল পাঠিয়েছি। এটি আসার জন্য দয়া করে 10 মিনিট সময় দিন।\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"সার্ভারের নাম\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"চলে যান\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"বর্তমানের সমস্ত সক্রিয় বাগ রিপোর্টগুলো এখানে দেখুন।\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"আপনার মতামত দ্বারা আমাদেরকে জানান যে কিভাবে আমরা আমাদের অ্যাপকে আরো ভালো করতে পারি।\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"আপনার অ্যাকাউন্টকে যাচাই করা হয়ে গেছে!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ই-মেইল\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"এই চ্যানেলে আপনার মেসেজ পাঠানোর অনুমতি নেই।\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"রিসেট করুন\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"রোলের নাম\"],\"PWOA0E\":[\"শুধুমাত্র পিং করা মেসেজগুলো\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"এম্বেড মেসেজ পাঠান\"],\"PnzsrT\":[\"সোর্স কোড\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"বর্তমানের মেসেজগুলোতে ফিরে যান\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"অলস\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"মেসেজকে সম্পাদনা করুন\"],\"QqoBlW\":[\"আপনার মেইল দেখুন!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"পাসওয়ার্ড পুনরায় সেট করুন\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"বাগ ট্র্যাকার\"],\"S3bIKF\":[\"আইডি (ID) কপি করুন\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"দয়া করে স্ক্যান করুন বা আপনার অথেনটিকেটর অ্যাপের দেওয়া টোকেনটি ব্যবহার করুন।\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"অথেনটিকেটর সিস্টেমকে বন্ধ করুন\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"মেসেজ নিয়ন্ত্রণ করুন\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"রোল পরিচালনা করুন\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"সেটিংস\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"আপনার সমস্ত বন্ধুদের আমন্ত্রণ জানান, কিছু দুর্দান্ত বটেদের সার্ভারে যুক্ত করুন, এবং একটি বড় অনুষ্ঠানের আয়োজন করুন।\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"প্রোফাইলের ছবি পরিবর্তন করুন\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"আপনি মেসেজ পাঠিয়েছেন\"],\"VJScHU\":[\"কারণ\"],\"VKsaTi\":[\"উত্তর দিচ্ছেন\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"সদস্যদের ভয়েস চ্যানেলে ব্লক করুন\"],\"VsHxv+\":[\"টেক্সট কপি করুন\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"আপনার অ্যাকাউন্টকে যাচাই করা হচ্ছে…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"বাহ্যিক লিঙ্ক বিপজ্জনক হতে পারে!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ক্লায়েন্ট সেটিংস\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"অথেনটিকেটর অ্যাপ\"],\"YcVBkL\":[\"আপনি মেসেজ পেয়েছেন\"],\"YirHq7\":[\"মতামত\"],\"YlFpiA\":[\"যাচাই করা যায়নি!\"],\"Yp+Hi/\":[\"সেটিংস খুলুন\"],\"Z5HWHd\":[\"চালু করুন\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"আপনার রিকভারি কোডগুলি\"],\"aAIQg2\":[\"রুপ\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"আপনি এই ক্রিয়াটিকে আর আগের অবস্থায় ফিরিয়ে আনতে পারবেন না৷\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"বন্ধ করুন\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"অ্যাকাউন্টকে সাময়িকভাবে নিস্ক্রিয় করুন\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"মেসেজের ইতিহাস পড়ুন\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"সদস্যকে ব্যান করুন\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"অনুমতি পরিচালনা করুন\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"আমন্ত্রক\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"মুছুন\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"বাতিল করুন\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"একটি নতুন বট তৈরি করুন\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"অন্যদের আমন্ত্রণ পাঠান\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"অদৃশ্য\"],\"ekfzWq\":[\"ইউজার সেটিংস\"],\"etgedT\":[\"ইমোজিগুলি\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"কাস্টমাইজেশন পরিচালনা করুন\"],\"fTMMeD\":[\"আমন্ত্রণ লিঙ্ক তৈরি করুন\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"রেজিষ্টার করুন\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"অনুরোধ বাতিল করুন\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"রোলগুলো যোগ করুন\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"রিপোর্ট করুন\"],\"gkBHk/\":[\"চ্যানেল তৈরি করুন\"],\"gkmjYT\":[\"সার্ভার ছেড়ে চলে যান\"],\"go1IWB\":[\"এই ইউজার আপনাকে ব্লক করেছে।\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"চ্যানেল মুছুন\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"দয়া করে আপনার ইমেইল লিখুন।\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"তৈরি করুন\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"বাড়ি\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"নোটিফিকেশন\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"সংযোগ করুন\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"পিং করুন\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"বট\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"লগইনে ফিরে যান\"],\"jpJ5AL\":[\"রিকভারি কোড\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"প্রোফাইলের ছবি\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"আপনাকে স্বাগত জানাই!\"],\"knjY+b\":[\"আপনি পরে এটি আবারও খুলতে পারেন, কিন্তু এটি উভয় পক্ষ থেকে অদৃশ্য হয়ে যাবে।\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"বন্ধু যোগ করুন\"],\"lSGjX7\":[\"ইউজার কলে যুক্ত হয়েছেন\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"চ্যানেলগুলো\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"গ্রুপের নাম\"],\"mAYvqA\":[\"নমস্কার!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"আপনি আমাদের সহায়তা কেন্দ্রের সাথে যোগাযোগ না করা পর্যন্ত আপনার অ্যাকাউন্ট অ্যাক্সেস করতে পারবেন না - তবে, আপনার সমস্ত তথ্যাদি মুছে ফেলা হবে না।\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"কাস্টম স্ট্যাটাস\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"পারস্পরিক বন্ধু\"],\"nbzz1A\":[\"কোডটি দিন\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"এটি আপনার নোটসের সূচনা।\"],\"o+XJ9D\":[\"পরিবর্তন করুন\"],\"oB4OOq\":[\"সদস্যদের ব্যান করুন\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"অনলাইন\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"সদস্যদের কিক করুন\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"ডিফল্ট\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"লগ আউট করুন\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"শুরুতে চলে যান\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"ইউজার কল ছেড়ে চলে গেলেন\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"আমার অ্যাকাউন্ট\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"সমস্ত মেসেজগুলো\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 জন রিয়্যাক্ট করেছেন\"],\"rxaY+5\":[\"বিরক্ত করবেন না\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"সার্ভারের নামে রিপোর্ট করুন\"],\"tBmnPU\":[\"বন্ধুরা\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"ওয়েবহুক (Webhook) পরিচালনা করুন\"],\"tdTuUv\":[\"ইউজারকে ব্লক করুন\"],\"tfDRzk\":[\"সেভ করুন\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ব্লক করা ইউজার\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"পরীক্ষক সার্ভারে যান\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"সদস্যকে কিক করুন\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"রোল মুছে ফেলুন\"],\"utrCh2\":[\"সদস্যদের টাইমআউট করুন\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Revolt সম্পর্কে জানুন\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"সার্ভারের বর্ণনা\"],\"v1kQyJ\":[\"ওয়েবহুকগুলি\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"প্রোফাইল\"],\"vJum3e\":[\"অনুদানের মাধ্যমে আপনি আমাদের সাহায্য করতে পারেন - ধন্যবাদ!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ভিডিও করুন\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"পরিচয় সম্পাদনা করুন\"],\"vXIe7J\":[\"ভাষা\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"দয়া করে এগুলোকে কোনো নিরাপদ স্থানে সেভ করে রাখুন।\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"মেসেজিং\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"চ্যানেলে প্রবেশ করুন\"],\"wL3cK8\":[\"সর্বশেষ\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"সদস্যরা\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ম্যাসকোয়ারেড\"],\"xDAtGP\":[\"মেসেজ করুন\"],\"xGVfLh\":[\"চালিয়ে যান\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"ব্যানগুলো\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Revolt এর সার্ভিসের শর্তাবলী\"],\"xpgPPI\":[\"আমার সমস্ত বট অ্যাপ্লিকেশনগুলো\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"লিঙ্ক কপি করুন\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"আমি নিশ্চিত যে আমার বয়স কমপক্ষে 18 বছর।\"],\"yDOdwQ\":[\"ইউজার ব্যবস্থাপনা\"],\"yIBLq8\":[\"বলুন\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"বন্ধ করুন\"],\"z0hW8A\":[\"রিকভারি কোডগুলো দেখুন\"],\"z0t9bb\":[\"লগইন করুন\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"ঠিক আছে\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"এটি আপনার কথোপকথনের সূচনা।\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"সবথেকে পুরনো\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/bn/messages.po b/components/i18n/catalogs/bn/messages.po
new file mode 100644
index 0000000..f313840
--- /dev/null
+++ b/components/i18n/catalogs/bn/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: bn\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 জন রিয়্যাক্ট করেছেন"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Revolt সম্পর্কে জানুন"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "বন্ধু যোগ করুন"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "সমস্ত মেসেজগুলো"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "আপনি ইতিমধ্যেই এই ইউজারের বন্ধু।"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "রুপ"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "রোলগুলো যোগ করুন"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "অথেনটিকেটর অ্যাপ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "প্রোফাইলের ছবি"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "ব্যাজগুলি"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "ব্যান করুন"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "সদস্যকে ব্যান করুন"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "সদস্যদের ব্যান করুন"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "ব্যানগুলো"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "ইউজারকে ব্লক করুন"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "ব্লকড"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "ব্লক করা ইউজার"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "বট"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "বাগ ট্র্যাকার"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "বাতিল করুন"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "অনুরোধ বাতিল করুন"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "যতক্ষণ না আপনি আপনার সমস্ত সার্ভার ডিলিট করছেন বা সার্ভারগুলোর মালিকানা হস্তান্তর করছেন, ততক্ষণ আপনি আপনার অ্যাকাউন্ট ডিলিট করতে পারবেন না"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "পরিবর্তন করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "প্রোফাইলের ছবি পরিবর্তন করুন"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "ডাকনাম পরিবর্তন করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "চ্যানেলের বর্ণনা"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "চ্যানেলের নাম"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "চ্যানেলগুলো"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "আপনার মেইল দেখুন!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "স্ট্যাটাস মুছুন"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "ক্লায়েন্ট সেটিংস"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "বন্ধ করুন"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "নিশ্চিত করুন"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "কার্য নিশ্চিত করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "সংযোগ করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "কনটেন্ট এক বা একাধিক নিয়ম ভাঙছে"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "চালিয়ে যান"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "কথোপকথনগুলো"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "চ্যানেল আইডি কপি করুন"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "আইডি (ID) কপি করুন"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "লিঙ্ক কপি করুন"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "মেসেজ আইডি কপি করুন"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "সার্ভার আইডি কপি করুন"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "টেক্সট কপি করুন"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "ইউজার আইডি কপি করুন"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "তৈরি করুন"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "একটি গ্রুপ তৈরি করুন"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "একটি নতুন বট তৈরি করুন"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "একটি নতুন রোল তৈরি করুন"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "একটি অ্যাকাউন্ট তৈরি করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "বিভাগ তৈরি করুন"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "চ্যানেল তৈরি করুন"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "আমন্ত্রণ লিঙ্ক তৈরি করুন"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "বর্তমান পাসওয়ার্ড"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "কাস্টম স্ট্যাটাস"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "কাস্টমাইজেশন"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "সদস্যদের ভয়েস চ্যানেলে ব্লক করুন"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "ডিফল্ট"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "মুছুন"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "চ্যানেল মুছুন"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "মেসেজ মুছুন"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "রোল মুছে ফেলুন"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "অ্যাকাউন্টকে সাময়িকভাবে নিস্ক্রিয় করুন"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "বিরক্ত করবেন না"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "হয়ে গেছে"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "পরিচয় সম্পাদনা করুন"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "মেসেজকে সম্পাদনা করুন"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "ই-মেইল"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "ইমোজিগুলি"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "অথেনটিকেটর অ্যাপ চালু করুন"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "ডেস্কটপ নোটিফিকেশন চালু করুন-"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "একটি নতুন পাসওয়ার্ড লিখুন।"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "চ্যানেলে প্রবেশ করুন"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "কোডটি দিন"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "আপনার বর্তমান পাসওয়ার্ড লিখুন।"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "আপনার পছন্দের নাম লিখুন।"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "বাহ্যিক লিঙ্ক বিপজ্জনক হতে পারে!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "যাচাই করা যায়নি!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "মতামত"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "আপনার আগ্রহ ও শখ অনুযায়ী সম্প্রদায় (কমিউনিটি) খুঁজুন।"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "ফোকাস"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "বন্ধুরা"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "রিকভারি কোডগুলো বের করুন"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "আমন্ত্রণ কোড তৈরি করা হচ্ছে…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "লগইনে ফিরে যান"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "পরীক্ষক সার্ভারে যান"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "গ্রুপের নাম"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "নমস্কার!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "বাড়ি"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "আমি নিশ্চিত যে আমার বয়স কমপক্ষে 18 বছর।"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "অলস"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "অদৃশ্য"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "আপনার সমস্ত বন্ধুদের আমন্ত্রণ জানান, কিছু দুর্দান্ত বটেদের সার্ভারে যুক্ত করুন, এবং একটি বড় অনুষ্ঠানের আয়োজন করুন।"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "আমন্ত্রণ কোড"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "অন্যদের আমন্ত্রণ পাঠান"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "আমন্ত্রক"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "আমন্ত্রণগুলো"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "বর্তমানের মেসেজগুলোতে ফিরে যান"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "শুরুতে চলে যান"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "কিক করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "সদস্যকে কিক করুন"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "সদস্যদের কিক করুন"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "ভাষা"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "সর্বশেষ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "চলে যান"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "গ্রুপ ছেড়ে চলে যান"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "সার্ভার ছেড়ে চলে যান"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "আপনার মতামত দ্বারা আমাদেরকে জানান যে কিভাবে আমরা আমাদের অ্যাপকে আরো ভালো করতে পারি।"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "লগ আউট করুন"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "অন্যান্য সকল সেশন থেকে লগ আউট করুন"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "লগইন করুন"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "কাস্টমাইজেশন পরিচালনা করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "মেসেজ নিয়ন্ত্রণ করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "ডাকনামগুলি পরিচালনা করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "অনুমতি পরিচালনা করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "রোল পরিচালনা করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "সার্ভার পরিচালনা করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "ওয়েবহুক (Webhook) পরিচালনা করুন"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "পঠিত হিসেবে মার্ক করে রাখুন"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "অপঠিত হিসেবে মার্ক করে রাখুন"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "ম্যাসকোয়ারেড"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "সদস্যরা"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "পিং করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "শুধুমাত্র পিং করা মেসেজগুলো"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "মেসেজ করুন"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "মেসেজ লোড হয়নি, ক্লিক করে উপরে চলে যান"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "আপনি মেসেজ পেয়েছেন"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "আপনি মেসেজ পাঠিয়েছেন"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "মেসেজটি অন্য প্ল্যাটফর্মে পাঠানো হয়েছে"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "মেসেজিং"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "সদস্যদের সরান"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "সদস্যদের মিউট করুন"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "মিউট করা"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "পারস্পরিক বন্ধু"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "পারস্পরিক গ্রুপ"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "আমার অ্যাকাউন্ট"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "আমার সমস্ত বট অ্যাপ্লিকেশনগুলো"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "নতুন পাসওয়ার্ড"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "ডাকনাম"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "কিছুই নয়"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "নোটিফিকেশন"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "বন্ধ করুন"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "অফিসিয়াল কমিউনিকেশন"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "অফিসিয়াল সার্ভার"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "অফলাইন"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "ঠিক আছে"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "সবথেকে পুরনো"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "চালু করুন"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "একবার এটি মুছে ফেলা হলে, আর ফিরে যাওয়া সম্ভব নয়।"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "অনলাইন"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "সেটিংস খুলুন"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "ওভারভিউ"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "পাসওয়ার্ড"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "অনুমতিগুলো"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "একটি ইউজারনেম নির্বাচন করুন যার দ্বারা যে কোনো কেউ আপনাকে খুঁজে পেতে পারে, এটি পরে আপনার ইউজার সেটিংসে পরিবর্তন করা যেতে পারে।"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "নির্বাচিত পদ্ধতিকে ব্যবহার করে এটি নিশ্চিত করুন।"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "দয়া করে আপনার ইমেইল লিখুন।"
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "দয়া করে এগুলোকে কোনো নিরাপদ স্থানে সেভ করে রাখুন।"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "দয়া করে স্ক্যান করুন বা আপনার অথেনটিকেটর অ্যাপের দেওয়া টোকেনটি ব্যবহার করুন।"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "আপনার অনুরোধকে প্রমানিত করার জন্য একটি পদ্ধতি বাছুন।"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "গোপনীয়তা নীতি"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "প্রোফাইল"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "মেসেজের ইতিহাস পড়ুন"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "কারণ"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "রিকভারি কোড"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "রেজিষ্টার করুন"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "প্রাসঙ্গিক"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "অথেনটিকেটর সিস্টেমকে বন্ধ করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "প্রোফাইলের ছবি মুছুন"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "বন্ধুকে মুছে ফেলুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "উত্তর দিন"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "উত্তর দিচ্ছেন"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "রিপোর্ট করুন"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "মেসেজ রিপোর্ট করুন"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "সার্ভারের নামে রিপোর্ট করুন"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "ইউজারের নামে রিপোর্ট করুন"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "যাচাইকরণ ইমেল আবার পাঠানোর জন্য অনুরোধ করুন"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "রিসেট করুন"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "পাসওয়ার্ড পুনরায় সেট করুন"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "রোলের নাম"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "রোলগুলো"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "সেভ করুন"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "আপনার নোটসে সেভ করুন"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "সেভ করা নোটসগুলো"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "আপনার ভাষা নির্বাচন করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "এম্বেড মেসেজ পাঠান"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "মেসেজ পাঠান"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "একটি ফাইল পাঠানো হয়েছে"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "একাধিক ফাইল পাঠানো হয়েছে"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "সার্ভারের বর্ণনা"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "সার্ভারের নাম"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "সেশনগুলো"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "সেটিংস"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "অনেকে লিখছেন …"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "শব্দ"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "সোর্স কোড"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "বলুন"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "ফিচার সম্পর্কে আপনার মতামত জানান"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "আপনার মতামত জমা করুন"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "অনুদানের মাধ্যমে আপনি আমাদের সাহায্য করতে পারেন - ধন্যবাদ!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Revolt এর সার্ভিসের শর্তাবলী"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "টেক্সট চ্যানেল"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "থিম"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "এটি আপনার কথোপকথনের সূচনা।"
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "এটি আপনার নোটসের সূচনা।"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "এই ইউজার আপনাকে ব্লক করেছে।"
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "সদস্যদের টাইমআউট করুন"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "ইউজারকে আনব্লক করুন"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "ফাইল আপলোড করুন"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "ইউজার"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "ইউজার কলে যুক্ত হয়েছেন"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "ইউজার কল ছেড়ে চলে গেলেন"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "ইউজার ব্যবস্থাপনা"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "ইউজার সেটিংস"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "ইউজারনেম"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "আপনার অ্যাকাউন্টকে যাচাই করা হচ্ছে…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "ভিডিও করুন"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "চ্যানেল দেখুন"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "বর্তমানের সমস্ত সক্রিয় বাগ রিপোর্টগুলো এখানে দেখুন।"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "পুরানো আপডেটগুলি দেখুন"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "রিকভারি কোডগুলো দেখুন"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "আপনি পুরনো মেসেজগুলো দেখছেন"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "ভয়েস চ্যানেল"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "আমরা আপনাকে যাচাইকরণের একটি জন্য ই-মেইল পাঠিয়েছি। এটি আসার জন্য দয়া করে 10 মিনিট সময় দিন।"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "ওয়েবহুকগুলি"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "স্বাগতম"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "আপনাকে স্বাগত জানাই!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "আপনি বাম দিকে থাকা ইউজার আইকনে-ক্লিক করতে পারেন, অথবা আপনি যদি বাড়িতেই থাকেন তবে আপনি বাম ক্লিকও করতে পারেন।"
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "আপনি পরে এটি আবারও খুলতে পারেন, কিন্তু এটি উভয় পক্ষ থেকে অদৃশ্য হয়ে যাবে।"
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "আপনি এখানে অ্যাপ সম্পর্কিত যেকোন সমস্যার রিপোর্ট করতে ও অ্যাপের উন্নতি সম্পর্কে আমাদের সঙ্গে সরাসরি আলোচনা করতে পারেন।"
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "আপনি এই ক্রিয়াটিকে আর আগের অবস্থায় ফিরিয়ে আনতে পারবেন না৷"
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "এই চ্যানেলে আপনার মেসেজ পাঠানোর অনুমতি নেই।"
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "আপনি আমাদের সহায়তা কেন্দ্রের সাথে যোগাযোগ না করা পর্যন্ত আপনার অ্যাকাউন্ট অ্যাক্সেস করতে পারবেন না - তবে, আপনার সমস্ত তথ্যাদি মুছে ফেলা হবে না।"
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "পুনরায় আমন্ত্রিত না হলে আপনি যোগদান করতে পারবেন না।"
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "আপনার অ্যাকাউন্টকে যাচাই করা হয়ে গেছে!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "আপনার রিকভারি কোডগুলি"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/bottom/messages.js b/components/i18n/catalogs/bottom/messages.js
new file mode 100644
index 0000000..fb7b32a
--- /dev/null
+++ b/components/i18n/catalogs/bottom/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈\"],\"+YFgJi\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"💖✨✨✨👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"/qQDwm\":[\"💖✨✨,👉👈💖💖,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖🥺,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"3QuNUr\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈💖💖✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"💖✨🥺👉👈💖💖🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨🥺,👉👈\"],\"3T8ziB\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"💖✨✨👉👈💖💖🥺👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"572q5a\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"5dJK4M\":[\"💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"💖✨✨🥺,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"7SU2U9\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"7VpPHA\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈\"],\"7dZnmw\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"7vhWI8\":[\"💖✨✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"8FE4JE\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈\"],\"8VGnad\":[\"💖✨✨,👉👈💖💖,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"8aTiea\":[\"💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"9D85wC\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨👉👈\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"💖✨✨✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈\"],\"9nffag\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"💖✨✨✨🥺👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈\"],\"A9Rhec\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"AU7IRi\":[\"💖✨✨✨,,,,👉👈💖💖,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"💖✨✨✨🥺,👉👈💖💖✨,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"BHsrDx\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"CK7kdd\":[\"💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"CkIs/i\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"DDpDsO\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"💖✨🥺,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,👉👈💖💖👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖🥺,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈\"],\"EdQY6l\":[\"💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈\"],\"F1uGNS\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"FEr96N\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"💖✨✨👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨🥺👉👈\"],\"GhCPk1\":[\"💖✨✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨✨🥺,👉👈\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈✨✨✨✨🥺,👉👈\"],\"HAKBY9\":[\"💖✨✨✨🥺👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"💖✨✨🥺,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"ImOQa9\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺👉👈💖💖,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖👉👈\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"JUJmXm\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"JW8mxK\":[\"💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,,👉👈💖💖,,,,👉👈💖💖✨🥺,👉👈✨✨✨✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,,👉👈💖💖✨🥺👉👈\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"💖✨✨✨,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈\"],\"LcET2C\":[\"💖✨✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨✨,👉👈\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈✨✨✨✨🥺,,,,👉👈✨✨✨✨🥺,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨✨🥺,👉👈\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖👉👈✨✨✨,,,👉👈\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"PSP1MZ\":[\"💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"PWOA0E\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"PnzsrT\":[\"💖✨✨✨,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"💖✨✨,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"💖✨✨,,,👉👈💖💖👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"QqoBlW\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨,,,👉👈\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"S3bIKF\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈✨✨✨✨🥺,👉👈\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈✨✨✨✨🥺,👉👈\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"VJScHU\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"VKsaTi\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"VsHxv+\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"💖✨✨✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖✨✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"💖✨🥺,,,,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,,👉👈\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨,,👉👈💖💖✨,,👉👈\"],\"YcVBkL\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖👉👈\"],\"YirHq7\":[\"💖✨✨👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈\"],\"YlFpiA\":[\"💖✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖✨✨,👉👈✨✨✨,,,👉👈\"],\"Yp+Hi/\":[\"💖✨✨🥺,,,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"Z5HWHd\":[\"💖✨✨🥺,,,,👉👈💖💖✨👉👈\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"aAIQg2\":[\"💖✨🥺👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"ekfzWq\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"etgedT\":[\"💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,👉👈💖💖🥺👉👈💖💖✨🥺👉👈\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"fTMMeD\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖,,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈\"],\"gkBHk/\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"gkmjYT\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"go1IWB\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨✨🥺,👉👈\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"💖✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"💖✨🥺,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"💖✨✨,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈\"],\"jpJ5AL\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,,👉👈\"],\"knjY+b\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"💖✨🥺👉👈💖💖👉👈💖💖👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈\"],\"lSGjX7\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖✨🥺👉👈\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"💖✨✨,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"mAYvqA\":[\"💖✨✨,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈✨✨✨,,,👉👈\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈✨✨✨✨🥺👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"nbzz1A\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"o+XJ9D\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈\"],\"oB4OOq\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"💖✨✨🥺,,,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺,👉👈\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"💖✨✨,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"💖✨✨🥺,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"💖✨🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"✨✨✨✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈\"],\"rxaY+5\":[\"💖✨🥺,,,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,,👉👈\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"💖✨🥺👉👈💖💖👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖👉👈\"],\"t43mBk\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"tBmnPU\":[\"💖✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨🥺,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈\"],\"tdTuUv\":[\"💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"tfDRzk\":[\"💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"💖✨✨,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"utrCh2\":[\"💖✨✨✨,,,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"💖✨🥺👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"v1kQyJ\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"💖✨✨✨👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"vJum3e\":[\"💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖👉👈💖💖✨,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈✨✨✨✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,,👉👈\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨,👉👈\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈\"],\"vXIe7J\":[\"💖✨✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"wL3cK8\":[\"💖✨✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,👉👈\"],\"xDAtGP\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"xGVfLh\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,👉👈💖💖,👉👈\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"💖✨✨✨,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈\"],\"xpgPPI\":[\"💖✨✨🥺,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"y1eoq1\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖🥺,,👉👈\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"💖✨✨,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈✨✨✨✨🥺,,,,👉👈💖🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"yDOdwQ\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"yIBLq8\":[\"💖✨✨✨,,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,👉👈\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺👉👈💖💖,👉👈\"],\"z0hW8A\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"z0t9bb\":[\"💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"💖✨✨🥺,,,,👉👈💖✨✨🥺👉👈\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"💖✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/bottom/messages.mjs b/components/i18n/catalogs/bottom/messages.mjs
new file mode 100644
index 0000000..042c2ab
--- /dev/null
+++ b/components/i18n/catalogs/bottom/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈\"],\"+YFgJi\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"💖✨✨✨👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"/qQDwm\":[\"💖✨✨,👉👈💖💖,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖🥺,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"3QuNUr\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈💖💖✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"💖✨🥺👉👈💖💖🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨🥺,👉👈\"],\"3T8ziB\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"💖✨✨👉👈💖💖🥺👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"572q5a\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"5dJK4M\":[\"💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"💖✨✨🥺,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"7SU2U9\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"7VpPHA\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈\"],\"7dZnmw\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"7vhWI8\":[\"💖✨✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"8FE4JE\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈\"],\"8VGnad\":[\"💖✨✨,👉👈💖💖,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"8aTiea\":[\"💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"9D85wC\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨👉👈\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"💖✨✨✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈\"],\"9nffag\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"💖✨✨✨🥺👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈\"],\"A9Rhec\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"AU7IRi\":[\"💖✨✨✨,,,,👉👈💖💖,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"💖✨✨✨🥺,👉👈💖💖✨,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"BHsrDx\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"CK7kdd\":[\"💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"CkIs/i\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"DDpDsO\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"💖✨🥺,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,👉👈💖💖👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖🥺,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈\"],\"EdQY6l\":[\"💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈\"],\"F1uGNS\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"FEr96N\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"💖✨✨👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨🥺👉👈\"],\"GhCPk1\":[\"💖✨✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨✨🥺,👉👈\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈✨✨✨✨🥺,👉👈\"],\"HAKBY9\":[\"💖✨✨✨🥺👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"💖✨✨🥺,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"ImOQa9\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺👉👈💖💖,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖👉👈\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"JUJmXm\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"JW8mxK\":[\"💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,,👉👈💖💖,,,,👉👈💖💖✨🥺,👉👈✨✨✨✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,,👉👈💖💖✨🥺👉👈\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"💖✨✨✨,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈\"],\"LcET2C\":[\"💖✨✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨✨,👉👈\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈✨✨✨✨🥺,,,,👉👈✨✨✨✨🥺,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨✨🥺,👉👈\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖👉👈✨✨✨,,,👉👈\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"PSP1MZ\":[\"💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"PWOA0E\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"PnzsrT\":[\"💖✨✨✨,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"💖✨✨,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"💖✨✨,,,👉👈💖💖👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"QqoBlW\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨,,,👉👈\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"S3bIKF\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈✨✨✨✨🥺,👉👈\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈✨✨✨✨🥺,👉👈\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"VJScHU\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"VKsaTi\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"VsHxv+\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"💖✨✨✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖✨✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"💖✨🥺,,,,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,,👉👈\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨,,👉👈💖💖✨,,👉👈\"],\"YcVBkL\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖👉👈\"],\"YirHq7\":[\"💖✨✨👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈\"],\"YlFpiA\":[\"💖✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖✨✨,👉👈✨✨✨,,,👉👈\"],\"Yp+Hi/\":[\"💖✨✨🥺,,,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"Z5HWHd\":[\"💖✨✨🥺,,,,👉👈💖💖✨👉👈\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"aAIQg2\":[\"💖✨🥺👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"ekfzWq\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈\"],\"etgedT\":[\"💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,👉👈💖💖🥺👉👈💖💖✨🥺👉👈\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"fTMMeD\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖,,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈\"],\"gkBHk/\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"gkmjYT\":[\"💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"go1IWB\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨✨🥺,👉👈\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"💖✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"💖✨🥺,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"💖✨✨,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈\"],\"jpJ5AL\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,,👉👈\"],\"knjY+b\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"💖✨🥺👉👈💖💖👉👈💖💖👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈\"],\"lSGjX7\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖✨🥺👉👈\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"💖✨✨,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈\"],\"mAYvqA\":[\"💖✨✨,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈✨✨✨,,,👉👈\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈✨✨✨✨🥺👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"nbzz1A\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈\"],\"o+XJ9D\":[\"💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈\"],\"oB4OOq\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"💖✨✨🥺,,,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺,👉👈\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"💖✨✨,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"💖✨✨🥺,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"💖✨🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"✨✨✨✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈\"],\"rxaY+5\":[\"💖✨🥺,,,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,,👉👈\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"💖✨🥺👉👈💖💖👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖👉👈\"],\"t43mBk\":[\"💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"tBmnPU\":[\"💖✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨🥺,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈\"],\"tdTuUv\":[\"💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"tfDRzk\":[\"💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"💖✨✨,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"utrCh2\":[\"💖✨✨✨,,,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"💖✨🥺👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈\"],\"v1kQyJ\":[\"💖✨✨✨🥺,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"💖✨✨✨👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈\"],\"vJum3e\":[\"💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖👉👈💖💖✨,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈✨✨✨✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,,👉👈\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨,👉👈\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈\"],\"vXIe7J\":[\"💖✨✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈\"],\"wL3cK8\":[\"💖✨✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,👉👈\"],\"xDAtGP\":[\"💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈\"],\"xGVfLh\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,👉👈💖💖,👉👈\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺👉👈\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"💖✨✨✨,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈\"],\"xpgPPI\":[\"💖✨✨🥺,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"y1eoq1\":[\"💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖🥺,,👉👈\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"💖✨✨,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈✨✨✨✨🥺,,,,👉👈💖🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈\"],\"yDOdwQ\":[\"💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈\"],\"yIBLq8\":[\"💖✨✨✨,,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,👉👈\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺👉👈💖💖,👉👈\"],\"z0hW8A\":[\"💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈\"],\"z0t9bb\":[\"💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"💖✨✨🥺,,,,👉👈💖✨✨🥺👉👈\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"💖✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/bottom/messages.po b/components/i18n/catalogs/bottom/messages.po
new file mode 100644
index 0000000..ca10c33
--- /dev/null
+++ b/components/i18n/catalogs/bottom/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: bottom\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "✨✨✨✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "💖✨🥺👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "💖✨🥺👉👈💖💖👉👈💖💖👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "💖✨🥺👉👈💖💖👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖👉👈"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "💖✨🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "💖✨🥺👉👈💖💖🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "💖✨🥺👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖,,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨,,👉👈💖💖✨,,👉👈"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "💖✨🥺,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺👉👈💖💖,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖👉👈"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "💖✨🥺,,👉👈💖💖,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨,,,👉👈"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺👉👈💖💖,👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,👉👈💖💖,👉👈"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖🥺,,👉👈"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "💖✨🥺,,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈💖✨🥺,,,👉👈"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "💖✨🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "💖✨🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "💖✨🥺,,,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,,👉👈"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "💖✨🥺,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "💖✨🥺,,,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,👉👈💖💖🥺👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "💖✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "💖✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "💖✨🥺,,,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "💖✨🥺,,,,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,,👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "💖✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖✨✨,👉👈✨✨✨,,,👉👈"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "💖✨✨👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "💖✨✨👉👈💖💖🥺👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "💖✨✨👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "💖✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "💖✨✨,👉👈💖💖,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "💖✨✨,👉👈💖💖,👉👈💖💖✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "💖✨✨,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "💖✨✨,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "💖✨✨,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "💖✨✨,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈✨✨✨,,,👉👈"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "💖✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "💖✨✨,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈✨✨✨✨🥺,,,,👉👈💖🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "💖✨✨,,,👉👈💖💖👉👈💖💖🥺,,,👉👈💖💖,👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "💖✨✨,,,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "💖✨✨,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "💖✨✨,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "💖✨✨🥺👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "💖✨✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "💖✨✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "💖✨✨🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "💖✨✨🥺,👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "💖✨✨🥺,👉👈💖💖✨,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨🥺,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨🥺,,,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖,👉👈💖💖👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖🥺,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖👉👈"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "💖✨✨🥺,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "💖✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "💖✨✨🥺,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "💖✨✨🥺,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "💖✨✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "💖✨✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "💖✨✨🥺,,,,👉👈💖💖,,👉👈💖💖,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "💖✨✨🥺,,,,👉👈💖✨✨🥺👉👈"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "💖✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "💖✨✨🥺,,,,👉👈💖💖✨👉👈"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "💖✨✨🥺,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖,,,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "💖✨✨🥺,,,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "💖✨✨🥺,,,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "💖✨✨🥺,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "💖✨✨✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "💖✨✨✨👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "💖✨✨✨👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖,,👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖👉👈✨✨✨✨🥺,👉👈"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "💖✨✨✨👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨✨,👉👈"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "💖✨✨✨👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,,👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺👉👈💖💖✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖👉👈"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "💖✨✨✨,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨,,,,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖✨👉👈"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "💖✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "💖✨✨✨,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨🥺,,,,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨✨,👉👈💖💖✨,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "💖✨✨✨,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "💖✨✨✨,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "💖✨✨✨,,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,👉👈"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖,👉👈💖💖,👉👈💖💖👉👈💖✨✨✨✨🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "💖✨✨✨,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖🥺,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖👉👈💖💖✨,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈✨✨✨✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,,👉👈"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "💖✨✨✨,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "💖✨✨✨,,,,👉👈💖💖,👉👈💖💖✨✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈"
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "💖✨✨✨,,,,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "💖✨✨✨,,,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨🥺👉👈"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "💖✨✨✨🥺👉👈💖💖✨👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "💖✨✨✨🥺👉👈💖💖✨,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈✨✨✨,,👉👈💖✨✨👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨,,,,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,👉👈💖💖👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨🥺,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈💖💖✨🥺👉👈"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "💖✨✨✨🥺👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "💖✨✨✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖✨✨,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈🫂✨✨🥺,👉👈💖💖✨✨🥺,,,👉👈💖💖💖✨🥺,👉👈"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨🥺,,👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖✨✨✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "💖✨✨✨🥺,👉👈💖💖🥺👉👈💖💖,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖🥺,,,👉👈💖💖👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "💖✨✨✨🥺,👉👈💖💖✨,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨🥺,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "💖✨✨✨🥺,,👉👈💖💖,👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈✨✨✨✨🥺,,,,👉👈✨✨✨✨🥺,,,👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "💖✨✨✨🥺,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨,👉👈💖💖🥺,,👉👈💖💖✨🥺👉👈"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "💖✨✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "💖✨✨✨🥺,,👉👈💖💖,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨,,,👉👈"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨🥺👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,,👉👈💖💖,,,,👉👈💖💖✨🥺,👉👈✨✨✨✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈💖💖✨,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,,👉👈💖💖🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖🥺,,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨🥺,,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖🥺,,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖🥺,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺👉👈💖💖✨,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖✨,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨✨🥺,👉👈"
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖🥺,,,,👉👈💖💖✨,,👉👈💖💖✨,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖👉👈💖💖🥺👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺,👉👈"
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨✨🥺,👉👈"
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖💖🥺👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖,👉👈💖💖✨👉👈💖💖👉👈✨✨✨,,👉👈💖💖🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈💖✨✨✨✨🥺,,👉👈💖💖,,,👉👈💖💖,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖,,,,👉👈💖💖🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨👉👈💖💖✨👉👈💖💖,👉👈💖💖🥺,,,👉👈✨✨✨✨🥺,👉👈"
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖✨🥺👉👈💖💖✨🥺,,👉👈💖💖✨,,👉👈💖💖✨,,👉👈💖💖✨,👉👈💖💖✨,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈✨✨✨✨🥺👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,,👉👈💖💖,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈✨✨✨✨,,,,👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺,👉👈💖✨✨✨✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖🥺👉👈💖💖🥺,,,👉👈💖💖🥺,,,👉👈✨✨✨,,👉👈💖💖✨👉👈💖💖✨,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖👉👈💖💖,👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨🥺,👉👈"
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖💖✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨👉👈✨✨✨🥺,,,,👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖🥺,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨🥺,👉👈💖💖✨,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖💖🥺,👉👈💖💖✨,👉👈💖💖🥺👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖🥺,,,👉👈💖💖,👉👈💖💖✨🥺👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖💖✨✨,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈✨✨✨✨🥺👉👈💖💖🥺👉👈💖💖✨👉👈💖💖✨🥺,,,👉👈💖💖🥺👉👈💖💖✨🥺,👉👈💖💖,👉👈💖💖👉👈✨✨✨✨🥺,👉👈"
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,👉👈💖✨✨✨✨🥺,,,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨👉👈💖💖✨🥺,👉👈✨✨✨,,👉👈💖💖,,,,👉👈💖✨✨✨✨🥺,,👉👈💖💖✨🥺👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,👉👈💖💖,👉👈💖💖,👉👈💖💖✨👉👈✨✨✨,,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖🥺👉👈💖💖,,👉👈💖💖🥺👉👈💖💖,👉👈💖💖👉👈✨✨✨,,,👉👈"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "💖✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,👉👈💖💖✨,,,,👉👈✨✨✨,,👉👈💖💖✨,,,,👉👈💖💖,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖✨🥺,,,👉👈💖💖,👉👈💖💖✨,,,,👉👈💖💖✨✨,👉👈✨✨✨,,👉👈💖✨✨✨✨🥺,,,,👉👈💖💖✨,👉👈💖💖👉👈💖💖,👉👈💖💖✨🥺👉👈"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/br/messages.js b/components/i18n/catalogs/br/messages.js
new file mode 100644
index 0000000..7f494de
--- /dev/null
+++ b/components/i18n/catalogs/br/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Mut\"],\"+YFgJi\":[\"Ardamezoù\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Merkañ evel lennet\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Krouiñ ur perzh nevez\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Digevreañ diouzh an estezioù all\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Diuzit un anv implijer. Gantañ a c'hall tud kavout ho kont. Posupl eo cheñch an anv implijer en arventennoù.\"],\"/qQDwm\":[\"O genel ur pedadenn…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Kinnig un evezhiadenn\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Eilañ an ID ar c'hemennad\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Kuitaat ar strollad\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Amañ a c'hallit aroueziañ ar gudennoù ha kaozeal diwar-benn gwellaenn ganeomp.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Berzet\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ne c'hallit ket dont en-dro hep ur pedadenn nevez.\"],\"3QuNUr\":[\"Kalz tud o skriv…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Dija oc'h mignon gant an implijer-se.\"],\"3T8ziB\":[\"Krouiñ ur gont\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Estezioù\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Lesanv\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Dibab ho yezh\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Kavit ur kumuniezh hervez ho plijadur.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Merkañ evel anlennet\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cheñch ho Lesanv\"],\"5dJK4M\":[\"Perzhioù\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Diverradur\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Ezlinenn\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Implijer\"],\"7SU2U9\":[\"Eilañ an ID ar servijer\"],\"7VpPHA\":[\"Kadarnaat\"],\"7dZnmw\":[\"Reizhidigezh\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Anv Implijer\"],\"7vhWI8\":[\"Ger-tremen nevez\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Merañ ar Servijer\"],\"8FE4JE\":[\"Elumiñ arload dilesadur\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Ger-tremen\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Roit ho anv implijer muiañ-karet.\"],\"9D85wC\":[\"Eilañ ID implijer\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Aotreoù\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Forbanniñ\"],\"9nffag\":[\"O sell ouzh kemennadennoù kozh\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Dinaskañ an implijer\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Krouiñ ur strollad\"],\"A9Rhec\":[\"Anv ar c'hanol\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"skrivit ur ger-tremen nevez.\"],\"AU7IRi\":[\"Kanol Skrid\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Kanol Komz\"],\"BHsrDx\":[\"Pedadennoù\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Gwelout ouzh ar C'hanol\"],\"CK7kdd\":[\"Lemel ar statud\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Deskrivadur ar c'hanol\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Kas Kemennadennoù\"],\"CkIs/i\":[\"Lazhañ vouezh an izili\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Ger-tremen a-vremañ\"],\"DDpDsO\":[\"Boneg-pediñ\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Darempred ofisiel\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Graet\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Kinnig un aezamant\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Diberzhañ\"],\"EdQY6l\":[\"Hini ebet\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Kaozeadennoù\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Restr stag kaset\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Krouiñ ur rummad\"],\"F1uGNS\":[\"Merañ al Lesanvioù\"],\"FEr96N\":[\"Danvez\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Lemel ar skeudennoù profil\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Elumiñ ar c'hemennoù da burev\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Dizourennet\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Eilañ an ID ar c'hanol\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Strolladoù boutin\"],\"GhCPk1\":[\"N'eus distro ebet ur wech dilamet eo.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Skrivit ho kod-pediñ a-vremañ.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Ezkargañ Restroù\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notennoù Enrollet\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Adkas ar gwiriadur\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Dilecʼhiañ an Izili\"],\"ImOQa9\":[\"Respont\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Lies restroù stag kaset\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Kadarnaat\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Gwareziñ er c'harned-notenniñ\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Degemer mat war\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Klikañ a c'hallit war an arlun an implijer war laez a-gleiz gant ar c'hlik dehou, pe gant ar c'hlik kleiz ma er pajenn-zegemer oc'h dija.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Dilemel ar c'hemennad\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonioù\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servijer Ofisiel\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Lemel ur mignon\"],\"LcET2C\":[\"Buhez Prevez\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Postell gwiriañ a kasjoc'h. Mar plij. Gortozit 10 munutenn a-raok resev ar postel.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Anv ar servijer\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Kuitaat\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Gwelout amañ an danevell oberiant beugoù a-vremañ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Grit da cʼhouzout penaos gwellaat hor arload gant ober un evezhiadenn.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"ho kont en deus gwiriet\u202F!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Chomlec'h Postel\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ne c'hallit ket kas kemennadennoù er c'hanol-mañ.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Adkorañ\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Anv ar perzh\"],\"PWOA0E\":[\"Menegioù Hepken\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Kas Enframmet Kemennadennoù\"],\"PnzsrT\":[\"Tarzh\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Mont d'an amzer-vremañ\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ezvezant\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Kemmañ ar c'hemennad\"],\"QqoBlW\":[\"Sellit ouzh ho posteloù !\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Krouiñ ur ger-tremen nevez\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Chaseour Beugoù\"],\"S3bIKF\":[\"Eilañ ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Lemel ur Reolenn\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Merañ ar C'hemennadoù\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Merañ ar perzhioù\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Arventennoù\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pedit ho mignoned, ur re bennak robotoù, ha bec'h d'ar fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cheñch ar skeudenn profil\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Kemennadenn Kaset\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"O respont da\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Bouzarañ an Izili\"],\"VsHxv+\":[\"Eilañ ar skrid\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"O wiriañ ho kont…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Al liammoù diavaez a c'hall bezañ arvarus !\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Arventennoù Arval\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"aplikadenn aotentikadur\"],\"YcVBkL\":[\"Kemennadenn Resevet\"],\"YirHq7\":[\"Evezhiadennoù\"],\"YlFpiA\":[\"c'hwitet da gwiriañ\u202F!\"],\"Yp+Hi/\":[\"Digeriñ an arventennoù\"],\"Z5HWHd\":[\"War elum\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Neuz\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"N'eo ket posubl dizober an obererezh-mañ.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Lazhet\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Diweredekaat ar Gont\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lenn roll-istor ar c'hemennadennoù\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Forbanniñ an ezel-mañ\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Merañ an Aotreoù\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pediñ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Dilemel\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Nullañ\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Krouiñ ur robot nevez\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pediñ tud all\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Diwelus\"],\"ekfzWq\":[\"Arventennoù Implijer\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Krouiñ ur bedadenn\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"En em enskrivañ\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Nullañ ar goulenn\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Reiñ Perzhioù\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Krouiñ ur c'hanol\"],\"gkmjYT\":[\"Kuitaat ar servijer\"],\"go1IWB\":[\"An implijer-se a verzas ho kont.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Dilemel ar c'hanol-mañ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Skrivit ho postell.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Krouiñ\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Degemer\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Kemennoù\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Pellgomz\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Ober meneg\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Distreiñ d'ar c'hevreadur\"],\"jpJ5AL\":[\"Daspunadur kod\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Skeudenn ar Profil\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Donemat\u202F!\"],\"knjY+b\":[\"Diwezhatoc'h a c'hallit digeriñ ar c'hemennadoù-se en-dro, met an daou du a steuziint.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ouzhpennañ ur mignon\"],\"lSGjX7\":[\"Erru eo an implijer er pellgomzadenn\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanolioù\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Anv ar strollad\"],\"mAYvqA\":[\"Salud deoc'h !\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Statud personelaet\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mignoned boutin\"],\"nbzz1A\":[\"Skriv ar c'hod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Setu ar deraouenn ho karned-notenniñ.\"],\"o+XJ9D\":[\"Cheñch\"],\"oB4OOq\":[\"Forbanniñ Izili\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Enlinenn\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Diberzhañ izili\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Dre ziouer\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Digevreañ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Mont d'an deraouenn\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Aet eo an implijer eus pellgomzadenn\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Ma Gont\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Kemennadennoù holl\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 tud ersavet\"],\"rxaY+5\":[\"Arabat Direnkañ\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Mignoned\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Merañ ar Webhooks\"],\"tdTuUv\":[\"Berzañ an implijer\"],\"tfDRzk\":[\"Gwareziñ\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Implijer Berzet\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mont er servijer ar prouaderien\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Diberzhañ an ezel-mañ\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Dilemel ar Perzh\"],\"utrCh2\":[\"Ehanañ an Izili\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Diwar hor penn\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskrivadur ar servijer\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Skorañ ar raktres gant reiñ - trugarez !\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Kemmañ ho pivelezh\"],\"vXIe7J\":[\"Yezh\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Mont e-barzh ar c'hanol\"],\"wL3cK8\":[\"Hini diwezhañ\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Izili\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskaradenn\"],\"xDAtGP\":[\"Kas ur C'hemennadenn\"],\"xGVfLh\":[\"Kenderc'hel\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Forbanned\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Divizoù Implijout\"],\"xpgPPI\":[\"Ma Robotoù\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Eilañ al liamm\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Kadarnaat on un den-a-dra (18 vloaz on da nebeutañ).\"],\"yDOdwQ\":[\"Merañ an Implijer\"],\"yIBLq8\":[\"Komz\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Serriñ\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Kevreañ\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Mat eo\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Setu ar deraouenn ar gaozeadenn.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Hini koshañ\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/br/messages.mjs b/components/i18n/catalogs/br/messages.mjs
new file mode 100644
index 0000000..83b1ea5
--- /dev/null
+++ b/components/i18n/catalogs/br/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Mut\"],\"+YFgJi\":[\"Ardamezoù\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Merkañ evel lennet\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Krouiñ ur perzh nevez\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Digevreañ diouzh an estezioù all\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Diuzit un anv implijer. Gantañ a c'hall tud kavout ho kont. Posupl eo cheñch an anv implijer en arventennoù.\"],\"/qQDwm\":[\"O genel ur pedadenn…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Kinnig un evezhiadenn\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Eilañ an ID ar c'hemennad\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Kuitaat ar strollad\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Amañ a c'hallit aroueziañ ar gudennoù ha kaozeal diwar-benn gwellaenn ganeomp.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Berzet\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ne c'hallit ket dont en-dro hep ur pedadenn nevez.\"],\"3QuNUr\":[\"Kalz tud o skriv…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Dija oc'h mignon gant an implijer-se.\"],\"3T8ziB\":[\"Krouiñ ur gont\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Estezioù\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Lesanv\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Dibab ho yezh\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Kavit ur kumuniezh hervez ho plijadur.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Merkañ evel anlennet\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cheñch ho Lesanv\"],\"5dJK4M\":[\"Perzhioù\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Diverradur\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Ezlinenn\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Implijer\"],\"7SU2U9\":[\"Eilañ an ID ar servijer\"],\"7VpPHA\":[\"Kadarnaat\"],\"7dZnmw\":[\"Reizhidigezh\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Anv Implijer\"],\"7vhWI8\":[\"Ger-tremen nevez\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Merañ ar Servijer\"],\"8FE4JE\":[\"Elumiñ arload dilesadur\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Ger-tremen\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Roit ho anv implijer muiañ-karet.\"],\"9D85wC\":[\"Eilañ ID implijer\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Aotreoù\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Forbanniñ\"],\"9nffag\":[\"O sell ouzh kemennadennoù kozh\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Dinaskañ an implijer\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Krouiñ ur strollad\"],\"A9Rhec\":[\"Anv ar c'hanol\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"skrivit ur ger-tremen nevez.\"],\"AU7IRi\":[\"Kanol Skrid\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Kanol Komz\"],\"BHsrDx\":[\"Pedadennoù\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Gwelout ouzh ar C'hanol\"],\"CK7kdd\":[\"Lemel ar statud\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Deskrivadur ar c'hanol\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Kas Kemennadennoù\"],\"CkIs/i\":[\"Lazhañ vouezh an izili\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Ger-tremen a-vremañ\"],\"DDpDsO\":[\"Boneg-pediñ\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Darempred ofisiel\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Graet\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Kinnig un aezamant\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Diberzhañ\"],\"EdQY6l\":[\"Hini ebet\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Kaozeadennoù\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Restr stag kaset\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Krouiñ ur rummad\"],\"F1uGNS\":[\"Merañ al Lesanvioù\"],\"FEr96N\":[\"Danvez\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Lemel ar skeudennoù profil\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Elumiñ ar c'hemennoù da burev\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Dizourennet\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Eilañ an ID ar c'hanol\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Strolladoù boutin\"],\"GhCPk1\":[\"N'eus distro ebet ur wech dilamet eo.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Skrivit ho kod-pediñ a-vremañ.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Ezkargañ Restroù\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notennoù Enrollet\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Adkas ar gwiriadur\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Dilecʼhiañ an Izili\"],\"ImOQa9\":[\"Respont\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Lies restroù stag kaset\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Kadarnaat\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Gwareziñ er c'harned-notenniñ\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Degemer mat war\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Klikañ a c'hallit war an arlun an implijer war laez a-gleiz gant ar c'hlik dehou, pe gant ar c'hlik kleiz ma er pajenn-zegemer oc'h dija.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Dilemel ar c'hemennad\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonioù\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servijer Ofisiel\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Lemel ur mignon\"],\"LcET2C\":[\"Buhez Prevez\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Postell gwiriañ a kasjoc'h. Mar plij. Gortozit 10 munutenn a-raok resev ar postel.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Anv ar servijer\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Kuitaat\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Gwelout amañ an danevell oberiant beugoù a-vremañ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Grit da cʼhouzout penaos gwellaat hor arload gant ober un evezhiadenn.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"ho kont en deus gwiriet\u202F!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Chomlec'h Postel\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ne c'hallit ket kas kemennadennoù er c'hanol-mañ.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Adkorañ\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Anv ar perzh\"],\"PWOA0E\":[\"Menegioù Hepken\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Kas Enframmet Kemennadennoù\"],\"PnzsrT\":[\"Tarzh\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Mont d'an amzer-vremañ\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ezvezant\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Kemmañ ar c'hemennad\"],\"QqoBlW\":[\"Sellit ouzh ho posteloù !\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Krouiñ ur ger-tremen nevez\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Chaseour Beugoù\"],\"S3bIKF\":[\"Eilañ ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Lemel ur Reolenn\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Merañ ar C'hemennadoù\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Merañ ar perzhioù\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Arventennoù\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pedit ho mignoned, ur re bennak robotoù, ha bec'h d'ar fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cheñch ar skeudenn profil\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Kemennadenn Kaset\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"O respont da\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Bouzarañ an Izili\"],\"VsHxv+\":[\"Eilañ ar skrid\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"O wiriañ ho kont…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Al liammoù diavaez a c'hall bezañ arvarus !\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Arventennoù Arval\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"aplikadenn aotentikadur\"],\"YcVBkL\":[\"Kemennadenn Resevet\"],\"YirHq7\":[\"Evezhiadennoù\"],\"YlFpiA\":[\"c'hwitet da gwiriañ\u202F!\"],\"Yp+Hi/\":[\"Digeriñ an arventennoù\"],\"Z5HWHd\":[\"War elum\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Neuz\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"N'eo ket posubl dizober an obererezh-mañ.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Lazhet\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Diweredekaat ar Gont\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lenn roll-istor ar c'hemennadennoù\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Forbanniñ an ezel-mañ\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Merañ an Aotreoù\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pediñ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Dilemel\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Nullañ\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Krouiñ ur robot nevez\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pediñ tud all\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Diwelus\"],\"ekfzWq\":[\"Arventennoù Implijer\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Krouiñ ur bedadenn\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"En em enskrivañ\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Nullañ ar goulenn\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Reiñ Perzhioù\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Krouiñ ur c'hanol\"],\"gkmjYT\":[\"Kuitaat ar servijer\"],\"go1IWB\":[\"An implijer-se a verzas ho kont.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Dilemel ar c'hanol-mañ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Skrivit ho postell.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Krouiñ\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Degemer\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Kemennoù\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Pellgomz\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Ober meneg\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Distreiñ d'ar c'hevreadur\"],\"jpJ5AL\":[\"Daspunadur kod\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Skeudenn ar Profil\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Donemat\u202F!\"],\"knjY+b\":[\"Diwezhatoc'h a c'hallit digeriñ ar c'hemennadoù-se en-dro, met an daou du a steuziint.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ouzhpennañ ur mignon\"],\"lSGjX7\":[\"Erru eo an implijer er pellgomzadenn\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanolioù\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Anv ar strollad\"],\"mAYvqA\":[\"Salud deoc'h !\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Statud personelaet\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mignoned boutin\"],\"nbzz1A\":[\"Skriv ar c'hod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Setu ar deraouenn ho karned-notenniñ.\"],\"o+XJ9D\":[\"Cheñch\"],\"oB4OOq\":[\"Forbanniñ Izili\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Enlinenn\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Diberzhañ izili\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Dre ziouer\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Digevreañ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Mont d'an deraouenn\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Aet eo an implijer eus pellgomzadenn\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Ma Gont\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Kemennadennoù holl\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 tud ersavet\"],\"rxaY+5\":[\"Arabat Direnkañ\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Mignoned\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Merañ ar Webhooks\"],\"tdTuUv\":[\"Berzañ an implijer\"],\"tfDRzk\":[\"Gwareziñ\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Implijer Berzet\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mont er servijer ar prouaderien\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Diberzhañ an ezel-mañ\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Dilemel ar Perzh\"],\"utrCh2\":[\"Ehanañ an Izili\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Diwar hor penn\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskrivadur ar servijer\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Skorañ ar raktres gant reiñ - trugarez !\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Kemmañ ho pivelezh\"],\"vXIe7J\":[\"Yezh\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Mont e-barzh ar c'hanol\"],\"wL3cK8\":[\"Hini diwezhañ\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Izili\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskaradenn\"],\"xDAtGP\":[\"Kas ur C'hemennadenn\"],\"xGVfLh\":[\"Kenderc'hel\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Forbanned\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Divizoù Implijout\"],\"xpgPPI\":[\"Ma Robotoù\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Eilañ al liamm\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Kadarnaat on un den-a-dra (18 vloaz on da nebeutañ).\"],\"yDOdwQ\":[\"Merañ an Implijer\"],\"yIBLq8\":[\"Komz\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Serriñ\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Kevreañ\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Mat eo\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Setu ar deraouenn ar gaozeadenn.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Hini koshañ\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/br/messages.po b/components/i18n/catalogs/br/messages.po
new file mode 100644
index 0000000..c9a4dd1
--- /dev/null
+++ b/components/i18n/catalogs/br/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: br\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 tud ersavet"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Diwar hor penn"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Ouzhpennañ ur mignon"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Kemennadennoù holl"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Dija oc'h mignon gant an implijer-se."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Neuz"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Reiñ Perzhioù"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "aplikadenn aotentikadur"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Skeudenn ar Profil"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Ardamezoù"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Forbanniñ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Forbanniñ an ezel-mañ"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Forbanniñ Izili"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Forbanned"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Berzañ an implijer"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Berzet"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Implijer Berzet"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Chaseour Beugoù"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Nullañ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Nullañ ar goulenn"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Cheñch"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Cheñch ar skeudenn profil"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Cheñch ho Lesanv"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Deskrivadur ar c'hanol"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Anv ar c'hanol"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanolioù"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Sellit ouzh ho posteloù !"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Lemel ar statud"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Arventennoù Arval"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Serriñ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Kadarnaat"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Kadarnaat"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Pellgomz"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Kenderc'hel"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Kaozeadennoù"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Eilañ an ID ar c'hanol"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Eilañ ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Eilañ al liamm"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Eilañ an ID ar c'hemennad"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Eilañ an ID ar servijer"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Eilañ ar skrid"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Eilañ ID implijer"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Krouiñ"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Krouiñ ur strollad"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Krouiñ ur robot nevez"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Krouiñ ur perzh nevez"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Krouiñ ur gont"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Krouiñ ur rummad"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Krouiñ ur c'hanol"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Krouiñ ur bedadenn"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Ger-tremen a-vremañ"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Statud personelaet"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Bouzarañ an Izili"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Dre ziouer"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Dilemel"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Dilemel ar c'hanol-mañ"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Dilemel ar c'hemennad"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Dilemel ar Perzh"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Diweredekaat ar Gont"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Arabat Direnkañ"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Graet"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Kemmañ ho pivelezh"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Kemmañ ar c'hemennad"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Chomlec'h Postel"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Elumiñ arload dilesadur"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Elumiñ ar c'hemennoù da burev"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "skrivit ur ger-tremen nevez."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Mont e-barzh ar c'hanol"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Skriv ar c'hod"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Skrivit ho kod-pediñ a-vremañ."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Roit ho anv implijer muiañ-karet."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Al liammoù diavaez a c'hall bezañ arvarus !"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "c'hwitet da gwiriañ !"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Evezhiadennoù"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Kavit ur kumuniezh hervez ho plijadur."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Dizourennet"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Mignoned"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "O genel ur pedadenn…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Distreiñ d'ar c'hevreadur"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Mont er servijer ar prouaderien"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Anv ar strollad"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Salud deoc'h !"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Degemer"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Kadarnaat on un den-a-dra (18 vloaz on da nebeutañ)."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Ezvezant"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Diwelus"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Pedit ho mignoned, ur re bennak robotoù, ha bec'h d'ar fest."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Boneg-pediñ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Pediñ tud all"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Pediñ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Pedadennoù"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Mont d'an amzer-vremañ"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Mont d'an deraouenn"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Diberzhañ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Diberzhañ an ezel-mañ"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Diberzhañ izili"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Yezh"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Hini diwezhañ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Kuitaat"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Kuitaat ar strollad"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Kuitaat ar servijer"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Grit da cʼhouzout penaos gwellaat hor arload gant ober un evezhiadenn."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Digevreañ"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Digevreañ diouzh an estezioù all"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Kevreañ"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Merañ ar C'hemennadoù"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Merañ al Lesanvioù"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Merañ an Aotreoù"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Merañ ar perzhioù"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Merañ ar Servijer"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Merañ ar Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Merkañ evel lennet"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Merkañ evel anlennet"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskaradenn"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Izili"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Ober meneg"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Menegioù Hepken"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Kas ur C'hemennadenn"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Kemennadenn Resevet"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Kemennadenn Kaset"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Dilecʼhiañ an Izili"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Lazhañ vouezh an izili"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Mut"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Mignoned boutin"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Strolladoù boutin"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Ma Gont"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Ma Robotoù"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Ger-tremen nevez"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Lesanv"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Hini ebet"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Kemennoù"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Lazhet"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Darempred ofisiel"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Servijer Ofisiel"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Ezlinenn"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Mat eo"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Hini koshañ"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "War elum"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "N'eus distro ebet ur wech dilamet eo."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Enlinenn"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Digeriñ an arventennoù"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Diverradur"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Ger-tremen"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Aotreoù"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Diuzit un anv implijer. Gantañ a c'hall tud kavout ho kont. Posupl eo cheñch an anv implijer en arventennoù."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Skrivit ho postell."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Buhez Prevez"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Lenn roll-istor ar c'hemennadennoù"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Daspunadur kod"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "En em enskrivañ"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Reizhidigezh"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Lemel ur Reolenn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Lemel ar skeudennoù profil"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Lemel ur mignon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Respont"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "O respont da"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Adkas ar gwiriadur"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Adkorañ"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Krouiñ ur ger-tremen nevez"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Anv ar perzh"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Perzhioù"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Gwareziñ"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Gwareziñ er c'harned-notenniñ"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notennoù Enrollet"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Dibab ho yezh"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Kas Enframmet Kemennadennoù"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Kas Kemennadennoù"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Restr stag kaset"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Lies restroù stag kaset"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Deskrivadur ar servijer"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Anv ar servijer"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Estezioù"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Arventennoù"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Kalz tud o skriv…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sonioù"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Tarzh"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Komz"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Kinnig un aezamant"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Kinnig un evezhiadenn"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Skorañ ar raktres gant reiñ - trugarez !"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Divizoù Implijout"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Kanol Skrid"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Danvez"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Setu ar deraouenn ar gaozeadenn."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Setu ar deraouenn ho karned-notenniñ."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "An implijer-se a verzas ho kont."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Ehanañ an Izili"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Dinaskañ an implijer"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Ezkargañ Restroù"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Implijer"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Erru eo an implijer er pellgomzadenn"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Aet eo an implijer eus pellgomzadenn"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Merañ an Implijer"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Arventennoù Implijer"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Anv Implijer"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "O wiriañ ho kont…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Gwelout ouzh ar C'hanol"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Gwelout amañ an danevell oberiant beugoù a-vremañ."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "O sell ouzh kemennadennoù kozh"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Kanol Komz"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Postell gwiriañ a kasjoc'h. Mar plij. Gortozit 10 munutenn a-raok resev ar postel."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Degemer mat war"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Donemat !"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Klikañ a c'hallit war an arlun an implijer war laez a-gleiz gant ar c'hlik dehou, pe gant ar c'hlik kleiz ma er pajenn-zegemer oc'h dija."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Diwezhatoc'h a c'hallit digeriñ ar c'hemennadoù-se en-dro, met an daou du a steuziint."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Amañ a c'hallit aroueziañ ar gudennoù ha kaozeal diwar-benn gwellaenn ganeomp."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "N'eo ket posubl dizober an obererezh-mañ."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Ne c'hallit ket kas kemennadennoù er c'hanol-mañ."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Ne c'hallit ket dont en-dro hep ur pedadenn nevez."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "ho kont en deus gwiriet !"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ca/messages.js b/components/i18n/catalogs/ca/messages.js
new file mode 100644
index 0000000..384d238
--- /dev/null
+++ b/components/i18n/catalogs/ca/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Silenciat\"],\"+YFgJi\":[\"Insignies\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar com llegit\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crea un nou rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Desconnecta la resta de sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Trieu un nom d'usuari amb el qual voleu que la gent us pugui trobar. Es pot canviar més endavant als paràmetres d'usuari.\"],\"/qQDwm\":[\"Generant invitació…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Informeu sobre el missatge\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Envia comentaris\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar l'ID del missatge\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Abandonar grup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Aquí pots denunciar problemes i discutir millores amb nosaltres directament.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloquejat\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"No us hi podreu tornar a unir fins que no rebeu una altra invitació.\"],\"3QuNUr\":[\"Diverses persones estan escrivint…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ya ets amic d'aquest usuari.\"],\"3T8ziB\":[\"Crear un compte\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Sobrenom\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleccioneu la vostra llengua\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Troba una comunitat segons les teves aficions o interessos.\"],\"572q5a\":[\"informa sobre l'usuari\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar com no llegit\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Canviar sobrenom\"],\"5dJK4M\":[\"Rols\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Visió general\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Fora de línia\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuari\"],\"7SU2U9\":[\"Copiar l'ID del servidor\"],\"7VpPHA\":[\"Confirma\"],\"7dZnmw\":[\"Rellevància\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nom d'usuari\"],\"7vhWI8\":[\"Contrasenya nova\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrar servidor\"],\"8FE4JE\":[\"Activa l'aplicació d'autenticació\"],\"8VGnad\":[\"Genera codis de recuperació\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Contrasenya\"],\"8aTiea\":[\"Personalització\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introdueix el teu nom d'usuari preferit.\"],\"9D85wC\":[\"Copiar l'ID d'usuari\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Restableix el token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisos\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Vetar\"],\"9nffag\":[\"S’estan mostrant missatges anteriors\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquejar usuari\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crea un grup\"],\"A9Rhec\":[\"Nom del canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Introdueix una contrasenya nova.\"],\"AU7IRi\":[\"Canal de text\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de veu\"],\"BHsrDx\":[\"Invitacions\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"El missatge s’ha enviat des d’una altra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Veure canal\"],\"CK7kdd\":[\"Borrar 'estatus' personalitzat\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descripció del canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar missatges\"],\"CkIs/i\":[\"Silenciar Membres\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Contrasenya actual\"],\"DDpDsO\":[\"Codi d'invitació\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicació oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Fet\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Missatge no carregat, fes clic per anar-hi\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Proposa una funcionalitat\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Cap\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Converses\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ha enviat un adjunt\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crear categoria\"],\"F1uGNS\":[\"Administrar sobrenoms\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eliminar avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Activa les notificacions d'escriptori\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrat\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar l'ID del canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grups en comú\"],\"GhCPk1\":[\"Una vegada eliminat, no hi ha volta enrere.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introdueix la teva contrasenya actual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Seleccioneu un mètode per a autenticar la vostra petició.\"],\"HAKBY9\":[\"Pujar arxius\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notes Desades\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificació\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Moure els membres\"],\"ImOQa9\":[\"Respondre\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ha enviat diversos adjunts\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"No es pot suprimir el compte fins que els servidors no s’hagin suprimit o transferit\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirma l'acció\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Mostra les actualitzacions més antigues\"],\"JUJmXm\":[\"Si us plau, confirmeu aquesta acció utilitzant el mètode seleccionat.\"],\"JW8mxK\":[\"Desa a les teves notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Us donem la benvinguda a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"També pots fer clic dret a la icona d’usuari a la part superior esquerra, o clic esquerre si ja ets a l’inici.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar missatge\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"El contingut incompleix una o més normes\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eliminar amic\"],\"LcET2C\":[\"Política de privadesa\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"T'hem enviat un correu de verificació. Si us plau, espera fins a 10 minuts perquè arribi.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nom del servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Deixar\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Vegeu aquí els informes d'errors actius actualment.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Explica’ns com podem millorar l’aplicació enviant-nos comentaris.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"El compte vostre ha sigut verificat!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Correu electrònic\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"No tens permís per enviar missatges en aquest canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reinicia\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rebutjar la sol·licitud d'amistat\"],\"PSP1MZ\":[\"Nom del rol\"],\"PWOA0E\":[\"Només mencions\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar Incrustacions\"],\"PnzsrT\":[\"Codi font\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Ves al present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inactiu\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar missatge\"],\"QqoBlW\":[\"Comprova el teu correu electrònic!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restablir la contrasenya\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Seguidor d'errors\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Si us plau, escanegeu o utilitzeu el codi mostrat a continuació a la teva aplicació d'autenticació.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Elimina autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Administrar missatges\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Administrar rols\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Configuració\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Convida tots els teus amics, alguns bots divertits i organitza una gran festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Canviar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Missatge enviat\"],\"VJScHU\":[\"raó\"],\"VKsaTi\":[\"Responent a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Membres sords\"],\"VsHxv+\":[\"Copiar text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificant el vostre compte…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Els enllaços externs poden ser perillosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Configuració del client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"App d'Autentificació\"],\"YcVBkL\":[\"Missatge rebut\"],\"YirHq7\":[\"Commentaris\"],\"YlFpiA\":[\"Error al verificar!\"],\"Yp+Hi/\":[\"Obre la configuració\"],\"Z5HWHd\":[\"Activat\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Els vostres codis de recuperació\"],\"aAIQg2\":[\"Aparença\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Aquesta acció es irreversible.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desactivat\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desactiva el compte\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Llegeix l'historial de missatges\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banear membre\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Administrar Permisos\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Membre que l'ha convidat\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crear un nou bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitar altres\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Configuració de l'usuari\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestiona personalització\"],\"fTMMeD\":[\"Crear invitació\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registra't\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel·lar la sol·licitud d'amistat\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assignar Rols\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Reporta\"],\"gkBHk/\":[\"Crear canal\"],\"gkmjYT\":[\"Abandonar servidor\"],\"go1IWB\":[\"Aquest usuari t'ha bloquejat.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introdueix el teu correu electrònic.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crear\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Inici\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Torna a l'inici de sessió\"],\"jpJ5AL\":[\"Codi de recuperació\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Us donem la benvinguda!\"],\"knjY+b\":[\"Es pot tornar a obrir més tard, però desapareixerà per als dos usuaris.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Afagur amic\"],\"lSGjX7\":[\"Un usuari s'ha unit a la trucada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canals\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nom del grup\"],\"mAYvqA\":[\"Hola!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edita la teva identitat\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"No podràs accedir al teu compte si no contactes amb el servei de suport; tanmateix, les teves dades no se suprimiran.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"'Estatus' personalitzat\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amics en comú\"],\"nbzz1A\":[\"Introduïu el codi\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Aquest és l’inici de les teves notes.\"],\"o+XJ9D\":[\"Canvia\"],\"oB4OOq\":[\"Banejar membres\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"En línia\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar membres\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Predeterminat\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Tanca la sessió\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Ves al començament\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un usuari ha marxat de la trucada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"El meu compte\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tots els missatges\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persona ha reaccionat\"],\"rxaY+5\":[\"No Molestar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avançat\"],\"t43mBk\":[\"Informeu sobre el servidor\"],\"tBmnPU\":[\"Amics\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gestionar Webhooks\"],\"tdTuUv\":[\"Bloquejar usuari\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuari blocat\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ves al servidor de proves\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar membre\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Suprimeix el rol\"],\"utrCh2\":[\"Membres de temps d'espera\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Sobre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descripció del servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Dona suport al projecte amb una donació – gràcies!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identitat\"],\"vXIe7J\":[\"Llengua\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Deseu-los en un lloc segur.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Missatgeria\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entra al canal\"],\"wL3cK8\":[\"Més recents\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membres\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Mascarada\"],\"xDAtGP\":[\"Enviar missatge\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Blocs\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Condicions de servei\"],\"xpgPPI\":[\"Els meus bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Acceptar la sol·licitud d'amistat\"],\"y1eoq1\":[\"Copiar enllaç\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirmo que tinc almenys 18 anys.\"],\"yDOdwQ\":[\"Gestió dels usuaris\"],\"yIBLq8\":[\"Parlar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Tancar\"],\"z0hW8A\":[\"Mostra els codis de recuperació\"],\"z0t9bb\":[\"Inicia sessió\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"D'acord\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Aquest és l’inici de la teva conversa.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Més antics\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ca/messages.mjs b/components/i18n/catalogs/ca/messages.mjs
new file mode 100644
index 0000000..5209764
--- /dev/null
+++ b/components/i18n/catalogs/ca/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Silenciat\"],\"+YFgJi\":[\"Insignies\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar com llegit\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crea un nou rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Desconnecta la resta de sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Trieu un nom d'usuari amb el qual voleu que la gent us pugui trobar. Es pot canviar més endavant als paràmetres d'usuari.\"],\"/qQDwm\":[\"Generant invitació…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Informeu sobre el missatge\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Envia comentaris\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar l'ID del missatge\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Abandonar grup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Aquí pots denunciar problemes i discutir millores amb nosaltres directament.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloquejat\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"No us hi podreu tornar a unir fins que no rebeu una altra invitació.\"],\"3QuNUr\":[\"Diverses persones estan escrivint…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ya ets amic d'aquest usuari.\"],\"3T8ziB\":[\"Crear un compte\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Sobrenom\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleccioneu la vostra llengua\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Troba una comunitat segons les teves aficions o interessos.\"],\"572q5a\":[\"informa sobre l'usuari\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar com no llegit\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Canviar sobrenom\"],\"5dJK4M\":[\"Rols\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Visió general\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Fora de línia\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuari\"],\"7SU2U9\":[\"Copiar l'ID del servidor\"],\"7VpPHA\":[\"Confirma\"],\"7dZnmw\":[\"Rellevància\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nom d'usuari\"],\"7vhWI8\":[\"Contrasenya nova\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrar servidor\"],\"8FE4JE\":[\"Activa l'aplicació d'autenticació\"],\"8VGnad\":[\"Genera codis de recuperació\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Contrasenya\"],\"8aTiea\":[\"Personalització\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introdueix el teu nom d'usuari preferit.\"],\"9D85wC\":[\"Copiar l'ID d'usuari\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Restableix el token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisos\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Vetar\"],\"9nffag\":[\"S’estan mostrant missatges anteriors\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquejar usuari\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crea un grup\"],\"A9Rhec\":[\"Nom del canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Introdueix una contrasenya nova.\"],\"AU7IRi\":[\"Canal de text\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de veu\"],\"BHsrDx\":[\"Invitacions\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"El missatge s’ha enviat des d’una altra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Veure canal\"],\"CK7kdd\":[\"Borrar 'estatus' personalitzat\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descripció del canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar missatges\"],\"CkIs/i\":[\"Silenciar Membres\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Contrasenya actual\"],\"DDpDsO\":[\"Codi d'invitació\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicació oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Fet\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Missatge no carregat, fes clic per anar-hi\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Proposa una funcionalitat\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Cap\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Converses\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ha enviat un adjunt\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crear categoria\"],\"F1uGNS\":[\"Administrar sobrenoms\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eliminar avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Activa les notificacions d'escriptori\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrat\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar l'ID del canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grups en comú\"],\"GhCPk1\":[\"Una vegada eliminat, no hi ha volta enrere.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introdueix la teva contrasenya actual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Seleccioneu un mètode per a autenticar la vostra petició.\"],\"HAKBY9\":[\"Pujar arxius\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notes Desades\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificació\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Moure els membres\"],\"ImOQa9\":[\"Respondre\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ha enviat diversos adjunts\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"No es pot suprimir el compte fins que els servidors no s’hagin suprimit o transferit\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirma l'acció\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Mostra les actualitzacions més antigues\"],\"JUJmXm\":[\"Si us plau, confirmeu aquesta acció utilitzant el mètode seleccionat.\"],\"JW8mxK\":[\"Desa a les teves notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Us donem la benvinguda a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"També pots fer clic dret a la icona d’usuari a la part superior esquerra, o clic esquerre si ja ets a l’inici.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar missatge\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"El contingut incompleix una o més normes\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eliminar amic\"],\"LcET2C\":[\"Política de privadesa\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"T'hem enviat un correu de verificació. Si us plau, espera fins a 10 minuts perquè arribi.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nom del servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Deixar\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Vegeu aquí els informes d'errors actius actualment.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Explica’ns com podem millorar l’aplicació enviant-nos comentaris.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"El compte vostre ha sigut verificat!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Correu electrònic\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"No tens permís per enviar missatges en aquest canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reinicia\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rebutjar la sol·licitud d'amistat\"],\"PSP1MZ\":[\"Nom del rol\"],\"PWOA0E\":[\"Només mencions\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar Incrustacions\"],\"PnzsrT\":[\"Codi font\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Ves al present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inactiu\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar missatge\"],\"QqoBlW\":[\"Comprova el teu correu electrònic!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restablir la contrasenya\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Seguidor d'errors\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Si us plau, escanegeu o utilitzeu el codi mostrat a continuació a la teva aplicació d'autenticació.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Elimina autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Administrar missatges\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Administrar rols\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Configuració\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Convida tots els teus amics, alguns bots divertits i organitza una gran festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Canviar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Missatge enviat\"],\"VJScHU\":[\"raó\"],\"VKsaTi\":[\"Responent a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Membres sords\"],\"VsHxv+\":[\"Copiar text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificant el vostre compte…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Els enllaços externs poden ser perillosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Configuració del client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"App d'Autentificació\"],\"YcVBkL\":[\"Missatge rebut\"],\"YirHq7\":[\"Commentaris\"],\"YlFpiA\":[\"Error al verificar!\"],\"Yp+Hi/\":[\"Obre la configuració\"],\"Z5HWHd\":[\"Activat\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Els vostres codis de recuperació\"],\"aAIQg2\":[\"Aparença\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Aquesta acció es irreversible.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desactivat\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desactiva el compte\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Llegeix l'historial de missatges\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banear membre\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Administrar Permisos\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Membre que l'ha convidat\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crear un nou bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitar altres\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Configuració de l'usuari\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestiona personalització\"],\"fTMMeD\":[\"Crear invitació\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registra't\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel·lar la sol·licitud d'amistat\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assignar Rols\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Reporta\"],\"gkBHk/\":[\"Crear canal\"],\"gkmjYT\":[\"Abandonar servidor\"],\"go1IWB\":[\"Aquest usuari t'ha bloquejat.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introdueix el teu correu electrònic.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crear\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Inici\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Torna a l'inici de sessió\"],\"jpJ5AL\":[\"Codi de recuperació\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Us donem la benvinguda!\"],\"knjY+b\":[\"Es pot tornar a obrir més tard, però desapareixerà per als dos usuaris.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Afagur amic\"],\"lSGjX7\":[\"Un usuari s'ha unit a la trucada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canals\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nom del grup\"],\"mAYvqA\":[\"Hola!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edita la teva identitat\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"No podràs accedir al teu compte si no contactes amb el servei de suport; tanmateix, les teves dades no se suprimiran.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"'Estatus' personalitzat\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amics en comú\"],\"nbzz1A\":[\"Introduïu el codi\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Aquest és l’inici de les teves notes.\"],\"o+XJ9D\":[\"Canvia\"],\"oB4OOq\":[\"Banejar membres\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"En línia\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar membres\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Predeterminat\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Tanca la sessió\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Ves al començament\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un usuari ha marxat de la trucada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"El meu compte\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tots els missatges\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persona ha reaccionat\"],\"rxaY+5\":[\"No Molestar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avançat\"],\"t43mBk\":[\"Informeu sobre el servidor\"],\"tBmnPU\":[\"Amics\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gestionar Webhooks\"],\"tdTuUv\":[\"Bloquejar usuari\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuari blocat\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ves al servidor de proves\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar membre\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Suprimeix el rol\"],\"utrCh2\":[\"Membres de temps d'espera\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Sobre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descripció del servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Dona suport al projecte amb una donació – gràcies!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identitat\"],\"vXIe7J\":[\"Llengua\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Deseu-los en un lloc segur.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Missatgeria\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entra al canal\"],\"wL3cK8\":[\"Més recents\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membres\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Mascarada\"],\"xDAtGP\":[\"Enviar missatge\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Blocs\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Condicions de servei\"],\"xpgPPI\":[\"Els meus bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Acceptar la sol·licitud d'amistat\"],\"y1eoq1\":[\"Copiar enllaç\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirmo que tinc almenys 18 anys.\"],\"yDOdwQ\":[\"Gestió dels usuaris\"],\"yIBLq8\":[\"Parlar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Tancar\"],\"z0hW8A\":[\"Mostra els codis de recuperació\"],\"z0t9bb\":[\"Inicia sessió\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"D'acord\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Aquest és l’inici de la teva conversa.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Més antics\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ca/messages.po b/components/i18n/catalogs/ca/messages.po
new file mode 100644
index 0000000..ace30f0
--- /dev/null
+++ b/components/i18n/catalogs/ca/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ca\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 persona ha reaccionat"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Sobre"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Acceptar la sol·licitud d'amistat"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Afagur amic"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avançat"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Tots els missatges"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Ya ets amic d'aquest usuari."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Aparença"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Assignar Rols"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "App d'Autentificació"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Insignies"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Vetar"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Banear membre"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Banejar membres"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Blocs"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloquejar usuari"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloquejat"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Usuari blocat"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Seguidor d'errors"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancel·lar la sol·licitud d'amistat"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "No es pot suprimir el compte fins que els servidors no s’hagin suprimit o transferit"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Canvia"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Canviar avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Canviar sobrenom"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Descripció del canal"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nom del canal"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Canals"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Comprova el teu correu electrònic!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Borrar 'estatus' personalitzat"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Configuració del client"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Tancar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirma"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirma l'acció"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Connectar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "El contingut incompleix una o més normes"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuar"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Converses"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copiar l'ID del canal"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copiar ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copiar enllaç"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copiar l'ID del missatge"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copiar l'ID del servidor"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copiar text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copiar l'ID d'usuari"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Crear"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Crea un grup"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Crear un nou bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Crea un nou rol"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Crear un compte"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Crear categoria"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Crear canal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Crear invitació"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Contrasenya actual"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "'Estatus' personalitzat"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalització"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Membres sords"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Predeterminat"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Eliminar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Eliminar canal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Eliminar missatge"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Suprimeix el rol"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Desactiva el compte"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "No Molestar"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Fet"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Editar identitat"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Editar missatge"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Edita la teva identitat"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Correu electrònic"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Activa l'aplicació d'autenticació"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Activa les notificacions d'escriptori"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Introdueix una contrasenya nova."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entra al canal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Introduïu el codi"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Introdueix la teva contrasenya actual."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Introdueix el teu nom d'usuari preferit."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Els enllaços externs poden ser perillosos!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Error al verificar!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Commentaris"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Troba una comunitat segons les teves aficions o interessos."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Concentrat"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amics"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Genera codis de recuperació"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generant invitació…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Torna a l'inici de sessió"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Ves al servidor de proves"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nom del grup"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hola!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Inici"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Confirmo que tinc almenys 18 anys."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inactiu"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisible"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Convida tots els teus amics, alguns bots divertits i organitza una gran festa."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Codi d'invitació"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invitar altres"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Membre que l'ha convidat"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitacions"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Ves al present"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Ves al començament"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Expulsar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Expulsar membre"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Expulsar membres"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Llengua"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Més recents"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Deixar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Abandonar grup"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Abandonar servidor"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Explica’ns com podem millorar l’aplicació enviant-nos comentaris."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Tanca la sessió"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Desconnecta la resta de sessions"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Inicia sessió"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Gestiona personalització"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Administrar missatges"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Administrar sobrenoms"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Administrar Permisos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Administrar rols"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Administrar servidor"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Gestionar Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marcar com llegit"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marcar com no llegit"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Mascarada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Membres"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mencionar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Només mencions"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Enviar missatge"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Missatge no carregat, fes clic per anar-hi"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Missatge rebut"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Missatge enviat"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "El missatge s’ha enviat des d’una altra plataforma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Missatgeria"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Moure els membres"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Silenciar Membres"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Silenciat"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Amics en comú"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grups en comú"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "El meu compte"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Els meus bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Contrasenya nova"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Sobrenom"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Cap"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notificacions"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Desactivat"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Comunicació oficial"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Servidor oficial"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Fora de línia"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "D'acord"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Més antics"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Activat"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Una vegada eliminat, no hi ha volta enrere."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "En línia"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Obre la configuració"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Visió general"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Contrasenya"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permisos"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Trieu un nom d'usuari amb el qual voleu que la gent us pugui trobar. Es pot canviar més endavant als paràmetres d'usuari."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Si us plau, confirmeu aquesta acció utilitzant el mètode seleccionat."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Introdueix el teu correu electrònic."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Deseu-los en un lloc segur."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Si us plau, escanegeu o utilitzeu el codi mostrat a continuació a la teva aplicació d'autenticació."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Seleccioneu un mètode per a autenticar la vostra petició."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Política de privadesa"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Perfil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Llegeix l'historial de missatges"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "raó"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Codi de recuperació"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registra't"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rebutjar la sol·licitud d'amistat"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Rellevància"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Elimina autenticador"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Eliminar avatars"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Eliminar amic"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Respondre"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Responent a"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Reporta"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Informeu sobre el missatge"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Informeu sobre el servidor"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "informa sobre l'usuari"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Reenviar verificació"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reinicia"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Restablir la contrasenya"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Restableix el token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nom del rol"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Rols"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Guardar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Desa a les teves notes"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notes Desades"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Seleccioneu la vostra llengua"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Enviar Incrustacions"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Enviar missatges"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Ha enviat un adjunt"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Ha enviat diversos adjunts"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Descripció del servidor"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nom del servidor"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessions"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Configuració"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Diverses persones estan escrivint…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sons"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Codi font"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Parlar"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Proposa una funcionalitat"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Envia comentaris"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Dona suport al projecte amb una donació – gràcies!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Condicions de servei"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Canal de text"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Aquest és l’inici de la teva conversa."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Aquest és l’inici de les teves notes."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Aquest usuari t'ha bloquejat."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Membres de temps d'espera"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Desbloquejar usuari"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Pujar arxius"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Usuari"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Un usuari s'ha unit a la trucada"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Un usuari ha marxat de la trucada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gestió dels usuaris"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Configuració de l'usuari"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nom d'usuari"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verificant el vostre compte…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Vídeo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Veure canal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Vegeu aquí els informes d'errors actius actualment."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Mostra les actualitzacions més antigues"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Mostra els codis de recuperació"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "S’estan mostrant missatges anteriors"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Canal de veu"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "T'hem enviat un correu de verificació. Si us plau, espera fins a 10 minuts perquè arribi."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Us donem la benvinguda a"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Us donem la benvinguda!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "També pots fer clic dret a la icona d’usuari a la part superior esquerra, o clic esquerre si ja ets a l’inici."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Es pot tornar a obrir més tard, però desapareixerà per als dos usuaris."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Aquí pots denunciar problemes i discutir millores amb nosaltres directament."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Aquesta acció es irreversible."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "No tens permís per enviar missatges en aquest canal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "No podràs accedir al teu compte si no contactes amb el servei de suport; tanmateix, les teves dades no se suprimiran."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "No us hi podreu tornar a unir fins que no rebeu una altra invitació."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "El compte vostre ha sigut verificat!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Els vostres codis de recuperació"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ceb/messages.js b/components/i18n/catalogs/ceb/messages.js
new file mode 100644
index 0000000..8621ab1
--- /dev/null
+++ b/components/i18n/catalogs/ceb/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Gi-mute\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Pag-log out sa tanang uban pang sesyon\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Diri ka direktang maka-report og mga isyu ug makahisgot bahin sa mga kalamboan kauban namo.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Daghang mga nag-type…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Paghimo og account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Mga Sesyon\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Pagpangita og komunidad sa imong kalingawan o interes.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Kalabutan\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"Bag-ong Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Paghimo og Recovery Code\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ibutang ang imong gusto na username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Nagtan-aw og daan nga mga mensahe\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Paghimo og grupo\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Pagbutang og bag-ong password.\"],\"AU7IRi\":[\"Channel sa Teksto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Channel sa Boses\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Gipadala ning mensahe sa lain nga platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Password Karon\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Opisyal nga Komunikasyon\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Wala na-load ang mensahe, pinduta aron muambak padulong didto\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Wala\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Mga Panag-istoryahanay\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Pagpadala og kasuod\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Naka-focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ibutang ang password nimo karon.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Pag-upload sa mga File.\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Mga Na-save nga Note\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ipadala pag-usab ang pamatuod\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Pagpadala og daghang kasuod\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"I-save sa imong mga note\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Pwede pud nimo i-right-click ang icon sa user sa ibabaw sa tuo, o i-left click kung naa na ka sa panid sa pagsugod.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Palisiya sa Pagkapribado\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nag-send mi nimo og verification email. Paghulat og hangtud 10 minuto bag-o to moabot.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ipahibalo sa amo kung unsaon namo aron mapanindot ning app pinaagi sa paghatag sa amo og feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Naberipika ang imong account!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Dili ka gitugotan nga magpadala og mga mensahe diriang channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mga Mention Lang\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Ipadala ang mga Embed\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Pangadto sa karon\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nagpahulay\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Tan-awa ang imong mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"I-reset ang password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Tangtanga ang Awtentikator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Mga Setting\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pag-imbitar og mga higala ug mga bot, ug paghimo og nindot nga party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Mitubag kang\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Ginaberipika ang imong account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Mga Setting sa Kliyente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"App Panghimatuod\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Napakyas sa pagberipika!\"],\"Yp+Hi/\":[\"Abriha ang mga setting\"],\"Z5HWHd\":[\"Abri\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Panagway\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Sirado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"I-disable ang Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Dili Makit-an\"],\"ekfzWq\":[\"Mga Setting sa User\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Pagparehistro\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ibutang ang imong email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Pagsugod\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Sumpaysumpaya\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Pagbalik sa login\"],\"jpJ5AL\":[\"Code Pang-recover\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Kumusta!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Mga Channel\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Pangalan sa Grupo\"],\"mAYvqA\":[\"Kumusta!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Diri nagsugod ang imong mga note.\"],\"o+XJ9D\":[\"Alisdan\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Pangadto sa pagsugod\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Akong Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tanang mga Mensahe\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Ayaw Disturboha\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Mga Higala\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"User nga Gibabagan\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pangadto sa server sa mga mosulay\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskripsyon sa Server\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Suportaha ning proyekto paagi sa pag-donate - daghang salamat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Sudlan Ning Channel\"],\"wL3cK8\":[\"Pinakabag-o\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Pagtakuban\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Mga Termino sa Serbisyo\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Gipamatud-an nako'g 18+ na ako.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"Tan-awa ang Mga Code sa Recovery\"],\"z0t9bb\":[\"Log in\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Diri nagsugod ang inyohang pag-istoryahanay.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Pinakaluma\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ceb/messages.mjs b/components/i18n/catalogs/ceb/messages.mjs
new file mode 100644
index 0000000..3dbcbf8
--- /dev/null
+++ b/components/i18n/catalogs/ceb/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Gi-mute\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Pag-log out sa tanang uban pang sesyon\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Diri ka direktang maka-report og mga isyu ug makahisgot bahin sa mga kalamboan kauban namo.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Daghang mga nag-type…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Paghimo og account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Mga Sesyon\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Pagpangita og komunidad sa imong kalingawan o interes.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Kalabutan\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"Bag-ong Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Paghimo og Recovery Code\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ibutang ang imong gusto na username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Nagtan-aw og daan nga mga mensahe\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Paghimo og grupo\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Pagbutang og bag-ong password.\"],\"AU7IRi\":[\"Channel sa Teksto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Channel sa Boses\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Gipadala ning mensahe sa lain nga platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Password Karon\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Opisyal nga Komunikasyon\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Wala na-load ang mensahe, pinduta aron muambak padulong didto\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Wala\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Mga Panag-istoryahanay\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Pagpadala og kasuod\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Naka-focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ibutang ang password nimo karon.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Pag-upload sa mga File.\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Mga Na-save nga Note\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ipadala pag-usab ang pamatuod\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Pagpadala og daghang kasuod\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"I-save sa imong mga note\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Pwede pud nimo i-right-click ang icon sa user sa ibabaw sa tuo, o i-left click kung naa na ka sa panid sa pagsugod.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Palisiya sa Pagkapribado\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nag-send mi nimo og verification email. Paghulat og hangtud 10 minuto bag-o to moabot.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ipahibalo sa amo kung unsaon namo aron mapanindot ning app pinaagi sa paghatag sa amo og feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Naberipika ang imong account!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Dili ka gitugotan nga magpadala og mga mensahe diriang channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mga Mention Lang\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Ipadala ang mga Embed\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Pangadto sa karon\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nagpahulay\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Tan-awa ang imong mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"I-reset ang password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Tangtanga ang Awtentikator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Mga Setting\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pag-imbitar og mga higala ug mga bot, ug paghimo og nindot nga party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Mitubag kang\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Ginaberipika ang imong account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Mga Setting sa Kliyente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"App Panghimatuod\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Napakyas sa pagberipika!\"],\"Yp+Hi/\":[\"Abriha ang mga setting\"],\"Z5HWHd\":[\"Abri\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Panagway\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Sirado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"I-disable ang Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Dili Makit-an\"],\"ekfzWq\":[\"Mga Setting sa User\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Pagparehistro\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ibutang ang imong email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Pagsugod\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Sumpaysumpaya\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Pagbalik sa login\"],\"jpJ5AL\":[\"Code Pang-recover\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Kumusta!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Mga Channel\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Pangalan sa Grupo\"],\"mAYvqA\":[\"Kumusta!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Diri nagsugod ang imong mga note.\"],\"o+XJ9D\":[\"Alisdan\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Pangadto sa pagsugod\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Akong Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tanang mga Mensahe\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Ayaw Disturboha\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Mga Higala\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"User nga Gibabagan\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pangadto sa server sa mga mosulay\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskripsyon sa Server\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Suportaha ning proyekto paagi sa pag-donate - daghang salamat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Sudlan Ning Channel\"],\"wL3cK8\":[\"Pinakabag-o\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Pagtakuban\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Mga Termino sa Serbisyo\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Gipamatud-an nako'g 18+ na ako.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"Tan-awa ang Mga Code sa Recovery\"],\"z0t9bb\":[\"Log in\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Diri nagsugod ang inyohang pag-istoryahanay.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Pinakaluma\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ceb/messages.po b/components/i18n/catalogs/ceb/messages.po
new file mode 100644
index 0000000..435c475
--- /dev/null
+++ b/components/i18n/catalogs/ceb/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ceb\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Tanang mga Mensahe"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Panagway"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "App Panghimatuod"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr ""
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "User nga Gibabagan"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Alisdan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr ""
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Mga Channel"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Tan-awa ang imong mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Mga Setting sa Kliyente"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Sumpaysumpaya"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Mga Panag-istoryahanay"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Paghimo og grupo"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr ""
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Paghimo og account"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Password Karon"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "I-disable ang Account"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ayaw Disturboha"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Pagbutang og bag-ong password."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Sudlan Ning Channel"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Ibutang ang password nimo karon."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Ibutang ang imong gusto na username."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Napakyas sa pagberipika!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Pagpangita og komunidad sa imong kalingawan o interes."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Naka-focus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Mga Higala"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Paghimo og Recovery Code"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Pagbalik sa login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Pangadto sa server sa mga mosulay"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Pangalan sa Grupo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Kumusta!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Pagsugod"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Gipamatud-an nako'g 18+ na ako."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Nagpahulay"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Dili Makit-an"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Pag-imbitar og mga higala ug mga bot, ug paghimo og nindot nga party."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Pangadto sa karon"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Pangadto sa pagsugod"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Pinakabag-o"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Ipahibalo sa amo kung unsaon namo aron mapanindot ning app pinaagi sa paghatag sa amo og feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Pag-log out sa tanang uban pang sesyon"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Log in"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Pagtakuban"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Mga Mention Lang"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Wala na-load ang mensahe, pinduta aron muambak padulong didto"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Gipadala ning mensahe sa lain nga platform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Gi-mute"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr ""
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Akong Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Bag-ong Password"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Wala"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Sirado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Opisyal nga Komunikasyon"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Pinakaluma"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Abri"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Abriha ang mga setting"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Password"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Ibutang ang imong email."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Palisiya sa Pagkapribado"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Code Pang-recover"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Pagparehistro"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Kalabutan"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Tangtanga ang Awtentikator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Mitubag kang"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Ipadala pag-usab ang pamatuod"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "I-reset ang password"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "I-save sa imong mga note"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Mga Na-save nga Note"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Ipadala ang mga Embed"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Pagpadala og kasuod"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Pagpadala og daghang kasuod"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Deskripsyon sa Server"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Mga Sesyon"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Mga Setting"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Daghang mga nag-type…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Suportaha ning proyekto paagi sa pag-donate - daghang salamat!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Mga Termino sa Serbisyo"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Channel sa Teksto"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Diri nagsugod ang inyohang pag-istoryahanay."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Diri nagsugod ang imong mga note."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr ""
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Pag-upload sa mga File."
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Mga Setting sa User"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Username"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Ginaberipika ang imong account…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Tan-awa ang Mga Code sa Recovery"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Nagtan-aw og daan nga mga mensahe"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Channel sa Boses"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Nag-send mi nimo og verification email. Paghulat og hangtud 10 minuto bag-o to moabot."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Kumusta!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Pwede pud nimo i-right-click ang icon sa user sa ibabaw sa tuo, o i-left click kung naa na ka sa panid sa pagsugod."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Diri ka direktang maka-report og mga isyu ug makahisgot bahin sa mga kalamboan kauban namo."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Dili ka gitugotan nga magpadala og mga mensahe diriang channel."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Naberipika ang imong account!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ckb/messages.js b/components/i18n/catalogs/ckb/messages.js
new file mode 100644
index 0000000..ae77e2c
--- /dev/null
+++ b/components/i18n/catalogs/ckb/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"میوتکراو\"],\"+YFgJi\":[\"باجەکان\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"نیشانەکردن وەک خوێندراو\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"ڕۆڵێکی نوێ دروست بکە\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"چوونەدەرەوە لە هەموو دانیشتنەکانی تر\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"ناوی بەکارهێنەرێک هەڵبژێرە کە دەتەوێت خەڵک بتوانن بەهۆیەوە تۆ بدۆزنەوە. ئەمە دەتوانرێت دواتر لە ڕێکخستنەکانی بەکارهێنەرەکەتدا بگۆڕدرێت.\"],\"/qQDwm\":[\"دروستکردنی بانگهێشت…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"پەیامی ڕاپۆرت\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"فیدباک پێشکەش بکە\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"کۆپیکردنی ئایدی نامە\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"بەجێهێشتنی گروپ\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"دەتوانیت ڕاپۆرت لەسەر کێشەکان بدەیت و راستەوخۆ گفتوگۆ بکەیت لەگەڵ ئێمە لێرەدا.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"بلۆککراو\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"تۆ ناتوانیت دووبارە بەشداری بکەیتەوە مەگەر دووبارە بانگهێشت بکرێیتەوە.\"],\"3QuNUr\":[\"چەند کەسێک خەریکی نووسینن…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"پێشتر هاوڕێ بووە لەگەڵ ئەم بەکارهێنەرە.\"],\"3T8ziB\":[\"هەژمارێک دروست بکە\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"دانیشتنەکان\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"نازناو\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"زمانەکەت دیاری بکە\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"کۆمەڵگایەک بدۆزەرەوە لەسەر بنەمای خولیاکانت یان بەرژەوەندیەکانت.\"],\"572q5a\":[\"بەکارهێنەر ڕاپۆرت بکە\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"نیشانەکردن وەک نەخوێندراو\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"گۆڕینی نازناو\"],\"5dJK4M\":[\"ڕۆڵەکان\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"پوختە\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ئۆفڵاین\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"بەکارهێنەر\"],\"7SU2U9\":[\"کۆپیکردنی ئایدی سێرڤەر\"],\"7VpPHA\":[\"دووپاتکردنەوە\"],\"7dZnmw\":[\"پەیوەندی\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ناوی بەکارهێنەر\"],\"7vhWI8\":[\"تێپەڕەوشەی نوێ\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"بەڕێوەبردنی سێرڤەر\"],\"8FE4JE\":[\"ئەپی ڕەسەنایەتی چالاک بکە\"],\"8VGnad\":[\"دروستکردنی کۆدی گەڕانەوە\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"وشەی نهێنی\"],\"8aTiea\":[\"خۆکارکردن\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"ناوی بەکارهێنەری دڵخوازی خۆت بنووسە.\"],\"9D85wC\":[\"کۆپیکردنی ئایدی بەکارهێنەر\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"مۆڵەتەکان\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"بان\"],\"9nffag\":[\"بینینی نامە کۆنەکان\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"لابردنی بلۆکی بەکارهێنەر\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"گروپێک دروست بکە\"],\"A9Rhec\":[\"ناوی کەناڵ\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"وشەى نهێنيێكى نوێ دابنێ.\"],\"AU7IRi\":[\"کەناڵی تێکست\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"کەناڵی دەنگ\"],\"BHsrDx\":[\"بانگهێشتەکان\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"پەیام لەسەر پلاتفۆرمێکی تر نێردرا\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"بینینی کەناڵ\"],\"CK7kdd\":[\"سڕینەوەی دۆخ\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"وەسفی کەناڵ\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ناردنی نامە\"],\"CkIs/i\":[\"ئەندام میوتکردن\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"وشەی نهێنی ئێستا\"],\"DDpDsO\":[\"کۆدی بانگهێشتکردن\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"پەیوەندی فەرمی\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"تەواو\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"نامە بارنەکراوە، کلیک بکە بۆ بازدان\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"پێشنیاری تایبەتمەندی پێشکەش بکە\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"دەرکردن\"],\"EdQY6l\":[\"هیچ\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"گفتوگۆکان\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"لکێندراوێکی نارد\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"دروستکردنی هاوپۆل\"],\"F1uGNS\":[\"بەڕێوەبردنی نازناوەکان\"],\"FEr96N\":[\"ڕووکار\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"لابردنی ئاڤاتارەکان\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"چالاککردنی ئاگەداریەکانی دێسکتۆپ\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"جەخت\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"کۆپیکردنی ئایدی کەناڵ\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"گروپە هاوبەشەکان\"],\"GhCPk1\":[\"کاتێک کە سڕایەوە، هیچ گەڕانەوەیەک نابێت.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"وشەی نهێنی ئێستات بنووسە.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"تکایە ڕێگەیەک هەڵبژێرە بۆ ڕەسەنایەتی داواکارییەکەت.\"],\"HAKBY9\":[\"بارکردنی فایل\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"تێبینیە هەڵگیراوەکان\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"ناردنەوەی دووپاتکردنەوە\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"ئەندام موڤکردن\"],\"ImOQa9\":[\"وەڵامدانەوە\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"چەند لکێندراوێکی نارد\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"ناتوانرێت هەژمار بسڕدرێتەوە تاوەکو سێرڤەرەکان دەسڕدرێنەوە یان دەگوازرێنەوە\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"کردارەکە دووپات بکەرەوە\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"بینینی نوێکارییە کۆنەکان\"],\"JUJmXm\":[\"تکایە بە بەکارهێنانی شێوازی هەڵبژێردراو ئەم کردارە پشتڕاست بکەرەوە.\"],\"JW8mxK\":[\"هەڵیبگرە بۆ تێبینیەکانت\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"بەخێربێیت بۆ\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"هەروەها دەتوانیت کلیکی ڕاست بکەیت لەسەر ئایکۆنی بەکارهێنەر لە سەرەوەی چەپ، یان کلیکی چەپی لەسەر بکە ئەگەر تۆ پێشتر لە ماڵەوەیت.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"سڕینەوەی نامە\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"ناوەڕۆک یاسایەک یان چەند یاسایەک دەشکێنێت\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"دەنگەکان\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"سێرڤەری فەرمی\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"لابردنی هاوڕێ\"],\"LcET2C\":[\"سیاسەتی تایبەتێتی\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"ئێمە ئیمێڵێکی پشتڕاستکردنەوەمان بۆ ناردووی. تکایە ڕێگە بدە تا ۱٠ خولەک بۆ گەیشتنی.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"ناوی سێرڤەر\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"ڕۆیشتن\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"لێرەدا ڕاپۆرتی هەڵە چالاکەکان ببینە.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"با بزانین چۆن دەتوانین بەرنامەی خۆمان باشتر بکەین بە پێدانی فیدباک.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"هەژمارەکەت پشتڕاست کراوەتەوە!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ئیمێڵ\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"تۆ مۆڵەتت نیە بۆ ناردنی نامەکان لەم کەناڵەدا.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"ڕێست کردنەوە\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"ناوی ڕۆڵ\"],\"PWOA0E\":[\"تەنها بە ئاماژە\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ناردنی ئێمبد\"],\"PnzsrT\":[\"سەرچاوەی کۆد\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"بازدان بۆ پێشکەشکردن\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"ئیدڵ\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"دەستکاریکردنی نامە\"],\"QqoBlW\":[\"ئیمەیڵەکەت بپشکنە!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"دووبارە ڕێکخستنەوەی وشەی نهێنی\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"شوێنکەری هەڵە\"],\"S3bIKF\":[\"کۆپیکردنی ئایدی\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"تکایە لە ئەپی ڕەسەنایەتیتدا سکان بکە یان ئەو تۆکنەی خوارەوە بەکاری بهێنە.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"لابردنی ڕەسەنایەتی\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"بەڕێوەبردنی نامەکان\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"بەڕێوەبردنی ڕۆڵەکان\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"ڕێکخستنەکان\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"هەموو هاوڕێکانت بانگهێشت بکە، هەندێک بۆتی ناوازە، وە ئاهەنگێکی گەورە دروست بکە.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"گۆڕینی ئاڤاتار\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"نامەکە نێردرا\"],\"VJScHU\":[\"هۆکار\"],\"VKsaTi\":[\"وەڵامدانەوەی\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"ئەندام دێفنکردن\"],\"VsHxv+\":[\"کۆپیکردنی تێکست\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"پشتڕاستکردنەوەی هەژمارەکەت…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"بەستەرە دەرەکیەکان دەتوانن مەترسیدار بن!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ڕێکخستنەکانی بەرنامە\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"ئەپی ڕەسەنایەتی\"],\"YcVBkL\":[\"نامەکە گەیشت\"],\"YirHq7\":[\"فیدباک\"],\"YlFpiA\":[\"شکست هێنرا لە پشتڕاستکردنەوە!\"],\"Yp+Hi/\":[\"کردنەوەی ڕێکخستنەکان\"],\"Z5HWHd\":[\"هەڵکردن\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"کۆدەکانی گەڕانەوەت\"],\"aAIQg2\":[\"دەرکەوتن\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"ناتوانیت ئەم کردارە پاشەکشە بکەیت.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"کوژاندنەوە\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"ناچالاک کردنی هەمژار\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"مێژووی نامەکان بخوێنێتەوە\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"باندکردنی ئەندام\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"بەڕێوەبردنی مۆڵەتەکان\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"بانگهێشتکەر\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"سڕینەوە\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"هەڵوەشاندنەوە\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"بۆتێکی نوێ دروست بکە\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"بانگێشتکردنی ئەوانی تر\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"نەبینراو\"],\"ekfzWq\":[\"ڕێکخستنەکانی بەکارهێنەر\"],\"etgedT\":[\"ئیمۆجیەکان\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"بەڕێوەبردنی تایبەتمەندی\"],\"fTMMeD\":[\"دروستکردنی بانگهێشت\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"تۆمارکردن\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"هەڵوەشاندنەوەی داواکاریەکە\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ڕۆڵەکان دیاری بکە\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"ڕاپۆرت\"],\"gkBHk/\":[\"دروستکردنی کەناڵ\"],\"gkmjYT\":[\"بەجێهێشتنی سێرڤەر\"],\"go1IWB\":[\"ئەم بەکارهێنەرە تۆی بلۆک کردووە.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"سڕینەوەی کەناڵ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"تکایە ئیمێڵەکەت بنووسە.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"دروستکردن\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"ماڵەوە\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"ئاگەداریەکان\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"بەستن\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"ئاماژەپێکردن\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"بۆت\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"بگەڕێوە بۆ چوونەژوورەوە\"],\"jpJ5AL\":[\"کۆدی گەڕانەوە\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"ئاڤاتار\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"بەخێربێیت!\"],\"knjY+b\":[\"دەتوانی دواتر جارێکی تر بیکەیتەوە، بەڵام لە هەردوو لاوە ون دەبێت.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"زیادکردنی هاوڕێ\"],\"lSGjX7\":[\"بەکارهێنەر جۆینی پەیوەندیەکەی کرد\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"کەناڵەکان\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"ناوی گروپ\"],\"mAYvqA\":[\"سڵاو!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"تۆ ناتوانیت بچیتە ناو ئەکاونتەکەتەوە مەگەر پەیوەندی بە پشتگیرییەوە نەکەیت - بەڵام، داتاکانت ناسڕدرێنەوە.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"دۆخی تایبەتمەند\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"هاوڕێ هاوبەشەکان\"],\"nbzz1A\":[\"كۆد داخڵ بكە\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"ئەمە سەرەتای تێبینیەکانتە.\"],\"o+XJ9D\":[\"گۆڕین\"],\"oB4OOq\":[\"ئەندام باندکردن\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"ئۆنڵاین\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"ئەندام دەرکردن\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"بنەڕەت\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"چوونەدەرەوە\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"بازدان بۆ سەرەتا\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"بەکارهێنەر پەیوەندیەکەی بەجێهێشت\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"هەژماری من\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"هەموو نامەکان\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 کەس کاردانەوەی هەبوو\"],\"rxaY+5\":[\"بێزارم مەکە\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"پێشکەوتوو\"],\"t43mBk\":[\"سێرڤەر ڕاپۆرت بکە\"],\"tBmnPU\":[\"هاوڕێکان\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"بەڕێوەبردنی وێبهووک\"],\"tdTuUv\":[\"بلۆککردنی بەکارهێنەر\"],\"tfDRzk\":[\"هەڵگرتن\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"بەکارهێنەری بلۆککراو\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"بڕۆ بۆ سێرڤەری تێستەرەکان\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"دەرکردنی ئەندام\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"سڕینەوەی ڕۆڵ\"],\"utrCh2\":[\"تایمئاوتکردنی ئەندامەکان\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"دەربارە\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"وەسفی سێرڤەر\"],\"v1kQyJ\":[\"وێبهووکەکان\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"پرۆفایل\"],\"vJum3e\":[\"پشتگیری برۆژەکە بکە بە دۆنەیتکردن - سوپاس!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ڤیدیۆ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"دەستکاریکردنی ناسنامە\"],\"vXIe7J\":[\"زمان\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"تکایە ئەمانە لە شوێنێکی سەلامەتدا هەڵبگرە.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"نامەناردن\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"چوونە نێو کەناڵ\"],\"wL3cK8\":[\"تازەترین\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"ئەندامەکان\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ماسکوڕاید\"],\"xDAtGP\":[\"نامە\"],\"xGVfLh\":[\"بەردەوامبوون\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"بانەکان\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"مەرجەکانی خزمەتگوزاری\"],\"xpgPPI\":[\"بۆتەکانم\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"کۆپیکردنی بەستەر\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"من دووپاتی دەکەمەوە کە من بەلایەنی کەمەوە ۱۸ ساڵم.\"],\"yDOdwQ\":[\"بەڕێوەبردنی بەکارهێنەر\"],\"yIBLq8\":[\"قسەکردن\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"داخستن\"],\"z0hW8A\":[\"بینینی کۆدەکانی گەڕانەوە\"],\"z0t9bb\":[\"چوونەژوورەوە\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"باشە\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"ئەمە سەرەتای گفتوگۆکانی تۆیە.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"کۆنترین\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ckb/messages.mjs b/components/i18n/catalogs/ckb/messages.mjs
new file mode 100644
index 0000000..308bace
--- /dev/null
+++ b/components/i18n/catalogs/ckb/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"میوتکراو\"],\"+YFgJi\":[\"باجەکان\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"نیشانەکردن وەک خوێندراو\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"ڕۆڵێکی نوێ دروست بکە\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"چوونەدەرەوە لە هەموو دانیشتنەکانی تر\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"ناوی بەکارهێنەرێک هەڵبژێرە کە دەتەوێت خەڵک بتوانن بەهۆیەوە تۆ بدۆزنەوە. ئەمە دەتوانرێت دواتر لە ڕێکخستنەکانی بەکارهێنەرەکەتدا بگۆڕدرێت.\"],\"/qQDwm\":[\"دروستکردنی بانگهێشت…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"پەیامی ڕاپۆرت\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"فیدباک پێشکەش بکە\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"کۆپیکردنی ئایدی نامە\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"بەجێهێشتنی گروپ\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"دەتوانیت ڕاپۆرت لەسەر کێشەکان بدەیت و راستەوخۆ گفتوگۆ بکەیت لەگەڵ ئێمە لێرەدا.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"بلۆککراو\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"تۆ ناتوانیت دووبارە بەشداری بکەیتەوە مەگەر دووبارە بانگهێشت بکرێیتەوە.\"],\"3QuNUr\":[\"چەند کەسێک خەریکی نووسینن…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"پێشتر هاوڕێ بووە لەگەڵ ئەم بەکارهێنەرە.\"],\"3T8ziB\":[\"هەژمارێک دروست بکە\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"دانیشتنەکان\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"نازناو\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"زمانەکەت دیاری بکە\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"کۆمەڵگایەک بدۆزەرەوە لەسەر بنەمای خولیاکانت یان بەرژەوەندیەکانت.\"],\"572q5a\":[\"بەکارهێنەر ڕاپۆرت بکە\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"نیشانەکردن وەک نەخوێندراو\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"گۆڕینی نازناو\"],\"5dJK4M\":[\"ڕۆڵەکان\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"پوختە\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ئۆفڵاین\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"بەکارهێنەر\"],\"7SU2U9\":[\"کۆپیکردنی ئایدی سێرڤەر\"],\"7VpPHA\":[\"دووپاتکردنەوە\"],\"7dZnmw\":[\"پەیوەندی\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ناوی بەکارهێنەر\"],\"7vhWI8\":[\"تێپەڕەوشەی نوێ\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"بەڕێوەبردنی سێرڤەر\"],\"8FE4JE\":[\"ئەپی ڕەسەنایەتی چالاک بکە\"],\"8VGnad\":[\"دروستکردنی کۆدی گەڕانەوە\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"وشەی نهێنی\"],\"8aTiea\":[\"خۆکارکردن\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"ناوی بەکارهێنەری دڵخوازی خۆت بنووسە.\"],\"9D85wC\":[\"کۆپیکردنی ئایدی بەکارهێنەر\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"مۆڵەتەکان\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"بان\"],\"9nffag\":[\"بینینی نامە کۆنەکان\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"لابردنی بلۆکی بەکارهێنەر\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"گروپێک دروست بکە\"],\"A9Rhec\":[\"ناوی کەناڵ\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"وشەى نهێنيێكى نوێ دابنێ.\"],\"AU7IRi\":[\"کەناڵی تێکست\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"کەناڵی دەنگ\"],\"BHsrDx\":[\"بانگهێشتەکان\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"پەیام لەسەر پلاتفۆرمێکی تر نێردرا\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"بینینی کەناڵ\"],\"CK7kdd\":[\"سڕینەوەی دۆخ\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"وەسفی کەناڵ\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ناردنی نامە\"],\"CkIs/i\":[\"ئەندام میوتکردن\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"وشەی نهێنی ئێستا\"],\"DDpDsO\":[\"کۆدی بانگهێشتکردن\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"پەیوەندی فەرمی\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"تەواو\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"نامە بارنەکراوە، کلیک بکە بۆ بازدان\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"پێشنیاری تایبەتمەندی پێشکەش بکە\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"دەرکردن\"],\"EdQY6l\":[\"هیچ\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"گفتوگۆکان\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"لکێندراوێکی نارد\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"دروستکردنی هاوپۆل\"],\"F1uGNS\":[\"بەڕێوەبردنی نازناوەکان\"],\"FEr96N\":[\"ڕووکار\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"لابردنی ئاڤاتارەکان\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"چالاککردنی ئاگەداریەکانی دێسکتۆپ\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"جەخت\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"کۆپیکردنی ئایدی کەناڵ\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"گروپە هاوبەشەکان\"],\"GhCPk1\":[\"کاتێک کە سڕایەوە، هیچ گەڕانەوەیەک نابێت.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"وشەی نهێنی ئێستات بنووسە.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"تکایە ڕێگەیەک هەڵبژێرە بۆ ڕەسەنایەتی داواکارییەکەت.\"],\"HAKBY9\":[\"بارکردنی فایل\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"تێبینیە هەڵگیراوەکان\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"ناردنەوەی دووپاتکردنەوە\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"ئەندام موڤکردن\"],\"ImOQa9\":[\"وەڵامدانەوە\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"چەند لکێندراوێکی نارد\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"ناتوانرێت هەژمار بسڕدرێتەوە تاوەکو سێرڤەرەکان دەسڕدرێنەوە یان دەگوازرێنەوە\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"کردارەکە دووپات بکەرەوە\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"بینینی نوێکارییە کۆنەکان\"],\"JUJmXm\":[\"تکایە بە بەکارهێنانی شێوازی هەڵبژێردراو ئەم کردارە پشتڕاست بکەرەوە.\"],\"JW8mxK\":[\"هەڵیبگرە بۆ تێبینیەکانت\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"بەخێربێیت بۆ\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"هەروەها دەتوانیت کلیکی ڕاست بکەیت لەسەر ئایکۆنی بەکارهێنەر لە سەرەوەی چەپ، یان کلیکی چەپی لەسەر بکە ئەگەر تۆ پێشتر لە ماڵەوەیت.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"سڕینەوەی نامە\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"ناوەڕۆک یاسایەک یان چەند یاسایەک دەشکێنێت\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"دەنگەکان\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"سێرڤەری فەرمی\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"لابردنی هاوڕێ\"],\"LcET2C\":[\"سیاسەتی تایبەتێتی\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"ئێمە ئیمێڵێکی پشتڕاستکردنەوەمان بۆ ناردووی. تکایە ڕێگە بدە تا ۱٠ خولەک بۆ گەیشتنی.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"ناوی سێرڤەر\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"ڕۆیشتن\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"لێرەدا ڕاپۆرتی هەڵە چالاکەکان ببینە.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"با بزانین چۆن دەتوانین بەرنامەی خۆمان باشتر بکەین بە پێدانی فیدباک.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"هەژمارەکەت پشتڕاست کراوەتەوە!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ئیمێڵ\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"تۆ مۆڵەتت نیە بۆ ناردنی نامەکان لەم کەناڵەدا.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"ڕێست کردنەوە\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"ناوی ڕۆڵ\"],\"PWOA0E\":[\"تەنها بە ئاماژە\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ناردنی ئێمبد\"],\"PnzsrT\":[\"سەرچاوەی کۆد\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"بازدان بۆ پێشکەشکردن\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"ئیدڵ\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"دەستکاریکردنی نامە\"],\"QqoBlW\":[\"ئیمەیڵەکەت بپشکنە!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"دووبارە ڕێکخستنەوەی وشەی نهێنی\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"شوێنکەری هەڵە\"],\"S3bIKF\":[\"کۆپیکردنی ئایدی\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"تکایە لە ئەپی ڕەسەنایەتیتدا سکان بکە یان ئەو تۆکنەی خوارەوە بەکاری بهێنە.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"لابردنی ڕەسەنایەتی\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"بەڕێوەبردنی نامەکان\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"بەڕێوەبردنی ڕۆڵەکان\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"ڕێکخستنەکان\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"هەموو هاوڕێکانت بانگهێشت بکە، هەندێک بۆتی ناوازە، وە ئاهەنگێکی گەورە دروست بکە.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"گۆڕینی ئاڤاتار\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"نامەکە نێردرا\"],\"VJScHU\":[\"هۆکار\"],\"VKsaTi\":[\"وەڵامدانەوەی\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"ئەندام دێفنکردن\"],\"VsHxv+\":[\"کۆپیکردنی تێکست\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"پشتڕاستکردنەوەی هەژمارەکەت…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"بەستەرە دەرەکیەکان دەتوانن مەترسیدار بن!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ڕێکخستنەکانی بەرنامە\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"ئەپی ڕەسەنایەتی\"],\"YcVBkL\":[\"نامەکە گەیشت\"],\"YirHq7\":[\"فیدباک\"],\"YlFpiA\":[\"شکست هێنرا لە پشتڕاستکردنەوە!\"],\"Yp+Hi/\":[\"کردنەوەی ڕێکخستنەکان\"],\"Z5HWHd\":[\"هەڵکردن\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"کۆدەکانی گەڕانەوەت\"],\"aAIQg2\":[\"دەرکەوتن\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"ناتوانیت ئەم کردارە پاشەکشە بکەیت.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"کوژاندنەوە\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"ناچالاک کردنی هەمژار\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"مێژووی نامەکان بخوێنێتەوە\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"باندکردنی ئەندام\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"بەڕێوەبردنی مۆڵەتەکان\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"بانگهێشتکەر\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"سڕینەوە\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"هەڵوەشاندنەوە\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"بۆتێکی نوێ دروست بکە\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"بانگێشتکردنی ئەوانی تر\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"نەبینراو\"],\"ekfzWq\":[\"ڕێکخستنەکانی بەکارهێنەر\"],\"etgedT\":[\"ئیمۆجیەکان\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"بەڕێوەبردنی تایبەتمەندی\"],\"fTMMeD\":[\"دروستکردنی بانگهێشت\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"تۆمارکردن\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"هەڵوەشاندنەوەی داواکاریەکە\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ڕۆڵەکان دیاری بکە\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"ڕاپۆرت\"],\"gkBHk/\":[\"دروستکردنی کەناڵ\"],\"gkmjYT\":[\"بەجێهێشتنی سێرڤەر\"],\"go1IWB\":[\"ئەم بەکارهێنەرە تۆی بلۆک کردووە.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"سڕینەوەی کەناڵ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"تکایە ئیمێڵەکەت بنووسە.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"دروستکردن\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"ماڵەوە\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"ئاگەداریەکان\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"بەستن\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"ئاماژەپێکردن\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"بۆت\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"بگەڕێوە بۆ چوونەژوورەوە\"],\"jpJ5AL\":[\"کۆدی گەڕانەوە\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"ئاڤاتار\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"بەخێربێیت!\"],\"knjY+b\":[\"دەتوانی دواتر جارێکی تر بیکەیتەوە، بەڵام لە هەردوو لاوە ون دەبێت.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"زیادکردنی هاوڕێ\"],\"lSGjX7\":[\"بەکارهێنەر جۆینی پەیوەندیەکەی کرد\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"کەناڵەکان\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"ناوی گروپ\"],\"mAYvqA\":[\"سڵاو!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"تۆ ناتوانیت بچیتە ناو ئەکاونتەکەتەوە مەگەر پەیوەندی بە پشتگیرییەوە نەکەیت - بەڵام، داتاکانت ناسڕدرێنەوە.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"دۆخی تایبەتمەند\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"هاوڕێ هاوبەشەکان\"],\"nbzz1A\":[\"كۆد داخڵ بكە\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"ئەمە سەرەتای تێبینیەکانتە.\"],\"o+XJ9D\":[\"گۆڕین\"],\"oB4OOq\":[\"ئەندام باندکردن\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"ئۆنڵاین\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"ئەندام دەرکردن\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"بنەڕەت\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"چوونەدەرەوە\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"بازدان بۆ سەرەتا\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"بەکارهێنەر پەیوەندیەکەی بەجێهێشت\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"هەژماری من\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"هەموو نامەکان\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 کەس کاردانەوەی هەبوو\"],\"rxaY+5\":[\"بێزارم مەکە\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"پێشکەوتوو\"],\"t43mBk\":[\"سێرڤەر ڕاپۆرت بکە\"],\"tBmnPU\":[\"هاوڕێکان\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"بەڕێوەبردنی وێبهووک\"],\"tdTuUv\":[\"بلۆککردنی بەکارهێنەر\"],\"tfDRzk\":[\"هەڵگرتن\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"بەکارهێنەری بلۆککراو\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"بڕۆ بۆ سێرڤەری تێستەرەکان\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"دەرکردنی ئەندام\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"سڕینەوەی ڕۆڵ\"],\"utrCh2\":[\"تایمئاوتکردنی ئەندامەکان\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"دەربارە\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"وەسفی سێرڤەر\"],\"v1kQyJ\":[\"وێبهووکەکان\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"پرۆفایل\"],\"vJum3e\":[\"پشتگیری برۆژەکە بکە بە دۆنەیتکردن - سوپاس!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ڤیدیۆ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"دەستکاریکردنی ناسنامە\"],\"vXIe7J\":[\"زمان\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"تکایە ئەمانە لە شوێنێکی سەلامەتدا هەڵبگرە.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"نامەناردن\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"چوونە نێو کەناڵ\"],\"wL3cK8\":[\"تازەترین\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"ئەندامەکان\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ماسکوڕاید\"],\"xDAtGP\":[\"نامە\"],\"xGVfLh\":[\"بەردەوامبوون\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"بانەکان\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"مەرجەکانی خزمەتگوزاری\"],\"xpgPPI\":[\"بۆتەکانم\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"کۆپیکردنی بەستەر\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"من دووپاتی دەکەمەوە کە من بەلایەنی کەمەوە ۱۸ ساڵم.\"],\"yDOdwQ\":[\"بەڕێوەبردنی بەکارهێنەر\"],\"yIBLq8\":[\"قسەکردن\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"داخستن\"],\"z0hW8A\":[\"بینینی کۆدەکانی گەڕانەوە\"],\"z0t9bb\":[\"چوونەژوورەوە\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"باشە\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"ئەمە سەرەتای گفتوگۆکانی تۆیە.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"کۆنترین\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ckb/messages.po b/components/i18n/catalogs/ckb/messages.po
new file mode 100644
index 0000000..d89757f
--- /dev/null
+++ b/components/i18n/catalogs/ckb/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ckb\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 کەس کاردانەوەی هەبوو"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "دەربارە"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "زیادکردنی هاوڕێ"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "پێشکەوتوو"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "هەموو نامەکان"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "پێشتر هاوڕێ بووە لەگەڵ ئەم بەکارهێنەرە."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "دەرکەوتن"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "ڕۆڵەکان دیاری بکە"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "ئەپی ڕەسەنایەتی"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "ئاڤاتار"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "باجەکان"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "بان"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "باندکردنی ئەندام"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "ئەندام باندکردن"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "بانەکان"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "بلۆککردنی بەکارهێنەر"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "بلۆککراو"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "بەکارهێنەری بلۆککراو"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "بۆت"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "شوێنکەری هەڵە"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "هەڵوەشاندنەوە"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "هەڵوەشاندنەوەی داواکاریەکە"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "ناتوانرێت هەژمار بسڕدرێتەوە تاوەکو سێرڤەرەکان دەسڕدرێنەوە یان دەگوازرێنەوە"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "گۆڕین"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "گۆڕینی ئاڤاتار"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "گۆڕینی نازناو"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "وەسفی کەناڵ"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "ناوی کەناڵ"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "کەناڵەکان"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "ئیمەیڵەکەت بپشکنە!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "سڕینەوەی دۆخ"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "ڕێکخستنەکانی بەرنامە"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "داخستن"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "دووپاتکردنەوە"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "کردارەکە دووپات بکەرەوە"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "بەستن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "ناوەڕۆک یاسایەک یان چەند یاسایەک دەشکێنێت"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "بەردەوامبوون"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "گفتوگۆکان"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "کۆپیکردنی ئایدی کەناڵ"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "کۆپیکردنی ئایدی"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "کۆپیکردنی بەستەر"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "کۆپیکردنی ئایدی نامە"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "کۆپیکردنی ئایدی سێرڤەر"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "کۆپیکردنی تێکست"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "کۆپیکردنی ئایدی بەکارهێنەر"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "دروستکردن"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "گروپێک دروست بکە"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "بۆتێکی نوێ دروست بکە"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "ڕۆڵێکی نوێ دروست بکە"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "هەژمارێک دروست بکە"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "دروستکردنی هاوپۆل"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "دروستکردنی کەناڵ"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "دروستکردنی بانگهێشت"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "وشەی نهێنی ئێستا"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "دۆخی تایبەتمەند"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "خۆکارکردن"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "ئەندام دێفنکردن"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "بنەڕەت"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "سڕینەوە"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "سڕینەوەی کەناڵ"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "سڕینەوەی نامە"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "سڕینەوەی ڕۆڵ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "ناچالاک کردنی هەمژار"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "بێزارم مەکە"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "تەواو"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "دەستکاریکردنی ناسنامە"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "دەستکاریکردنی نامە"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "ئیمێڵ"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "ئیمۆجیەکان"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "ئەپی ڕەسەنایەتی چالاک بکە"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "چالاککردنی ئاگەداریەکانی دێسکتۆپ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "وشەى نهێنيێكى نوێ دابنێ."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "چوونە نێو کەناڵ"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "كۆد داخڵ بكە"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "وشەی نهێنی ئێستات بنووسە."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "ناوی بەکارهێنەری دڵخوازی خۆت بنووسە."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "بەستەرە دەرەکیەکان دەتوانن مەترسیدار بن!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "شکست هێنرا لە پشتڕاستکردنەوە!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "فیدباک"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "کۆمەڵگایەک بدۆزەرەوە لەسەر بنەمای خولیاکانت یان بەرژەوەندیەکانت."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "جەخت"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "هاوڕێکان"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "دروستکردنی کۆدی گەڕانەوە"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "دروستکردنی بانگهێشت…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "بگەڕێوە بۆ چوونەژوورەوە"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "بڕۆ بۆ سێرڤەری تێستەرەکان"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "ناوی گروپ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "سڵاو!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "ماڵەوە"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "من دووپاتی دەکەمەوە کە من بەلایەنی کەمەوە ۱۸ ساڵم."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "ئیدڵ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "نەبینراو"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "هەموو هاوڕێکانت بانگهێشت بکە، هەندێک بۆتی ناوازە، وە ئاهەنگێکی گەورە دروست بکە."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "کۆدی بانگهێشتکردن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "بانگێشتکردنی ئەوانی تر"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "بانگهێشتکەر"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "بانگهێشتەکان"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "بازدان بۆ پێشکەشکردن"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "بازدان بۆ سەرەتا"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "دەرکردن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "دەرکردنی ئەندام"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "ئەندام دەرکردن"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "زمان"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "تازەترین"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "ڕۆیشتن"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "بەجێهێشتنی گروپ"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "بەجێهێشتنی سێرڤەر"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "با بزانین چۆن دەتوانین بەرنامەی خۆمان باشتر بکەین بە پێدانی فیدباک."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "چوونەدەرەوە"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "چوونەدەرەوە لە هەموو دانیشتنەکانی تر"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "چوونەژوورەوە"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "بەڕێوەبردنی تایبەتمەندی"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "بەڕێوەبردنی نامەکان"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "بەڕێوەبردنی نازناوەکان"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "بەڕێوەبردنی مۆڵەتەکان"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "بەڕێوەبردنی ڕۆڵەکان"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "بەڕێوەبردنی سێرڤەر"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "بەڕێوەبردنی وێبهووک"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "نیشانەکردن وەک خوێندراو"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "نیشانەکردن وەک نەخوێندراو"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "ماسکوڕاید"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "ئەندامەکان"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "ئاماژەپێکردن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "تەنها بە ئاماژە"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "نامە"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "نامە بارنەکراوە، کلیک بکە بۆ بازدان"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "نامەکە گەیشت"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "نامەکە نێردرا"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "پەیام لەسەر پلاتفۆرمێکی تر نێردرا"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "نامەناردن"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "ئەندام موڤکردن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "ئەندام میوتکردن"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "میوتکراو"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "هاوڕێ هاوبەشەکان"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "گروپە هاوبەشەکان"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "هەژماری من"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "بۆتەکانم"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "تێپەڕەوشەی نوێ"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "نازناو"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "هیچ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "ئاگەداریەکان"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "کوژاندنەوە"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "پەیوەندی فەرمی"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "سێرڤەری فەرمی"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "ئۆفڵاین"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "باشە"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "کۆنترین"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "هەڵکردن"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "کاتێک کە سڕایەوە، هیچ گەڕانەوەیەک نابێت."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "ئۆنڵاین"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "کردنەوەی ڕێکخستنەکان"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "پوختە"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "وشەی نهێنی"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "مۆڵەتەکان"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "ناوی بەکارهێنەرێک هەڵبژێرە کە دەتەوێت خەڵک بتوانن بەهۆیەوە تۆ بدۆزنەوە. ئەمە دەتوانرێت دواتر لە ڕێکخستنەکانی بەکارهێنەرەکەتدا بگۆڕدرێت."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "تکایە بە بەکارهێنانی شێوازی هەڵبژێردراو ئەم کردارە پشتڕاست بکەرەوە."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "تکایە ئیمێڵەکەت بنووسە."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "تکایە ئەمانە لە شوێنێکی سەلامەتدا هەڵبگرە."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "تکایە لە ئەپی ڕەسەنایەتیتدا سکان بکە یان ئەو تۆکنەی خوارەوە بەکاری بهێنە."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "تکایە ڕێگەیەک هەڵبژێرە بۆ ڕەسەنایەتی داواکارییەکەت."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "سیاسەتی تایبەتێتی"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "پرۆفایل"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "مێژووی نامەکان بخوێنێتەوە"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "هۆکار"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "کۆدی گەڕانەوە"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "تۆمارکردن"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "پەیوەندی"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "لابردنی ڕەسەنایەتی"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "لابردنی ئاڤاتارەکان"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "لابردنی هاوڕێ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "وەڵامدانەوە"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "وەڵامدانەوەی"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "ڕاپۆرت"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "پەیامی ڕاپۆرت"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "سێرڤەر ڕاپۆرت بکە"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "بەکارهێنەر ڕاپۆرت بکە"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "ناردنەوەی دووپاتکردنەوە"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "ڕێست کردنەوە"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "دووبارە ڕێکخستنەوەی وشەی نهێنی"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "ناوی ڕۆڵ"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "ڕۆڵەکان"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "هەڵگرتن"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "هەڵیبگرە بۆ تێبینیەکانت"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "تێبینیە هەڵگیراوەکان"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "زمانەکەت دیاری بکە"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "ناردنی ئێمبد"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "ناردنی نامە"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "لکێندراوێکی نارد"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "چەند لکێندراوێکی نارد"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "وەسفی سێرڤەر"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "ناوی سێرڤەر"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "دانیشتنەکان"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "ڕێکخستنەکان"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "چەند کەسێک خەریکی نووسینن…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "دەنگەکان"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "سەرچاوەی کۆد"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "قسەکردن"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "پێشنیاری تایبەتمەندی پێشکەش بکە"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "فیدباک پێشکەش بکە"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "پشتگیری برۆژەکە بکە بە دۆنەیتکردن - سوپاس!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "مەرجەکانی خزمەتگوزاری"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "کەناڵی تێکست"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "ڕووکار"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "ئەمە سەرەتای گفتوگۆکانی تۆیە."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "ئەمە سەرەتای تێبینیەکانتە."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "ئەم بەکارهێنەرە تۆی بلۆک کردووە."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "تایمئاوتکردنی ئەندامەکان"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "لابردنی بلۆکی بەکارهێنەر"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "بارکردنی فایل"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "بەکارهێنەر"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "بەکارهێنەر جۆینی پەیوەندیەکەی کرد"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "بەکارهێنەر پەیوەندیەکەی بەجێهێشت"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "بەڕێوەبردنی بەکارهێنەر"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "ڕێکخستنەکانی بەکارهێنەر"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "ناوی بەکارهێنەر"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "پشتڕاستکردنەوەی هەژمارەکەت…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "ڤیدیۆ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "بینینی کەناڵ"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "لێرەدا ڕاپۆرتی هەڵە چالاکەکان ببینە."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "بینینی نوێکارییە کۆنەکان"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "بینینی کۆدەکانی گەڕانەوە"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "بینینی نامە کۆنەکان"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "کەناڵی دەنگ"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "ئێمە ئیمێڵێکی پشتڕاستکردنەوەمان بۆ ناردووی. تکایە ڕێگە بدە تا ۱٠ خولەک بۆ گەیشتنی."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "وێبهووکەکان"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "بەخێربێیت بۆ"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "بەخێربێیت!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "هەروەها دەتوانیت کلیکی ڕاست بکەیت لەسەر ئایکۆنی بەکارهێنەر لە سەرەوەی چەپ، یان کلیکی چەپی لەسەر بکە ئەگەر تۆ پێشتر لە ماڵەوەیت."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "دەتوانی دواتر جارێکی تر بیکەیتەوە، بەڵام لە هەردوو لاوە ون دەبێت."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "دەتوانیت ڕاپۆرت لەسەر کێشەکان بدەیت و راستەوخۆ گفتوگۆ بکەیت لەگەڵ ئێمە لێرەدا."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "ناتوانیت ئەم کردارە پاشەکشە بکەیت."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "تۆ مۆڵەتت نیە بۆ ناردنی نامەکان لەم کەناڵەدا."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "تۆ ناتوانیت بچیتە ناو ئەکاونتەکەتەوە مەگەر پەیوەندی بە پشتگیرییەوە نەکەیت - بەڵام، داتاکانت ناسڕدرێنەوە."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "تۆ ناتوانیت دووبارە بەشداری بکەیتەوە مەگەر دووبارە بانگهێشت بکرێیتەوە."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "هەژمارەکەت پشتڕاست کراوەتەوە!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "کۆدەکانی گەڕانەوەت"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/cs/messages.js b/components/i18n/catalogs/cs/messages.js
new file mode 100644
index 0000000..56f76b8
--- /dev/null
+++ b/components/i18n/catalogs/cs/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Ztlumeno\"],\"+YFgJi\":[\"Odznaky\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označit jako přečtené\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Vytvořit novou roli\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odhlásit se ze všech ostatních relací\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vyberte si uživatelské jméno, podle kterého vás ostatní uživatelé najdou. Můžete jej kdykoli změnit v nastavení.\"],\"/qQDwm\":[\"Generování pozvánky…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Nahlásit zprávu\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Poslat zpětnou vazbu\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopírovat ID zprávy\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Opustit skupinu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Zde můžete nahlásit problémy a diskutovat o vylepšeních přímo s námi.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Zablokovaní\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nebudete se moci znovu připojit, pokud znovu nedostanete pozvánku.\"],\"3QuNUr\":[\"Několik lidí píše…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"S tímto uživatelem již jste přátelé.\"],\"3T8ziB\":[\"Vytvořit účet\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Relace\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Přezdívka\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Vybrat jazyk\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Najděte komunitu podle svých koníčků a zájmů.\"],\"572q5a\":[\"Nahlásit uživatele\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označit jako nepřečtené\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Změnit přezdívku\"],\"5dJK4M\":[\"Role\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Přehled\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Uživatel\"],\"7SU2U9\":[\"Kopírovat ID serveru\"],\"7VpPHA\":[\"Potvrdit\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Uživatelské jméno\"],\"7vhWI8\":[\"Nové heslo\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Správa serveru\"],\"8FE4JE\":[\"Povolit ověřovací aplikaci\"],\"8VGnad\":[\"Vygenerovat obnovovací kódy\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Heslo\"],\"8aTiea\":[\"Přizpůsobení\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Zadejte své upřednostňované uživatelské jméno.\"],\"9D85wC\":[\"Kopírovat ID uživatele\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Obnovit Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Oprávnění\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Prohlížíte si starší zprávy\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokovat uživatele\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Vytvořit skupinu\"],\"A9Rhec\":[\"Název kanálu\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Zadejte nové heslo.\"],\"AU7IRi\":[\"Textový kanál\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Hlasový kanál\"],\"BHsrDx\":[\"Pozvánky\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Zpráva byla odeslána z jiné platformy\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Zobrazit kanál\"],\"CK7kdd\":[\"Vymazat status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Popis kanálu\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Odesílat zprávy\"],\"CkIs/i\":[\"Vypnout členům mikrofon\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Současné heslo\"],\"DDpDsO\":[\"Kód pozvánky\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiální komunikace\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hotovo\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Zpráva nenačtena, klikněte pro přechod na ni\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Poslat návrh na funkci\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Vyhodit\"],\"EdQY6l\":[\"Nic\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konverzace\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Odeslána příloha\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Vytvořit kategorii\"],\"F1uGNS\":[\"Spravovat přezdívky\"],\"FEr96N\":[\"Motiv\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Odebrat avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Povolit oznámení na ploše\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Soustředěný\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopírovat ID kanálu\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Společné skupiny\"],\"GhCPk1\":[\"Jakmile bude smazaný, už není cesty zpět.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Zadejte své současné heslo.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vyberte metodu pro ověření vašeho požadavku.\"],\"HAKBY9\":[\"Nahrát soubory\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Poznámky\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Znovu poslat ověření\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Přesunout členy\"],\"ImOQa9\":[\"Odpovědět\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Odesláno několik příloh\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Účet nemůžete smazat, dokud neodstraníte nebo nepřevedete servery\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potvrdit akci\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Zobrazit starší aktualizace\"],\"JUJmXm\":[\"Potvrďte tuto akci pomocí vybrané metody.\"],\"JW8mxK\":[\"Uložit do poznámek\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Vítejte v\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Také můžete kliknout pravým na ikonu uživatele vlevo nahoře, nebo na ni kliknout levým, pokud jste již doma.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Odstranit zprávu\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Obsah porušuje jeden nebo více zákonů\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Zvuky\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiální server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Odebrat přítele\"],\"LcET2C\":[\"Zásady ochrany osobních údajů\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Poslali jsme vám ověřovací e-mail. Jeho doručení může trvat až 10 minut.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Název serveru\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Opustit\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Zde si můžete prohlédnout aktuální hlášení chyb.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Dejte nám vědět, jak můžeme naši aplikaci vylepšit.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Váš účet byl ověřen!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nemáte oprávnění k odesílání zpráv do tohoto kanálu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Obnovit\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Odmítnout žádost o přátelství\"],\"PSP1MZ\":[\"Název role\"],\"PWOA0E\":[\"Pouze zmínky\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Odesílat vložení\"],\"PnzsrT\":[\"Zdrojový kód\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Přejít do současnosti\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nečinný\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Upravit zprávu\"],\"QqoBlW\":[\"Zkontrolujte svůj e-mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Obnovit heslo\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Sledování chyb\"],\"S3bIKF\":[\"Kopírovat ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Naskenujte nebo použijte token níže ve vaší ověřovací aplikaci.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Odebrat ověřovací aplikaci\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Spravovat zprávy\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Spravovat role\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nastavení\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pozvěte všechny své přátele, pár cool botů a uspořádejte velkou párty.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Změnit avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Zpráva odeslána\"],\"VJScHU\":[\"Důvod\"],\"VKsaTi\":[\"Odpovídá na\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Vypnout členům zvuk\"],\"VsHxv+\":[\"Kopírovat text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Ověřování vašeho účtu…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externí odkazy mohou být nebezpečné!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Nastavení klienta\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Ověřovací aplikace\"],\"YcVBkL\":[\"Zpráva přijata\"],\"YirHq7\":[\"Zpětná vazba\"],\"YlFpiA\":[\"Nepodařilo se ověřit!\"],\"Yp+Hi/\":[\"Otevřít nastavení\"],\"Z5HWHd\":[\"Zap\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaše obnovovací kódy\"],\"aAIQg2\":[\"Vzhled\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Tato akce je nevratná.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Vyp\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktivovat účet\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Číst historii zpráv\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Zabanovat člena\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Spravovat oprávnění\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Tvůrce pozvánky\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Odstranit\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Zrušit\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Vytvořit nového bota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pozvat další\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Neviditelný\"],\"ekfzWq\":[\"Uživatelská nastavení\"],\"etgedT\":[\"Smajlíci\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Spravovat přizpůsobení\"],\"fTMMeD\":[\"Vytvořit pozvánku\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Zaregistrovat se\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Zrušit žádost o přátelství\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Přidělit role\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Nahlásit\"],\"gkBHk/\":[\"Vytvořit kanál\"],\"gkmjYT\":[\"Opustit server\"],\"go1IWB\":[\"Tento uživatel si vás zablokoval.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Odstranit kanál\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Zadejte svůj e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Vytvořit\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Domů\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Připojit se\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Zmínka\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Zpět na přihlášení\"],\"jpJ5AL\":[\"Obnovovací kód\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Vítejte!\"],\"knjY+b\":[\"Můžete ji později znovu otevřít, zmizí ale na obou stranách.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Přidat přítele\"],\"lSGjX7\":[\"Uživatel se připojil k hovoru\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanály\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Název skupiny\"],\"mAYvqA\":[\"Dobrý den!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Upravit vlastní identitu\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Ke svému účtu nebudete mít přístup, pokud nekontaktujete podporu – vaše data nicméně nebudou smazána.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Vlastní status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Společní přátelé\"],\"nbzz1A\":[\"Zadejte kód\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Toto je začátek vašich poznámek.\"],\"o+XJ9D\":[\"Změnit\"],\"oB4OOq\":[\"Banovat členy\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Vyhazovat členy\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Výchozí\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Odhlásit se\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Přejít na začátek\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Uživatel se odpojil z hovoru\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Můj účet\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Všechny zprávy\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 osoba zareagovala\"],\"rxaY+5\":[\"Nerušit\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Pokročilé\"],\"t43mBk\":[\"Nahlásit server\"],\"tBmnPU\":[\"Přátelé\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Spravovat webhooky\"],\"tdTuUv\":[\"Zablokovat uživatele\"],\"tfDRzk\":[\"Uložit\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokovaný uživatel\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Přejít na server pro testery\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Vyhodit člena\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Odstranit roli\"],\"utrCh2\":[\"Pozastavit členy\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O nás\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Popis serveru\"],\"v1kQyJ\":[\"Webhooky\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podpořte projekt finančním darem - děkujeme!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Upravit identitu\"],\"vXIe7J\":[\"Jazyk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Uložte je na bezpečné místo.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Zprávy\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Vstoupit do kanálu\"],\"wL3cK8\":[\"Nové\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Členové\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskování\"],\"xDAtGP\":[\"Zpráva\"],\"xGVfLh\":[\"Pokračovat\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bany\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Smluvní podmínky\"],\"xpgPPI\":[\"Moji boti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Přijmout žádost o přátelství\"],\"y1eoq1\":[\"Kopírovat odkaz\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potvrzuji, že je mi nejméně 18 let.\"],\"yDOdwQ\":[\"Správa uživatelů\"],\"yIBLq8\":[\"Mluvit\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zavřít\"],\"z0hW8A\":[\"Zobrazit obnovovací kódy\"],\"z0t9bb\":[\"Přihlásit se\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Toto je začátek vaší konverzace.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Staré\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/cs/messages.mjs b/components/i18n/catalogs/cs/messages.mjs
new file mode 100644
index 0000000..a65020a
--- /dev/null
+++ b/components/i18n/catalogs/cs/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Ztlumeno\"],\"+YFgJi\":[\"Odznaky\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označit jako přečtené\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Vytvořit novou roli\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odhlásit se ze všech ostatních relací\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vyberte si uživatelské jméno, podle kterého vás ostatní uživatelé najdou. Můžete jej kdykoli změnit v nastavení.\"],\"/qQDwm\":[\"Generování pozvánky…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Nahlásit zprávu\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Poslat zpětnou vazbu\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopírovat ID zprávy\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Opustit skupinu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Zde můžete nahlásit problémy a diskutovat o vylepšeních přímo s námi.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Zablokovaní\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nebudete se moci znovu připojit, pokud znovu nedostanete pozvánku.\"],\"3QuNUr\":[\"Několik lidí píše…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"S tímto uživatelem již jste přátelé.\"],\"3T8ziB\":[\"Vytvořit účet\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Relace\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Přezdívka\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Vybrat jazyk\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Najděte komunitu podle svých koníčků a zájmů.\"],\"572q5a\":[\"Nahlásit uživatele\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označit jako nepřečtené\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Změnit přezdívku\"],\"5dJK4M\":[\"Role\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Přehled\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Uživatel\"],\"7SU2U9\":[\"Kopírovat ID serveru\"],\"7VpPHA\":[\"Potvrdit\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Uživatelské jméno\"],\"7vhWI8\":[\"Nové heslo\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Správa serveru\"],\"8FE4JE\":[\"Povolit ověřovací aplikaci\"],\"8VGnad\":[\"Vygenerovat obnovovací kódy\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Heslo\"],\"8aTiea\":[\"Přizpůsobení\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Zadejte své upřednostňované uživatelské jméno.\"],\"9D85wC\":[\"Kopírovat ID uživatele\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Obnovit Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Oprávnění\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Prohlížíte si starší zprávy\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokovat uživatele\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Vytvořit skupinu\"],\"A9Rhec\":[\"Název kanálu\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Zadejte nové heslo.\"],\"AU7IRi\":[\"Textový kanál\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Hlasový kanál\"],\"BHsrDx\":[\"Pozvánky\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Zpráva byla odeslána z jiné platformy\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Zobrazit kanál\"],\"CK7kdd\":[\"Vymazat status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Popis kanálu\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Odesílat zprávy\"],\"CkIs/i\":[\"Vypnout členům mikrofon\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Současné heslo\"],\"DDpDsO\":[\"Kód pozvánky\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiální komunikace\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hotovo\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Zpráva nenačtena, klikněte pro přechod na ni\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Poslat návrh na funkci\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Vyhodit\"],\"EdQY6l\":[\"Nic\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konverzace\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Odeslána příloha\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Vytvořit kategorii\"],\"F1uGNS\":[\"Spravovat přezdívky\"],\"FEr96N\":[\"Motiv\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Odebrat avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Povolit oznámení na ploše\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Soustředěný\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopírovat ID kanálu\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Společné skupiny\"],\"GhCPk1\":[\"Jakmile bude smazaný, už není cesty zpět.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Zadejte své současné heslo.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vyberte metodu pro ověření vašeho požadavku.\"],\"HAKBY9\":[\"Nahrát soubory\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Poznámky\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Znovu poslat ověření\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Přesunout členy\"],\"ImOQa9\":[\"Odpovědět\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Odesláno několik příloh\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Účet nemůžete smazat, dokud neodstraníte nebo nepřevedete servery\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potvrdit akci\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Zobrazit starší aktualizace\"],\"JUJmXm\":[\"Potvrďte tuto akci pomocí vybrané metody.\"],\"JW8mxK\":[\"Uložit do poznámek\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Vítejte v\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Také můžete kliknout pravým na ikonu uživatele vlevo nahoře, nebo na ni kliknout levým, pokud jste již doma.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Odstranit zprávu\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Obsah porušuje jeden nebo více zákonů\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Zvuky\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiální server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Odebrat přítele\"],\"LcET2C\":[\"Zásady ochrany osobních údajů\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Poslali jsme vám ověřovací e-mail. Jeho doručení může trvat až 10 minut.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Název serveru\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Opustit\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Zde si můžete prohlédnout aktuální hlášení chyb.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Dejte nám vědět, jak můžeme naši aplikaci vylepšit.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Váš účet byl ověřen!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nemáte oprávnění k odesílání zpráv do tohoto kanálu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Obnovit\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Odmítnout žádost o přátelství\"],\"PSP1MZ\":[\"Název role\"],\"PWOA0E\":[\"Pouze zmínky\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Odesílat vložení\"],\"PnzsrT\":[\"Zdrojový kód\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Přejít do současnosti\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nečinný\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Upravit zprávu\"],\"QqoBlW\":[\"Zkontrolujte svůj e-mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Obnovit heslo\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Sledování chyb\"],\"S3bIKF\":[\"Kopírovat ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Naskenujte nebo použijte token níže ve vaší ověřovací aplikaci.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Odebrat ověřovací aplikaci\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Spravovat zprávy\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Spravovat role\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nastavení\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pozvěte všechny své přátele, pár cool botů a uspořádejte velkou párty.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Změnit avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Zpráva odeslána\"],\"VJScHU\":[\"Důvod\"],\"VKsaTi\":[\"Odpovídá na\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Vypnout členům zvuk\"],\"VsHxv+\":[\"Kopírovat text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Ověřování vašeho účtu…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externí odkazy mohou být nebezpečné!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Nastavení klienta\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Ověřovací aplikace\"],\"YcVBkL\":[\"Zpráva přijata\"],\"YirHq7\":[\"Zpětná vazba\"],\"YlFpiA\":[\"Nepodařilo se ověřit!\"],\"Yp+Hi/\":[\"Otevřít nastavení\"],\"Z5HWHd\":[\"Zap\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaše obnovovací kódy\"],\"aAIQg2\":[\"Vzhled\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Tato akce je nevratná.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Vyp\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktivovat účet\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Číst historii zpráv\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Zabanovat člena\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Spravovat oprávnění\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Tvůrce pozvánky\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Odstranit\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Zrušit\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Vytvořit nového bota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pozvat další\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Neviditelný\"],\"ekfzWq\":[\"Uživatelská nastavení\"],\"etgedT\":[\"Smajlíci\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Spravovat přizpůsobení\"],\"fTMMeD\":[\"Vytvořit pozvánku\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Zaregistrovat se\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Zrušit žádost o přátelství\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Přidělit role\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Nahlásit\"],\"gkBHk/\":[\"Vytvořit kanál\"],\"gkmjYT\":[\"Opustit server\"],\"go1IWB\":[\"Tento uživatel si vás zablokoval.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Odstranit kanál\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Zadejte svůj e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Vytvořit\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Domů\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Připojit se\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Zmínka\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Zpět na přihlášení\"],\"jpJ5AL\":[\"Obnovovací kód\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Vítejte!\"],\"knjY+b\":[\"Můžete ji později znovu otevřít, zmizí ale na obou stranách.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Přidat přítele\"],\"lSGjX7\":[\"Uživatel se připojil k hovoru\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanály\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Název skupiny\"],\"mAYvqA\":[\"Dobrý den!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Upravit vlastní identitu\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Ke svému účtu nebudete mít přístup, pokud nekontaktujete podporu – vaše data nicméně nebudou smazána.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Vlastní status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Společní přátelé\"],\"nbzz1A\":[\"Zadejte kód\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Toto je začátek vašich poznámek.\"],\"o+XJ9D\":[\"Změnit\"],\"oB4OOq\":[\"Banovat členy\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Vyhazovat členy\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Výchozí\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Odhlásit se\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Přejít na začátek\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Uživatel se odpojil z hovoru\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Můj účet\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Všechny zprávy\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 osoba zareagovala\"],\"rxaY+5\":[\"Nerušit\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Pokročilé\"],\"t43mBk\":[\"Nahlásit server\"],\"tBmnPU\":[\"Přátelé\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Spravovat webhooky\"],\"tdTuUv\":[\"Zablokovat uživatele\"],\"tfDRzk\":[\"Uložit\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokovaný uživatel\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Přejít na server pro testery\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Vyhodit člena\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Odstranit roli\"],\"utrCh2\":[\"Pozastavit členy\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O nás\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Popis serveru\"],\"v1kQyJ\":[\"Webhooky\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podpořte projekt finančním darem - děkujeme!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Upravit identitu\"],\"vXIe7J\":[\"Jazyk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Uložte je na bezpečné místo.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Zprávy\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Vstoupit do kanálu\"],\"wL3cK8\":[\"Nové\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Členové\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskování\"],\"xDAtGP\":[\"Zpráva\"],\"xGVfLh\":[\"Pokračovat\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bany\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Smluvní podmínky\"],\"xpgPPI\":[\"Moji boti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Přijmout žádost o přátelství\"],\"y1eoq1\":[\"Kopírovat odkaz\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potvrzuji, že je mi nejméně 18 let.\"],\"yDOdwQ\":[\"Správa uživatelů\"],\"yIBLq8\":[\"Mluvit\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zavřít\"],\"z0hW8A\":[\"Zobrazit obnovovací kódy\"],\"z0t9bb\":[\"Přihlásit se\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Toto je začátek vaší konverzace.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Staré\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/cs/messages.po b/components/i18n/catalogs/cs/messages.po
new file mode 100644
index 0000000..cf0c3a0
--- /dev/null
+++ b/components/i18n/catalogs/cs/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: cs\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 osoba zareagovala"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "O nás"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Přijmout žádost o přátelství"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Přidat přítele"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Pokročilé"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Všechny zprávy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "S tímto uživatelem již jste přátelé."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Vzhled"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Přidělit role"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Ověřovací aplikace"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Odznaky"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Zabanovat člena"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Banovat členy"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bany"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Zablokovat uživatele"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Zablokovaní"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blokovaný uživatel"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Sledování chyb"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Zrušit žádost o přátelství"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Účet nemůžete smazat, dokud neodstraníte nebo nepřevedete servery"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Změnit"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Změnit avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Změnit přezdívku"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Popis kanálu"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Název kanálu"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanály"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Zkontrolujte svůj e-mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Vymazat status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Nastavení klienta"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Zavřít"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Potvrdit"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Potvrdit akci"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Připojit se"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Obsah porušuje jeden nebo více zákonů"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Pokračovat"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Konverzace"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopírovat ID kanálu"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopírovat ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopírovat odkaz"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopírovat ID zprávy"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopírovat ID serveru"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopírovat text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopírovat ID uživatele"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Vytvořit"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Vytvořit skupinu"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Vytvořit nového bota"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Vytvořit novou roli"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Vytvořit účet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Vytvořit kategorii"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Vytvořit kanál"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Vytvořit pozvánku"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Současné heslo"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Vlastní status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Přizpůsobení"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Vypnout členům zvuk"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Výchozí"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Odstranit"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Odstranit kanál"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Odstranit zprávu"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Odstranit roli"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Deaktivovat účet"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Nerušit"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Hotovo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Upravit identitu"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Upravit zprávu"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Upravit vlastní identitu"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Smajlíci"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Povolit ověřovací aplikaci"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Povolit oznámení na ploše"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Zadejte nové heslo."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Vstoupit do kanálu"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Zadejte kód"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Zadejte své současné heslo."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Zadejte své upřednostňované uživatelské jméno."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Externí odkazy mohou být nebezpečné!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Nepodařilo se ověřit!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Zpětná vazba"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Najděte komunitu podle svých koníčků a zájmů."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Soustředěný"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Přátelé"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Vygenerovat obnovovací kódy"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generování pozvánky…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Zpět na přihlášení"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Přejít na server pro testery"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Název skupiny"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Dobrý den!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Domů"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Potvrzuji, že je mi nejméně 18 let."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Nečinný"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Neviditelný"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Pozvěte všechny své přátele, pár cool botů a uspořádejte velkou párty."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kód pozvánky"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Pozvat další"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Tvůrce pozvánky"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Pozvánky"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Přejít do současnosti"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Přejít na začátek"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Vyhodit"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Vyhodit člena"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Vyhazovat členy"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Jazyk"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Nové"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Opustit"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Opustit skupinu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Opustit server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Dejte nám vědět, jak můžeme naši aplikaci vylepšit."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Odhlásit se"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Odhlásit se ze všech ostatních relací"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Přihlásit se"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Spravovat přizpůsobení"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Spravovat zprávy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Spravovat přezdívky"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Spravovat oprávnění"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Spravovat role"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Správa serveru"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Spravovat webhooky"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Označit jako přečtené"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Označit jako nepřečtené"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskování"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Členové"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Zmínka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Pouze zmínky"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Zpráva"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Zpráva nenačtena, klikněte pro přechod na ni"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Zpráva přijata"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Zpráva odeslána"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Zpráva byla odeslána z jiné platformy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Zprávy"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Přesunout členy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Vypnout členům mikrofon"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Ztlumeno"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Společní přátelé"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Společné skupiny"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Můj účet"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Moji boti"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nové heslo"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Přezdívka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nic"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Oznámení"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Vyp"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Oficiální komunikace"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Oficiální server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Staré"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Zap"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Jakmile bude smazaný, už není cesty zpět."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Otevřít nastavení"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Přehled"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Heslo"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Oprávnění"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Vyberte si uživatelské jméno, podle kterého vás ostatní uživatelé najdou. Můžete jej kdykoli změnit v nastavení."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Potvrďte tuto akci pomocí vybrané metody."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Zadejte svůj e-mail."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Uložte je na bezpečné místo."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Naskenujte nebo použijte token níže ve vaší ověřovací aplikaci."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Vyberte metodu pro ověření vašeho požadavku."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Zásady ochrany osobních údajů"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Číst historii zpráv"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Důvod"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Obnovovací kód"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Zaregistrovat se"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Odmítnout žádost o přátelství"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevance"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Odebrat ověřovací aplikaci"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Odebrat avatar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Odebrat přítele"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Odpovědět"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Odpovídá na"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Nahlásit"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Nahlásit zprávu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Nahlásit server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Nahlásit uživatele"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Znovu poslat ověření"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Obnovit"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Obnovit heslo"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Obnovit Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Název role"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Role"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Uložit"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Uložit do poznámek"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Poznámky"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Vybrat jazyk"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Odesílat vložení"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Odesílat zprávy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Odeslána příloha"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Odesláno několik příloh"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Popis serveru"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Název serveru"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Relace"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Nastavení"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Několik lidí píše…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Zvuky"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Zdrojový kód"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Mluvit"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Poslat návrh na funkci"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Poslat zpětnou vazbu"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Podpořte projekt finančním darem - děkujeme!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Smluvní podmínky"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Textový kanál"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Motiv"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Toto je začátek vaší konverzace."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Toto je začátek vašich poznámek."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Tento uživatel si vás zablokoval."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Pozastavit členy"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Odblokovat uživatele"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Nahrát soubory"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Uživatel"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Uživatel se připojil k hovoru"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Uživatel se odpojil z hovoru"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Správa uživatelů"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Uživatelská nastavení"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Uživatelské jméno"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Ověřování vašeho účtu…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Zobrazit kanál"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Zde si můžete prohlédnout aktuální hlášení chyb."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Zobrazit starší aktualizace"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Zobrazit obnovovací kódy"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Prohlížíte si starší zprávy"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Hlasový kanál"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Poslali jsme vám ověřovací e-mail. Jeho doručení může trvat až 10 minut."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooky"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Vítejte v"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Vítejte!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Také můžete kliknout pravým na ikonu uživatele vlevo nahoře, nebo na ni kliknout levým, pokud jste již doma."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Můžete ji později znovu otevřít, zmizí ale na obou stranách."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Zde můžete nahlásit problémy a diskutovat o vylepšeních přímo s námi."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Tato akce je nevratná."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Nemáte oprávnění k odesílání zpráv do tohoto kanálu."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Ke svému účtu nebudete mít přístup, pokud nekontaktujete podporu – vaše data nicméně nebudou smazána."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nebudete se moci znovu připojit, pokud znovu nedostanete pozvánku."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Váš účet byl ověřen!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Vaše obnovovací kódy"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/da/messages.js b/components/i18n/catalogs/da/messages.js
new file mode 100644
index 0000000..39b5703
--- /dev/null
+++ b/components/i18n/catalogs/da/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markér som læst\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Opret en ny rolle\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log ud af alle andre sessioner\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vælg et brugernavn, som folk kan finde dig på. Dette kan ændres senere i dine brugerindstillinger.\"],\"/qQDwm\":[\"Genererer invitation…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Rapportér besked\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Indsend feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiér besked-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Forlad gruppe\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Du kan rapportere problemer og diskutere forbedringer med os direkte her.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokeret\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du vil ikke kunne deltage igen, medmindre du inviteres igen.\"],\"3QuNUr\":[\"Adskillige personer skriver…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Allerede venner med denne bruger.\"],\"3T8ziB\":[\"Opret en konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioner\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Kaldenavn\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Vælg dit sprog\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find et fællesskab baseret på dine hobbyer eller interesser.\"],\"572q5a\":[\"Rapportér bruger\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markér som ulæst\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ændr kaldenavn\"],\"5dJK4M\":[\"Roller\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Oversigt\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Bruger\"],\"7SU2U9\":[\"Kopiér server-ID\"],\"7VpPHA\":[\"Bekræft\"],\"7dZnmw\":[\"Relevans\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Brugernavn\"],\"7vhWI8\":[\"Ny adgangskode\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrer server\"],\"8FE4JE\":[\"Aktiver godkendelsesapp\"],\"8VGnad\":[\"Generér gendannelseskoder\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Adgangskode\"],\"8aTiea\":[\"Tilpasning\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Indtast dit foretrukne brugernavn.\"],\"9D85wC\":[\"Kopiér bruger-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Nulstil token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Rettigheder\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Udeluk\"],\"9nffag\":[\"Ser ældre beskeder\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Fjern blokering af bruger\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Opret en gruppe\"],\"A9Rhec\":[\"Kanalnavn\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Indtast en ny adgangskode.\"],\"AU7IRi\":[\"Tekstkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Stemmekanal\"],\"BHsrDx\":[\"Invitationer\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Beskeden blev sendt på en anden platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Se kanal\"],\"CK7kdd\":[\"Ryd status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeskrivelse\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send beskeder\"],\"CkIs/i\":[\"Mute medlemmer\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nuværende adgangskode\"],\"DDpDsO\":[\"Invitationskode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officiel kommunikation\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Færdig\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Beskeden er ikke indlæst; klik for at hoppe\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Indsend forslag til funktioner\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Smid ud\"],\"EdQY6l\":[\"Ingen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Samtaler\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sendte en vedhæftelse\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Opret kategori\"],\"F1uGNS\":[\"Administrer kaldenavne\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Fjern avatarer\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktiver skrivebordsnotifikationer\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiér kanal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Fælles grupper\"],\"GhCPk1\":[\"Når først den er slettet, er der ingen vej tilbage.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Indtast din nuværende adgangskode.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vælg venligst en metode til at godkende din anmodning.\"],\"HAKBY9\":[\"Upload filer\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Gemte noter\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Send bekræftelse igen\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Flyt medlemmer\"],\"ImOQa9\":[\"Svar\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sendte flere vedhæftelser\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kan ikke slette konto, før servere er slettet eller overført\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Bekræft handling\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Se ældre opdateringer\"],\"JUJmXm\":[\"Bekræft venligst denne handling med den valgte metode.\"],\"JW8mxK\":[\"Gem i dine noter\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Velkommen til\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kan også højreklikke på brugerikonet øverst til venstre eller venstreklikke, hvis du allerede er på startsiden.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Slet besked\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Indholdet bryder en eller flere love\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Lyde\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiel server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Fjern ven\"],\"LcET2C\":[\"Privatlivspolitik\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Vi har sendt dig en bekræftelses-e-mail. Der kan gå op til 10 minutter, før den ankommer.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernavn\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Forlad\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Se aktuelt aktive fejlrapporter her.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Fortæl os hvordan vi kan forbedre appen ved at give os feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Din konto er blevet bekræftet!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du har ikke tilladelse til at sende beskeder i denne kanal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Nulstil\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Afvis venneanmodning\"],\"PSP1MZ\":[\"Rollenavn\"],\"PWOA0E\":[\"Kun omtaler\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send indlejringer\"],\"PnzsrT\":[\"Kildekode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Hop til nutiden\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Rediger besked\"],\"QqoBlW\":[\"Tjek din mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Nulstil adgangskode\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Fejlsporing\"],\"S3bIKF\":[\"Kopiér ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Scan eller brug venligst nedenstående token i din godkendelsesapp.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Fjern autentifikator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Administrer beskeder\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Administrer roller\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Indstillinger\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inviter alle dine venner og nogle seje bots, og hold en stor fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Skift avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Besked sendt\"],\"VJScHU\":[\"Årsag\"],\"VKsaTi\":[\"Svarer på\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Gøre medlemmer døve\"],\"VsHxv+\":[\"Kopiér tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Bekræfter din konto…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Eksterne links kan være farlige!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientindstillinger\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Godkendelsesapp\"],\"YcVBkL\":[\"Besked modtaget\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Bekræftelse mislykkedes!\"],\"Yp+Hi/\":[\"Åbn indstillinger\"],\"Z5HWHd\":[\"Til\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Dine gendannelseskoder\"],\"aAIQg2\":[\"Udseende\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Du kan ikke fortryde denne handling.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Fra\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktiver konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Læs beskedhistorik\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Udeluk medlem\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Administrer rettigheder\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitere\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Slet\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annuller\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Opret en ny bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviter andre\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Usynlig\"],\"ekfzWq\":[\"Brugerindstillinger\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Administrer tilpasning\"],\"fTMMeD\":[\"Opret invitation\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Tilmeld\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annuller venneanmodning\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Tildel roller\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapportér\"],\"gkBHk/\":[\"Opret kanal\"],\"gkmjYT\":[\"Forlad server\"],\"go1IWB\":[\"Denne bruger har blokeret dig.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Slet kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Indtast din e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Opret\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hjem\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikationer\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Forbind\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Nævn\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Gå tilbage til login\"],\"jpJ5AL\":[\"Gendannelseskode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Velkommen!\"],\"knjY+b\":[\"Du kan åbne den igen senere, men den forsvinder på begge sider.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Tilføj ven\"],\"lSGjX7\":[\"Bruger tilsluttede sig opkald\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaler\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppenavn\"],\"mAYvqA\":[\"Hej!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Rediger din identitet\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du vil ikke kunne få adgang til din konto, medmindre du kontakter support – dine data slettes dog ikke.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Brugerdefineret status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Fælles venner\"],\"nbzz1A\":[\"Indtast kode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dette er starten på dine noter.\"],\"o+XJ9D\":[\"Ændr\"],\"oB4OOq\":[\"Udeluk medlemmer\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Smid medlemmer ud\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log ud\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hop til begyndelsen\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Bruger forlod opkald\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Min konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle beskeder\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reagerede\"],\"rxaY+5\":[\"Forstyr ikke\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanceret\"],\"t43mBk\":[\"Rapportér server\"],\"tBmnPU\":[\"Venner\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Administrer webhooks\"],\"tdTuUv\":[\"Bloker bruger\"],\"tfDRzk\":[\"Gem\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokeret bruger\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gå til testernes server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Smid medlem ud\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Slet rolle\"],\"utrCh2\":[\"Timeout medlemmer\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Om\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeskrivelse\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Støt projektet med en donation – tak!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Rediger identitet\"],\"vXIe7J\":[\"Sprog\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Gem dem et sikkert sted.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Beskeder\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Gå ind i kanal\"],\"wL3cK8\":[\"Seneste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Medlemmer\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerade\"],\"xDAtGP\":[\"Besked\"],\"xGVfLh\":[\"Fortsæt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Udelukkelser\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Servicevilkår\"],\"xpgPPI\":[\"Mine bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Acceptér venneanmodning\"],\"y1eoq1\":[\"Kopiér link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Jeg bekræfter, at jeg er mindst 18 år gammel.\"],\"yDOdwQ\":[\"Brugeradministration\"],\"yIBLq8\":[\"Tale\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Luk\"],\"z0hW8A\":[\"Se gendannelseskoder\"],\"z0t9bb\":[\"Log ind\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dette er starten på jeres samtale.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Ældste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/da/messages.mjs b/components/i18n/catalogs/da/messages.mjs
new file mode 100644
index 0000000..15d6235
--- /dev/null
+++ b/components/i18n/catalogs/da/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markér som læst\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Opret en ny rolle\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log ud af alle andre sessioner\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vælg et brugernavn, som folk kan finde dig på. Dette kan ændres senere i dine brugerindstillinger.\"],\"/qQDwm\":[\"Genererer invitation…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Rapportér besked\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Indsend feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiér besked-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Forlad gruppe\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Du kan rapportere problemer og diskutere forbedringer med os direkte her.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokeret\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du vil ikke kunne deltage igen, medmindre du inviteres igen.\"],\"3QuNUr\":[\"Adskillige personer skriver…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Allerede venner med denne bruger.\"],\"3T8ziB\":[\"Opret en konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioner\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Kaldenavn\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Vælg dit sprog\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find et fællesskab baseret på dine hobbyer eller interesser.\"],\"572q5a\":[\"Rapportér bruger\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markér som ulæst\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ændr kaldenavn\"],\"5dJK4M\":[\"Roller\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Oversigt\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Bruger\"],\"7SU2U9\":[\"Kopiér server-ID\"],\"7VpPHA\":[\"Bekræft\"],\"7dZnmw\":[\"Relevans\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Brugernavn\"],\"7vhWI8\":[\"Ny adgangskode\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrer server\"],\"8FE4JE\":[\"Aktiver godkendelsesapp\"],\"8VGnad\":[\"Generér gendannelseskoder\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Adgangskode\"],\"8aTiea\":[\"Tilpasning\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Indtast dit foretrukne brugernavn.\"],\"9D85wC\":[\"Kopiér bruger-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Nulstil token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Rettigheder\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Udeluk\"],\"9nffag\":[\"Ser ældre beskeder\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Fjern blokering af bruger\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Opret en gruppe\"],\"A9Rhec\":[\"Kanalnavn\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Indtast en ny adgangskode.\"],\"AU7IRi\":[\"Tekstkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Stemmekanal\"],\"BHsrDx\":[\"Invitationer\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Beskeden blev sendt på en anden platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Se kanal\"],\"CK7kdd\":[\"Ryd status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeskrivelse\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send beskeder\"],\"CkIs/i\":[\"Mute medlemmer\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nuværende adgangskode\"],\"DDpDsO\":[\"Invitationskode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officiel kommunikation\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Færdig\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Beskeden er ikke indlæst; klik for at hoppe\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Indsend forslag til funktioner\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Smid ud\"],\"EdQY6l\":[\"Ingen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Samtaler\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sendte en vedhæftelse\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Opret kategori\"],\"F1uGNS\":[\"Administrer kaldenavne\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Fjern avatarer\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktiver skrivebordsnotifikationer\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiér kanal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Fælles grupper\"],\"GhCPk1\":[\"Når først den er slettet, er der ingen vej tilbage.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Indtast din nuværende adgangskode.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vælg venligst en metode til at godkende din anmodning.\"],\"HAKBY9\":[\"Upload filer\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Gemte noter\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Send bekræftelse igen\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Flyt medlemmer\"],\"ImOQa9\":[\"Svar\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sendte flere vedhæftelser\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kan ikke slette konto, før servere er slettet eller overført\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Bekræft handling\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Se ældre opdateringer\"],\"JUJmXm\":[\"Bekræft venligst denne handling med den valgte metode.\"],\"JW8mxK\":[\"Gem i dine noter\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Velkommen til\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kan også højreklikke på brugerikonet øverst til venstre eller venstreklikke, hvis du allerede er på startsiden.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Slet besked\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Indholdet bryder en eller flere love\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Lyde\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiel server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Fjern ven\"],\"LcET2C\":[\"Privatlivspolitik\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Vi har sendt dig en bekræftelses-e-mail. Der kan gå op til 10 minutter, før den ankommer.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernavn\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Forlad\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Se aktuelt aktive fejlrapporter her.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Fortæl os hvordan vi kan forbedre appen ved at give os feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Din konto er blevet bekræftet!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du har ikke tilladelse til at sende beskeder i denne kanal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Nulstil\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Afvis venneanmodning\"],\"PSP1MZ\":[\"Rollenavn\"],\"PWOA0E\":[\"Kun omtaler\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send indlejringer\"],\"PnzsrT\":[\"Kildekode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Hop til nutiden\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Rediger besked\"],\"QqoBlW\":[\"Tjek din mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Nulstil adgangskode\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Fejlsporing\"],\"S3bIKF\":[\"Kopiér ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Scan eller brug venligst nedenstående token i din godkendelsesapp.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Fjern autentifikator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Administrer beskeder\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Administrer roller\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Indstillinger\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inviter alle dine venner og nogle seje bots, og hold en stor fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Skift avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Besked sendt\"],\"VJScHU\":[\"Årsag\"],\"VKsaTi\":[\"Svarer på\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Gøre medlemmer døve\"],\"VsHxv+\":[\"Kopiér tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Bekræfter din konto…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Eksterne links kan være farlige!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientindstillinger\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Godkendelsesapp\"],\"YcVBkL\":[\"Besked modtaget\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Bekræftelse mislykkedes!\"],\"Yp+Hi/\":[\"Åbn indstillinger\"],\"Z5HWHd\":[\"Til\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Dine gendannelseskoder\"],\"aAIQg2\":[\"Udseende\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Du kan ikke fortryde denne handling.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Fra\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktiver konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Læs beskedhistorik\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Udeluk medlem\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Administrer rettigheder\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitere\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Slet\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annuller\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Opret en ny bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviter andre\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Usynlig\"],\"ekfzWq\":[\"Brugerindstillinger\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Administrer tilpasning\"],\"fTMMeD\":[\"Opret invitation\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Tilmeld\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annuller venneanmodning\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Tildel roller\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapportér\"],\"gkBHk/\":[\"Opret kanal\"],\"gkmjYT\":[\"Forlad server\"],\"go1IWB\":[\"Denne bruger har blokeret dig.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Slet kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Indtast din e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Opret\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hjem\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikationer\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Forbind\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Nævn\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Gå tilbage til login\"],\"jpJ5AL\":[\"Gendannelseskode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Velkommen!\"],\"knjY+b\":[\"Du kan åbne den igen senere, men den forsvinder på begge sider.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Tilføj ven\"],\"lSGjX7\":[\"Bruger tilsluttede sig opkald\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaler\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppenavn\"],\"mAYvqA\":[\"Hej!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Rediger din identitet\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du vil ikke kunne få adgang til din konto, medmindre du kontakter support – dine data slettes dog ikke.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Brugerdefineret status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Fælles venner\"],\"nbzz1A\":[\"Indtast kode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dette er starten på dine noter.\"],\"o+XJ9D\":[\"Ændr\"],\"oB4OOq\":[\"Udeluk medlemmer\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Smid medlemmer ud\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log ud\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hop til begyndelsen\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Bruger forlod opkald\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Min konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle beskeder\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reagerede\"],\"rxaY+5\":[\"Forstyr ikke\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanceret\"],\"t43mBk\":[\"Rapportér server\"],\"tBmnPU\":[\"Venner\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Administrer webhooks\"],\"tdTuUv\":[\"Bloker bruger\"],\"tfDRzk\":[\"Gem\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokeret bruger\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gå til testernes server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Smid medlem ud\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Slet rolle\"],\"utrCh2\":[\"Timeout medlemmer\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Om\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeskrivelse\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Støt projektet med en donation – tak!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Rediger identitet\"],\"vXIe7J\":[\"Sprog\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Gem dem et sikkert sted.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Beskeder\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Gå ind i kanal\"],\"wL3cK8\":[\"Seneste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Medlemmer\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerade\"],\"xDAtGP\":[\"Besked\"],\"xGVfLh\":[\"Fortsæt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Udelukkelser\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Servicevilkår\"],\"xpgPPI\":[\"Mine bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Acceptér venneanmodning\"],\"y1eoq1\":[\"Kopiér link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Jeg bekræfter, at jeg er mindst 18 år gammel.\"],\"yDOdwQ\":[\"Brugeradministration\"],\"yIBLq8\":[\"Tale\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Luk\"],\"z0hW8A\":[\"Se gendannelseskoder\"],\"z0t9bb\":[\"Log ind\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dette er starten på jeres samtale.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Ældste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/da/messages.po b/components/i18n/catalogs/da/messages.po
new file mode 100644
index 0000000..300bd24
--- /dev/null
+++ b/components/i18n/catalogs/da/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: da\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 person reagerede"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Om"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Acceptér venneanmodning"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Tilføj ven"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avanceret"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Alle beskeder"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Allerede venner med denne bruger."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Udseende"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Tildel roller"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Godkendelsesapp"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Badges"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Udeluk"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Udeluk medlem"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Udeluk medlemmer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Udelukkelser"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloker bruger"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blokeret"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blokeret bruger"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Fejlsporing"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Annuller"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Annuller venneanmodning"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Kan ikke slette konto, før servere er slettet eller overført"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Ændr"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Skift avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Ændr kaldenavn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanalbeskrivelse"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanalnavn"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanaler"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Tjek din mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Ryd status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Klientindstillinger"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Luk"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Bekræft"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Bekræft handling"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Forbind"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Indholdet bryder en eller flere love"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Fortsæt"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Samtaler"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopiér kanal-ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopiér ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopiér link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopiér besked-ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopiér server-ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopiér tekst"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopiér bruger-ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Opret"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Opret en gruppe"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Opret en ny bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Opret en ny rolle"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Opret en konto"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Opret kategori"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Opret kanal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Opret invitation"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Nuværende adgangskode"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Brugerdefineret status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Tilpasning"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Gøre medlemmer døve"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Standard"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Slet"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Slet kanal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Slet besked"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Slet rolle"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Deaktiver konto"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Forstyr ikke"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Færdig"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Rediger identitet"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Rediger besked"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Rediger din identitet"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Aktiver godkendelsesapp"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Aktiver skrivebordsnotifikationer"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Indtast en ny adgangskode."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Gå ind i kanal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Indtast kode"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Indtast din nuværende adgangskode."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Indtast dit foretrukne brugernavn."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Eksterne links kan være farlige!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Bekræftelse mislykkedes!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Find et fællesskab baseret på dine hobbyer eller interesser."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Venner"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generér gendannelseskoder"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Genererer invitation…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Gå tilbage til login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Gå til testernes server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Gruppenavn"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hej!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Hjem"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Jeg bekræfter, at jeg er mindst 18 år gammel."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inaktiv"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Usynlig"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Inviter alle dine venner og nogle seje bots, og hold en stor fest."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Invitationskode"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Inviter andre"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Invitere"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitationer"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Hop til nutiden"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Hop til begyndelsen"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Smid ud"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Smid medlem ud"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Smid medlemmer ud"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Sprog"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Seneste"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Forlad"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Forlad gruppe"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Forlad server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Fortæl os hvordan vi kan forbedre appen ved at give os feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Log ud"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Log ud af alle andre sessioner"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Log ind"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Administrer tilpasning"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Administrer beskeder"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Administrer kaldenavne"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Administrer rettigheder"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Administrer roller"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Administrer server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Administrer webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Markér som læst"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Markér som ulæst"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskerade"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Medlemmer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Nævn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Kun omtaler"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Besked"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Beskeden er ikke indlæst; klik for at hoppe"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Besked modtaget"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Besked sendt"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Beskeden blev sendt på en anden platform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Beskeder"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Flyt medlemmer"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Mute medlemmer"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Muted"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Fælles venner"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Fælles grupper"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Min konto"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mine bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Ny adgangskode"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Kaldenavn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ingen"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifikationer"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Fra"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Officiel kommunikation"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Officiel server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Ældste"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Til"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Når først den er slettet, er der ingen vej tilbage."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Åbn indstillinger"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Oversigt"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Adgangskode"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Rettigheder"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Vælg et brugernavn, som folk kan finde dig på. Dette kan ændres senere i dine brugerindstillinger."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Bekræft venligst denne handling med den valgte metode."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Indtast din e-mail."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Gem dem et sikkert sted."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Scan eller brug venligst nedenstående token i din godkendelsesapp."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Vælg venligst en metode til at godkende din anmodning."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privatlivspolitik"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Læs beskedhistorik"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Årsag"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Gendannelseskode"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Tilmeld"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Afvis venneanmodning"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevans"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Fjern autentifikator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Fjern avatarer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Fjern ven"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Svar"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Svarer på"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Rapportér"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Rapportér besked"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Rapportér server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Rapportér bruger"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Send bekræftelse igen"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Nulstil"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Nulstil adgangskode"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Nulstil token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rollenavn"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roller"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Gem"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Gem i dine noter"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Gemte noter"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Vælg dit sprog"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Send indlejringer"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Send beskeder"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Sendte en vedhæftelse"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Sendte flere vedhæftelser"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Serverbeskrivelse"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Servernavn"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessioner"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Indstillinger"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Adskillige personer skriver…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Lyde"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Kildekode"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Tale"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Indsend forslag til funktioner"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Indsend feedback"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Støt projektet med en donation – tak!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Servicevilkår"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Tekstkanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Dette er starten på jeres samtale."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Dette er starten på dine noter."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Denne bruger har blokeret dig."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout medlemmer"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Fjern blokering af bruger"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Upload filer"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Bruger"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Bruger tilsluttede sig opkald"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Bruger forlod opkald"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Brugeradministration"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Brugerindstillinger"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Brugernavn"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Bekræfter din konto…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Se kanal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Se aktuelt aktive fejlrapporter her."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Se ældre opdateringer"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Se gendannelseskoder"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Ser ældre beskeder"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Stemmekanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Vi har sendt dig en bekræftelses-e-mail. Der kan gå op til 10 minutter, før den ankommer."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Velkommen til"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Velkommen!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Du kan også højreklikke på brugerikonet øverst til venstre eller venstreklikke, hvis du allerede er på startsiden."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Du kan åbne den igen senere, men den forsvinder på begge sider."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Du kan rapportere problemer og diskutere forbedringer med os direkte her."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Du kan ikke fortryde denne handling."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Du har ikke tilladelse til at sende beskeder i denne kanal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Du vil ikke kunne få adgang til din konto, medmindre du kontakter support – dine data slettes dog ikke."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Du vil ikke kunne deltage igen, medmindre du inviteres igen."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Din konto er blevet bekræftet!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Dine gendannelseskoder"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/de/messages.js b/components/i18n/catalogs/de/messages.js
new file mode 100644
index 0000000..7e94c6a
--- /dev/null
+++ b/components/i18n/catalogs/de/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Stumm\"],\"+YFgJi\":[\"Abzeichen\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Neue Rolle erstellen\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Aus allen anderen Sitzungen abmelden\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Wähle einen Benutzernamen, unter dem du gefunden werden möchtest. Dieser kann später in deinen Benutzereinstellungen geändert werden.\"],\"/qQDwm\":[\"Einladung wird generiert…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Nachricht melden\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Feedback einreichen\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Nachrichten-ID kopieren\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Gruppe verlassen\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Hier kannst du Probleme melden und Vorschläge einbringen.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blockiert\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du wirst nicht erneut beitreten können, außer du wirst wieder eingeladen.\"],\"3QuNUr\":[\"Mehrere Personen schreiben…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Du bist bereits mit dieser:diesem Nutzer:in befreundet.\"],\"3T8ziB\":[\"Einen Account erstellen\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sitzungen\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Spitzname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Sprache auswählen\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Finde eine Community basierend auf deinen Hobbys und Interessen.\"],\"572q5a\":[\"Benutzer melden\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Als ungelesen markieren\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Nickname ändern\"],\"5dJK4M\":[\"Rollen\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Übersicht\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Benutzer\"],\"7SU2U9\":[\"Server-ID kopieren\"],\"7VpPHA\":[\"Bestätigen\"],\"7dZnmw\":[\"Relevanz\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nutzername\"],\"7vhWI8\":[\"Neues Passwort\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Server verwalten\"],\"8FE4JE\":[\"Authentifizierungs-App aktivieren\"],\"8VGnad\":[\"Wiederherstellungscodes generieren\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passwort\"],\"8aTiea\":[\"Personalisierung\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Gib deinen gewünschten Benutzernamen ein.\"],\"9D85wC\":[\"Nutzer-ID kopieren\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Token zurücksetzten\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Berechtigungen\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Du schaust dir ältere Nachrichten an\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Blockierung aufheben\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Gruppe erstellen\"],\"A9Rhec\":[\"Kanalname\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Neues Passwort eingeben.\"],\"AU7IRi\":[\"Textkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Sprachkanal\"],\"BHsrDx\":[\"Einladungen\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Nachricht wurde auf einer anderen Platform gesendet\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Kanal ansehen\"],\"CK7kdd\":[\"Status entfernen\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeschreibung\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Nachrichten senden\"],\"CkIs/i\":[\"Mitglieder stummschalten\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuelles Passwort\"],\"DDpDsO\":[\"Einladungscode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Offizielle Kommunikation\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Erledigt\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Nachricht nicht geladen. Klicke zump Springen\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Funktionsvorschlag einreichen\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kicken\"],\"EdQY6l\":[\"Keine\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Unterhaltungen\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Anhang\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kategorie erstellen\"],\"F1uGNS\":[\"Nicknames verwalten\"],\"FEr96N\":[\"Thema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Avatar entfernen\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Desktopbenachrichtigungen aktivieren\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Konzentriert\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kanal-ID kopieren\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gemeinsame Gruppen\"],\"GhCPk1\":[\"Wenn es gelöscht wird, kann der Löschprozess nicht rückgängig gemacht werden.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Gib dein aktuelles Passwort ein.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Bitte wähle eine Methode zur Authentifizierung deiner Anfrage.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notizen\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Bestätigung erneut senden\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mitglieder verschieben\"],\"ImOQa9\":[\"Antworten\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Anhänge\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Das Konto kann erst gelöscht werden, wenn die Server gelöscht oder übertragen wurden\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Aktion bestätigen\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ältere Aktualisierungen anzeigen\"],\"JUJmXm\":[\"Bitte bestätige diese Aktion mit der gewählten Methode.\"],\"JW8mxK\":[\"In Notizen speichern\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Willkommen bei\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kannst auch mit der rechten Maustaste auf das Benutzersymbol oben links klicken oder mit der linken Maustaste darauf klicken, wenn du bereits auf der Hauptseite bist.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Nachricht löschen\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Inhalt verletzt einen oder mehrere Gesetze\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Töne\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Offizieller Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Freund entfernen\"],\"LcET2C\":[\"Datenschutzerklärung\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Wir haben dir eine Bestätigungs-E-Mail geschickt. Bitte warte bis zu 10 Minuten, bis sie ankommt.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servername\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Verlassen\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Zeige aktuell aktive Bugmeldungen hier an.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Teile uns mit, wie wir unsere App verbessern können, indem du uns ein Feedback gibst.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Dein Konto wurde bestätigt!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-Mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du hast nicht die nötige Berechtigung dazu, Nachrichten in diesem Kanal zu senden.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Zurücksetzen\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Freundschaftsanfrage ablehnen\"],\"PSP1MZ\":[\"Rollenname\"],\"PWOA0E\":[\"Nur Erwähnungen\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Einbettungen senden\"],\"PnzsrT\":[\"Quellcode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Zu den neuen Nachrichten springen\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Abwesend\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Nachricht bearbeiten\"],\"QqoBlW\":[\"Überprüfe dein E-Mail-Postfach!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Passwort zurücksetzen\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug-Tracker\"],\"S3bIKF\":[\"ID kopieren\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Bitte scanne oder verwende den Token unten in deiner Authenticator-App.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Authenticator entfernen\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Nachrichten verwalten\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Rollen verwalten\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Einstellungen\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Lade all deine Freunde und ein paar Bots ein und schmeiße eine große Party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Avatar ändern\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Nachricht gesendet\"],\"VJScHU\":[\"Grund\"],\"VKsaTi\":[\"Antworte\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Taubgeschaltete Mitglieder\"],\"VsHxv+\":[\"Text kopieren\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Überprüfung deines Kontos…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externe Links können gefährlich sein!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Clienteinstellungen\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authentifizierungs-App\"],\"YcVBkL\":[\"Nachricht empfangen\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Überprüfung fehlgeschlagen!\"],\"Yp+Hi/\":[\"Einstellungen öffnen\"],\"Z5HWHd\":[\"An\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Deine Wiederherstellungscodes\"],\"aAIQg2\":[\"Aussehen\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Sie können diese Aktion nicht rückgängig machen.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Aus\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Account deaktivieren\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Nachrichtenverlauf lesen\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Nutzer bannen\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Berechtigungen verwalten\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Einladender\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Löschen\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Abbrechen\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Einen neuen Bot erstellen\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Andere einladen\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Unsichtbar\"],\"ekfzWq\":[\"Nutzereinstellungen\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Personalisierung verwalten\"],\"fTMMeD\":[\"Einladung erstellen\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrieren\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Freundschaftsanfrage abbrechen\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Rollen zuweisen\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Melden\"],\"gkBHk/\":[\"Kanal erstellen\"],\"gkmjYT\":[\"Server verlassen\"],\"go1IWB\":[\"Der:die Nutzer:in hat dich blockiert.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Kanal löschen\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Bitte gib deine E-Mail ein.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Erstellen\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Startseite\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Verbinden\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Erwähnen\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Zurück zum Login\"],\"jpJ5AL\":[\"Wiederherstellungscode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profilbild\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Willkommen!\"],\"knjY+b\":[\"Du kannst es später wieder öffnen, aber es wird auf beiden Seiten verschwinden.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Freund hinzufügen\"],\"lSGjX7\":[\"Nutzer ist dem Sprachkanal beigetreten\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanäle\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppenname\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Bearbeite deine Identität\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du kannst nicht mehr auf dein Konto zugreifen, wenn du dich nicht an den Support wendest - deine Daten werden jedoch nicht gelöscht.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Benutzerdefinierter Status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Gemeinsame Freunde\"],\"nbzz1A\":[\"Code eingeben\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dies ist der Anfang deiner Notizen.\"],\"o+XJ9D\":[\"Ändern\"],\"oB4OOq\":[\"Nutzer bannen\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Nutzer Kicken\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Jeder\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Abmelden\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Springe zum Anfang\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Nutzer hat den Sprachkanal verlassen\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mein Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle Nachrichten\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Eine Person hat reagiert\"],\"rxaY+5\":[\"Bitte nicht Stören\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Fortgeschritten\"],\"t43mBk\":[\"Server melden\"],\"tBmnPU\":[\"Freundesliste\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks verwalten\"],\"tdTuUv\":[\"Nutzer blockieren\"],\"tfDRzk\":[\"Speichern\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blockierter Nutzer\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gehe zum Test-Server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Nutzer kicken\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Rolle löschen\"],\"utrCh2\":[\"Timeout-Mitglieder\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Über\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeschreibung\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Unterstütze das Projekt durch Spenden - Vielen Dank!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Identität bearbeiten\"],\"vXIe7J\":[\"Sprache\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Bitte speichere diese an einem sicheren Ort.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Nachrichten\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Kanal betreten\"],\"wL3cK8\":[\"Neueste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Mitglieder\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerade\"],\"xDAtGP\":[\"Nachricht\"],\"xGVfLh\":[\"Weiter\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banliste\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Nutzungsbedingungen\"],\"xpgPPI\":[\"Meine Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Freundschaftsanfrage akzeptieren\"],\"y1eoq1\":[\"Link kopieren\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ich bestätige, dass ich mindestens 18 Jahre alt bin.\"],\"yDOdwQ\":[\"Benutzerverwaltung\"],\"yIBLq8\":[\"Sprechen\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Schließen\"],\"z0hW8A\":[\"Wiederherstellungscodes anzeigen\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Das ist der Anfang deiner Konversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Älteste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/de/messages.mjs b/components/i18n/catalogs/de/messages.mjs
new file mode 100644
index 0000000..58e2957
--- /dev/null
+++ b/components/i18n/catalogs/de/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Stumm\"],\"+YFgJi\":[\"Abzeichen\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Neue Rolle erstellen\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Aus allen anderen Sitzungen abmelden\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Wähle einen Benutzernamen, unter dem du gefunden werden möchtest. Dieser kann später in deinen Benutzereinstellungen geändert werden.\"],\"/qQDwm\":[\"Einladung wird generiert…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Nachricht melden\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Feedback einreichen\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Nachrichten-ID kopieren\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Gruppe verlassen\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Hier kannst du Probleme melden und Vorschläge einbringen.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blockiert\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du wirst nicht erneut beitreten können, außer du wirst wieder eingeladen.\"],\"3QuNUr\":[\"Mehrere Personen schreiben…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Du bist bereits mit dieser:diesem Nutzer:in befreundet.\"],\"3T8ziB\":[\"Einen Account erstellen\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sitzungen\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Spitzname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Sprache auswählen\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Finde eine Community basierend auf deinen Hobbys und Interessen.\"],\"572q5a\":[\"Benutzer melden\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Als ungelesen markieren\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Nickname ändern\"],\"5dJK4M\":[\"Rollen\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Übersicht\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Benutzer\"],\"7SU2U9\":[\"Server-ID kopieren\"],\"7VpPHA\":[\"Bestätigen\"],\"7dZnmw\":[\"Relevanz\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nutzername\"],\"7vhWI8\":[\"Neues Passwort\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Server verwalten\"],\"8FE4JE\":[\"Authentifizierungs-App aktivieren\"],\"8VGnad\":[\"Wiederherstellungscodes generieren\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passwort\"],\"8aTiea\":[\"Personalisierung\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Gib deinen gewünschten Benutzernamen ein.\"],\"9D85wC\":[\"Nutzer-ID kopieren\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Token zurücksetzten\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Berechtigungen\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Du schaust dir ältere Nachrichten an\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Blockierung aufheben\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Gruppe erstellen\"],\"A9Rhec\":[\"Kanalname\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Neues Passwort eingeben.\"],\"AU7IRi\":[\"Textkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Sprachkanal\"],\"BHsrDx\":[\"Einladungen\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Nachricht wurde auf einer anderen Platform gesendet\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Kanal ansehen\"],\"CK7kdd\":[\"Status entfernen\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeschreibung\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Nachrichten senden\"],\"CkIs/i\":[\"Mitglieder stummschalten\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuelles Passwort\"],\"DDpDsO\":[\"Einladungscode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Offizielle Kommunikation\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Erledigt\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Nachricht nicht geladen. Klicke zump Springen\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Funktionsvorschlag einreichen\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kicken\"],\"EdQY6l\":[\"Keine\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Unterhaltungen\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Anhang\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kategorie erstellen\"],\"F1uGNS\":[\"Nicknames verwalten\"],\"FEr96N\":[\"Thema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Avatar entfernen\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Desktopbenachrichtigungen aktivieren\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Konzentriert\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kanal-ID kopieren\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gemeinsame Gruppen\"],\"GhCPk1\":[\"Wenn es gelöscht wird, kann der Löschprozess nicht rückgängig gemacht werden.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Gib dein aktuelles Passwort ein.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Bitte wähle eine Methode zur Authentifizierung deiner Anfrage.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notizen\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Bestätigung erneut senden\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mitglieder verschieben\"],\"ImOQa9\":[\"Antworten\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Anhänge\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Das Konto kann erst gelöscht werden, wenn die Server gelöscht oder übertragen wurden\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Aktion bestätigen\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ältere Aktualisierungen anzeigen\"],\"JUJmXm\":[\"Bitte bestätige diese Aktion mit der gewählten Methode.\"],\"JW8mxK\":[\"In Notizen speichern\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Willkommen bei\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kannst auch mit der rechten Maustaste auf das Benutzersymbol oben links klicken oder mit der linken Maustaste darauf klicken, wenn du bereits auf der Hauptseite bist.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Nachricht löschen\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Inhalt verletzt einen oder mehrere Gesetze\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Töne\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Offizieller Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Freund entfernen\"],\"LcET2C\":[\"Datenschutzerklärung\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Wir haben dir eine Bestätigungs-E-Mail geschickt. Bitte warte bis zu 10 Minuten, bis sie ankommt.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servername\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Verlassen\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Zeige aktuell aktive Bugmeldungen hier an.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Teile uns mit, wie wir unsere App verbessern können, indem du uns ein Feedback gibst.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Dein Konto wurde bestätigt!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-Mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du hast nicht die nötige Berechtigung dazu, Nachrichten in diesem Kanal zu senden.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Zurücksetzen\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Freundschaftsanfrage ablehnen\"],\"PSP1MZ\":[\"Rollenname\"],\"PWOA0E\":[\"Nur Erwähnungen\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Einbettungen senden\"],\"PnzsrT\":[\"Quellcode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Zu den neuen Nachrichten springen\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Abwesend\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Nachricht bearbeiten\"],\"QqoBlW\":[\"Überprüfe dein E-Mail-Postfach!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Passwort zurücksetzen\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug-Tracker\"],\"S3bIKF\":[\"ID kopieren\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Bitte scanne oder verwende den Token unten in deiner Authenticator-App.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Authenticator entfernen\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Nachrichten verwalten\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Rollen verwalten\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Einstellungen\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Lade all deine Freunde und ein paar Bots ein und schmeiße eine große Party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Avatar ändern\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Nachricht gesendet\"],\"VJScHU\":[\"Grund\"],\"VKsaTi\":[\"Antworte\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Taubgeschaltete Mitglieder\"],\"VsHxv+\":[\"Text kopieren\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Überprüfung deines Kontos…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externe Links können gefährlich sein!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Clienteinstellungen\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authentifizierungs-App\"],\"YcVBkL\":[\"Nachricht empfangen\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Überprüfung fehlgeschlagen!\"],\"Yp+Hi/\":[\"Einstellungen öffnen\"],\"Z5HWHd\":[\"An\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Deine Wiederherstellungscodes\"],\"aAIQg2\":[\"Aussehen\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Sie können diese Aktion nicht rückgängig machen.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Aus\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Account deaktivieren\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Nachrichtenverlauf lesen\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Nutzer bannen\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Berechtigungen verwalten\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Einladender\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Löschen\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Abbrechen\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Einen neuen Bot erstellen\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Andere einladen\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Unsichtbar\"],\"ekfzWq\":[\"Nutzereinstellungen\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Personalisierung verwalten\"],\"fTMMeD\":[\"Einladung erstellen\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrieren\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Freundschaftsanfrage abbrechen\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Rollen zuweisen\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Melden\"],\"gkBHk/\":[\"Kanal erstellen\"],\"gkmjYT\":[\"Server verlassen\"],\"go1IWB\":[\"Der:die Nutzer:in hat dich blockiert.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Kanal löschen\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Bitte gib deine E-Mail ein.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Erstellen\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Startseite\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Verbinden\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Erwähnen\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Zurück zum Login\"],\"jpJ5AL\":[\"Wiederherstellungscode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profilbild\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Willkommen!\"],\"knjY+b\":[\"Du kannst es später wieder öffnen, aber es wird auf beiden Seiten verschwinden.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Freund hinzufügen\"],\"lSGjX7\":[\"Nutzer ist dem Sprachkanal beigetreten\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanäle\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppenname\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Bearbeite deine Identität\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du kannst nicht mehr auf dein Konto zugreifen, wenn du dich nicht an den Support wendest - deine Daten werden jedoch nicht gelöscht.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Benutzerdefinierter Status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Gemeinsame Freunde\"],\"nbzz1A\":[\"Code eingeben\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dies ist der Anfang deiner Notizen.\"],\"o+XJ9D\":[\"Ändern\"],\"oB4OOq\":[\"Nutzer bannen\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Nutzer Kicken\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Jeder\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Abmelden\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Springe zum Anfang\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Nutzer hat den Sprachkanal verlassen\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mein Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle Nachrichten\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Eine Person hat reagiert\"],\"rxaY+5\":[\"Bitte nicht Stören\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Fortgeschritten\"],\"t43mBk\":[\"Server melden\"],\"tBmnPU\":[\"Freundesliste\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks verwalten\"],\"tdTuUv\":[\"Nutzer blockieren\"],\"tfDRzk\":[\"Speichern\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blockierter Nutzer\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gehe zum Test-Server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Nutzer kicken\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Rolle löschen\"],\"utrCh2\":[\"Timeout-Mitglieder\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Über\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeschreibung\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Unterstütze das Projekt durch Spenden - Vielen Dank!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Identität bearbeiten\"],\"vXIe7J\":[\"Sprache\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Bitte speichere diese an einem sicheren Ort.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Nachrichten\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Kanal betreten\"],\"wL3cK8\":[\"Neueste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Mitglieder\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerade\"],\"xDAtGP\":[\"Nachricht\"],\"xGVfLh\":[\"Weiter\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banliste\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Nutzungsbedingungen\"],\"xpgPPI\":[\"Meine Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Freundschaftsanfrage akzeptieren\"],\"y1eoq1\":[\"Link kopieren\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ich bestätige, dass ich mindestens 18 Jahre alt bin.\"],\"yDOdwQ\":[\"Benutzerverwaltung\"],\"yIBLq8\":[\"Sprechen\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Schließen\"],\"z0hW8A\":[\"Wiederherstellungscodes anzeigen\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Das ist der Anfang deiner Konversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Älteste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/de/messages.po b/components/i18n/catalogs/de/messages.po
new file mode 100644
index 0000000..da5cfa1
--- /dev/null
+++ b/components/i18n/catalogs/de/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: de\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "Eine Person hat reagiert"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Über"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Freundschaftsanfrage akzeptieren"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Freund hinzufügen"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Fortgeschritten"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Alle Nachrichten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Du bist bereits mit dieser:diesem Nutzer:in befreundet."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Aussehen"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Rollen zuweisen"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authentifizierungs-App"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Profilbild"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Abzeichen"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Nutzer bannen"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Nutzer bannen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Banliste"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Nutzer blockieren"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blockiert"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blockierter Nutzer"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bug-Tracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Freundschaftsanfrage abbrechen"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Das Konto kann erst gelöscht werden, wenn die Server gelöscht oder übertragen wurden"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Ändern"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Avatar ändern"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Nickname ändern"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanalbeschreibung"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanalname"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanäle"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Überprüfe dein E-Mail-Postfach!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Status entfernen"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Clienteinstellungen"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Schließen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Aktion bestätigen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Verbinden"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Inhalt verletzt einen oder mehrere Gesetze"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Weiter"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Unterhaltungen"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kanal-ID kopieren"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "ID kopieren"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Link kopieren"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Nachrichten-ID kopieren"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Server-ID kopieren"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Text kopieren"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Nutzer-ID kopieren"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Erstellen"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Gruppe erstellen"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Einen neuen Bot erstellen"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Neue Rolle erstellen"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Einen Account erstellen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Kategorie erstellen"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Kanal erstellen"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Einladung erstellen"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Aktuelles Passwort"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Benutzerdefinierter Status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalisierung"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Taubgeschaltete Mitglieder"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Jeder"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Löschen"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Kanal löschen"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Nachricht löschen"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Rolle löschen"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Account deaktivieren"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Bitte nicht Stören"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Erledigt"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Identität bearbeiten"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Nachricht bearbeiten"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Bearbeite deine Identität"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-Mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Authentifizierungs-App aktivieren"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Desktopbenachrichtigungen aktivieren"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Neues Passwort eingeben."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Kanal betreten"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Code eingeben"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Gib dein aktuelles Passwort ein."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Gib deinen gewünschten Benutzernamen ein."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Externe Links können gefährlich sein!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Überprüfung fehlgeschlagen!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Finde eine Community basierend auf deinen Hobbys und Interessen."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Konzentriert"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Freundesliste"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Wiederherstellungscodes generieren"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Einladung wird generiert…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Zurück zum Login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Gehe zum Test-Server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Gruppenname"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hallo!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Startseite"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Ich bestätige, dass ich mindestens 18 Jahre alt bin."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Abwesend"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Unsichtbar"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Lade all deine Freunde und ein paar Bots ein und schmeiße eine große Party."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Einladungscode"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Andere einladen"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Einladender"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Einladungen"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Zu den neuen Nachrichten springen"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Springe zum Anfang"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Kicken"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Nutzer kicken"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Nutzer Kicken"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Sprache"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Neueste"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Verlassen"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Gruppe verlassen"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Server verlassen"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Teile uns mit, wie wir unsere App verbessern können, indem du uns ein Feedback gibst."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Abmelden"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Aus allen anderen Sitzungen abmelden"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Login"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Personalisierung verwalten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Nachrichten verwalten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Nicknames verwalten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Berechtigungen verwalten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Rollen verwalten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Server verwalten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Webhooks verwalten"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Als gelesen markieren"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Als ungelesen markieren"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskerade"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Mitglieder"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Erwähnen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Nur Erwähnungen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Nachricht"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Nachricht nicht geladen. Klicke zump Springen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Nachricht empfangen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Nachricht gesendet"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Nachricht wurde auf einer anderen Platform gesendet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Nachrichten"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Mitglieder verschieben"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Mitglieder stummschalten"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Stumm"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Gemeinsame Freunde"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Gemeinsame Gruppen"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mein Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Meine Bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Neues Passwort"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Spitzname"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Keine"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Benachrichtigungen"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Aus"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Offizielle Kommunikation"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Offizieller Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Älteste"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "An"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Wenn es gelöscht wird, kann der Löschprozess nicht rückgängig gemacht werden."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Einstellungen öffnen"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Übersicht"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Passwort"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Berechtigungen"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Wähle einen Benutzernamen, unter dem du gefunden werden möchtest. Dieser kann später in deinen Benutzereinstellungen geändert werden."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Bitte bestätige diese Aktion mit der gewählten Methode."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Bitte gib deine E-Mail ein."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Bitte speichere diese an einem sicheren Ort."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Bitte scanne oder verwende den Token unten in deiner Authenticator-App."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Bitte wähle eine Methode zur Authentifizierung deiner Anfrage."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Datenschutzerklärung"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Nachrichtenverlauf lesen"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Grund"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Wiederherstellungscode"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrieren"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Freundschaftsanfrage ablehnen"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevanz"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Authenticator entfernen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Avatar entfernen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Freund entfernen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Antworten"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Antworte"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Melden"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Nachricht melden"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Server melden"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Benutzer melden"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Bestätigung erneut senden"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Passwort zurücksetzen"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Token zurücksetzten"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rollenname"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Rollen"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Speichern"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "In Notizen speichern"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notizen"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Sprache auswählen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Einbettungen senden"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Nachrichten senden"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Anhang"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Anhänge"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Serverbeschreibung"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Servername"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sitzungen"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Mehrere Personen schreiben…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Töne"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Quellcode"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Sprechen"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Funktionsvorschlag einreichen"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Feedback einreichen"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Unterstütze das Projekt durch Spenden - Vielen Dank!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Nutzungsbedingungen"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Textkanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Thema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Das ist der Anfang deiner Konversation."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Dies ist der Anfang deiner Notizen."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Der:die Nutzer:in hat dich blockiert."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout-Mitglieder"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Blockierung aufheben"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Dateien hochladen"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Benutzer"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Nutzer ist dem Sprachkanal beigetreten"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Nutzer hat den Sprachkanal verlassen"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Benutzerverwaltung"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Nutzereinstellungen"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nutzername"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Überprüfung deines Kontos…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Kanal ansehen"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Zeige aktuell aktive Bugmeldungen hier an."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Ältere Aktualisierungen anzeigen"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Wiederherstellungscodes anzeigen"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Du schaust dir ältere Nachrichten an"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Sprachkanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Wir haben dir eine Bestätigungs-E-Mail geschickt. Bitte warte bis zu 10 Minuten, bis sie ankommt."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Willkommen bei"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Willkommen!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Du kannst auch mit der rechten Maustaste auf das Benutzersymbol oben links klicken oder mit der linken Maustaste darauf klicken, wenn du bereits auf der Hauptseite bist."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Du kannst es später wieder öffnen, aber es wird auf beiden Seiten verschwinden."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Hier kannst du Probleme melden und Vorschläge einbringen."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Sie können diese Aktion nicht rückgängig machen."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Du hast nicht die nötige Berechtigung dazu, Nachrichten in diesem Kanal zu senden."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Du kannst nicht mehr auf dein Konto zugreifen, wenn du dich nicht an den Support wendest - deine Daten werden jedoch nicht gelöscht."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Du wirst nicht erneut beitreten können, außer du wirst wieder eingeladen."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Dein Konto wurde bestätigt!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Deine Wiederherstellungscodes"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/dev/messages.js b/components/i18n/catalogs/dev/messages.js
new file mode 100644
index 0000000..2ee9bde
--- /dev/null
+++ b/components/i18n/catalogs/dev/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Create an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter your preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current Password\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter your current password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saved Notes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Save to your notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Privacy Policy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We've sent you a verification email. Please allow up to 10 minutes for it to arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check your mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"🤓🤓🤓:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Register\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Please enter your email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back to login\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welcome!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channels\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Hello!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of your notes.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Do Not Disturb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Friends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms of Service\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/dev/messages.mjs b/components/i18n/catalogs/dev/messages.mjs
new file mode 100644
index 0000000..8d055d1
--- /dev/null
+++ b/components/i18n/catalogs/dev/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Create an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter your preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current Password\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter your current password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saved Notes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Save to your notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Privacy Policy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We've sent you a verification email. Please allow up to 10 minutes for it to arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check your mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"🤓🤓🤓:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Register\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Please enter your email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back to login\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welcome!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channels\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Hello!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of your notes.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Do Not Disturb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Friends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms of Service\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/dev/messages.po b/components/i18n/catalogs/dev/messages.po
new file mode 100644
index 0000000..fcba996
--- /dev/null
+++ b/components/i18n/catalogs/dev/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 16:36-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: dev\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr ""
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr ""
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr ""
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr ""
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr ""
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr ""
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr ""
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr ""
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr ""
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr ""
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr "🤓🤓🤓:"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr ""
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/el/messages.js b/components/i18n/catalogs/el/messages.js
new file mode 100644
index 0000000..163c858
--- /dev/null
+++ b/components/i18n/catalogs/el/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Σε σίγαση\"],\"+YFgJi\":[\"Εμβλήματα\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Επισήμανση ως αναγνωσμένο\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Δημιούργησε ένα νέο ρόλο\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Αποσύνδεση από όλες τις άλλες συνεδρίες\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Διάλεξε ένα όνομα χρήστη με το οποίο θέλεις οι άλλοι να μπορούν να σε βρίσκουν. Αυτό μπορεί να αλλάξει αργότερα στις ρυθμίσεις χρήστη σου.\"],\"/qQDwm\":[\"Δημιουργία πρόσκλησης…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Αναφορά μηνύματος\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Υποβολή σχολίων\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Αντιγραφή ID μηνύματος\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Αποχώρηση από την ομάδα\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Μπορείς να αναφέρεις προβλήματα και να συζητήσεις βελτιώσεις μαζί μας απευθείας εδώ.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Αποκλεισμένα\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Δεν θα μπορείς να συμμετάσχεις ξανά αν δεν σε προσκαλέσουν ξανά.\"],\"3QuNUr\":[\"Αρκετά άτομα πληκτρολογούν…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Είστε ήδη φίλοι με αυτόν τον χρήστη.\"],\"3T8ziB\":[\"Δημιούργησε έναν λογαριασμό\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Συνεδρίες\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Ψευδώνυμο\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Διάλεξε τη γλώσσα σου\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Βρες μια κοινότητα με βάση τα χόμπι ή τα ενδιαφέροντά σου.\"],\"572q5a\":[\"Αναφορά χρήστη\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Επισήμανση ως μη αναγνωσμένο\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Αλλαγή Ψευδώνυμου\"],\"5dJK4M\":[\"Ρόλοι\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Επισκόπηση\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Αποσυνδεδεμένος\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Χρήστης\"],\"7SU2U9\":[\"Αντιγραφή ID server\"],\"7VpPHA\":[\"Επιβεβαίωση\"],\"7dZnmw\":[\"Σχετικότητα\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Όνομα χρήστη\"],\"7vhWI8\":[\"Νέος Κωδικός πρόσβασης\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Διαχείριση Server\"],\"8FE4JE\":[\"Ενεργοποίηση εφαρμογής επαληθευτή\"],\"8VGnad\":[\"Δημιούργησε Κωδικούς Ανάκτησης\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Κωδικός πρόσβασης\"],\"8aTiea\":[\"Εξατομίκευση\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Εισήγαγε το όνομα χρήστη σου.\"],\"9D85wC\":[\"Αντιγραφή ID χρήστη\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Άδειες\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Αποκλεισμός\"],\"9nffag\":[\"Βλέπεις παλαιότερα μηνύματα\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Κατάργηση αποκλεισμού χρήστη\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Δημιούργησε μια ομάδα\"],\"A9Rhec\":[\"Όνομα Καναλιού\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Εισήγαγε έναν νέο κωδικό πρόσβασης.\"],\"AU7IRi\":[\"Κανάλι Κειμένου\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Κανάλι Φωνής\"],\"BHsrDx\":[\"Προσκλήσεις\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Το μήνυμα εστάλη από άλλη πλατφόρμα\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Προβολή Καναλιού\"],\"CK7kdd\":[\"Καθαρισμός κατάστασης\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Περιγραφή Καναλιού\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Αποστολή Μηνυμάτων\"],\"CkIs/i\":[\"Σίγαση Μελών\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Τρέχων Κωδικός πρόσβασης\"],\"DDpDsO\":[\"Κωδικός Πρόσκλησης\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Επίσημη Επικοινωνία\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Έγινε\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Το μήνυμα δεν έχει φορτωθεί, κάνε κλικ για μετάβαση\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Υποβολή πρότασης χαρακτηριστικού\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Διωγμός\"],\"EdQY6l\":[\"Τίποτα\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Συνομιλίες\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Στάλθηκε ένα συνημμένο\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Δημιουργία κατηγορίας\"],\"F1uGNS\":[\"Διαχείριση Ψευδώνυμων\"],\"FEr96N\":[\"Θέμα\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Αφαίρεση Avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ενεργοποίηση Ειδοποιήσεων Επιφάνειας εργασίας\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Αφοσιωμένος\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Αντιγραφή ID καναλιού\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Κοινές Ομάδες\"],\"GhCPk1\":[\"Μόλις διαγραφεί, δεν υπάρχει επιστροφή.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Εισήγαγε τον τρέχοντα κωδικό πρόσβασής σου.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Παρακαλώ διάλεξε μία μέθοδο για έλεγχο ταυτότητας του αιτήματος.\"],\"HAKBY9\":[\"Μεταφόρτωση Αρχείων\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Αποθηκευμένες Σημειώσεις\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Επαναποστολή επαλήθευσης\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Μετακίνηση Μελών\"],\"ImOQa9\":[\"Απάντηση\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Στάλθηκαν πολλαπλά συνημμένα\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Αδύνατη η διαγραφή του λογαριασμού μέχρι όλοι οι σερβερς να διαγραφούν ή μεταφερθούν\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Επιβεβαίωση Ενέργειας\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Προβολή παλαιότερων ενημερώσεων\"],\"JUJmXm\":[\"Παρακαλώ επιβεβαίωσε αυτή την ενέργεια χρησιμοποιώντας την επιλεγμένη μέθοδο.\"],\"JW8mxK\":[\"Αποθηκεύτηκε στις σημειώσεις σου\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Καλωσόρισες στο\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Μπορείς επίσης να κάνεις δεξί κλικ στην εικόνα χρήστη που βρίσκεται επάνω αριστερά, ή αριστερό κλικ εάν είσαι ήδη στην αρχική.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Διαγραφή μηνύματος\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Το περιεχόμενο παραβιάζει έναν ή περισσότερους νόμους\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Ήχοι\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Επίσημος Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Αφαίρεση φίλου\"],\"LcET2C\":[\"Πολιτική Απορρήτου\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Σου έχουμε στείλει ένα email επαλήθευσης. Παρακαλώ περίμενε ως και 10 λεπτά για την παραλαβή.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Όνομα Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Αποχώρηση\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Δες τις τρέχουσες αναφορές σφαλμάτων εδώ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ενημέρωσέ μας πώς μπορούμε να βελτιώσουμε την εφαρμογή μας αφήνοντας σχόλια.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ο λογαριασμός σου επαληθεύτηκε!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Δεν έχεις άδεια αποστολής μηνυμάτων σε αυτό το κανάλι.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Επαναφορά\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Απόρριψη αιτήματος φιλίας\"],\"PSP1MZ\":[\"Όνομα Ρόλου\"],\"PWOA0E\":[\"Μόνο Επισημάνσεις\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Αποστολή Ενσωματώσεων\"],\"PnzsrT\":[\"Πηγαίος Κώδικας\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Μετάβαση στο παρόν\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Αδρανής\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Επεξεργασία μηνύματος\"],\"QqoBlW\":[\"Έλεγξε το mail σου!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Επαναφορά κωδικού πρόσβασης\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Αντιγραφή ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Παρακαλώ σάρωσε ή χρησιμοποιήστε το παρακάτω token στην εφαρμογή επαληθευτή σου.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Αφαίρεση Επαληθευτή\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Διαχείριση Μηνυμάτων\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Διαχείριση Ρόλων\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ρυθμίσεις\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Προσκάλεσε όλους σου τους φίλους, μερικά cool bots και κάνε ένα μεγάλο πάρτι.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Αλλαγή Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Εξερχόμενο Μήνυμα\"],\"VJScHU\":[\"Αιτία\"],\"VKsaTi\":[\"Απαντάς σε\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Κώφωση Μελών\"],\"VsHxv+\":[\"Αντιγραφή κειμένου\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Επαληθεύουμε το λογαριασμό σου…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Οι εξωτερικοί σύνδεσμοι μπορεί να είναι επικίνδυνοι!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ρυθμίσεις Εφαρμογής\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Εφαρμογή Επαληθευτή\"],\"YcVBkL\":[\"Εισερχόμενο Μήνυμα\"],\"YirHq7\":[\"Σχόλια\"],\"YlFpiA\":[\"Αποτυχία επαλήθευσης!\"],\"Yp+Hi/\":[\"Άνοιγμα ρυθμίσεων\"],\"Z5HWHd\":[\"Ενεργό\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Οι κωδικοί ανάκτησής σου\"],\"aAIQg2\":[\"Εμφάνιση\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Δεν μπορείς να αναιρέσεις αυτή την ενέργεια.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Ανενεργό\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Απενεργοποίηση Λογαριασμού\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Ανάγνωση Ιστορικού Μηνυμάτων\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Αποκλεισμός μέλους\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Διαχείριση Αδειών\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Προσκλητής\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Διαγραφή\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ακύρωση\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Δημιούργησε ένα νέο bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Πρόσκληση Άλλων\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Αόρατος\"],\"ekfzWq\":[\"Ρυθμίσεις Χρήστη\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Διαχείριση Εξατομίκευσης\"],\"fTMMeD\":[\"Δημιουργία πρόσκλησης\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Εγγραφή\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Ακύρωση αιτήματος φιλίας\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Ανάθεση Ρόλων\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Αναφορά\"],\"gkBHk/\":[\"Δημιουργία καναλιού\"],\"gkmjYT\":[\"Αποχώρηση από τον server\"],\"go1IWB\":[\"Αυτός ο χρήστης σε έχει αποκλείσει.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Διαγραφή καναλιού\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Παρακαλώ εισήγαγε το email σου.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Δημιουργία\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Αρχική\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Σύνδεση\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Επισήμανση\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Επιστροφή στην σύνδεση\"],\"jpJ5AL\":[\"Κωδικός Ανάκτησης\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Καλωσόρισες!\"],\"knjY+b\":[\"Μπορείς να το ανοίξεις ξανά αργότερα, αλλά θα εξαφανιστεί και για τις δύο πλευρές.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Προσθήκη φίλου\"],\"lSGjX7\":[\"Χρήστης Συμμετάσχει στην Κλήση\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Κανάλια\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Όνομα Ομάδας\"],\"mAYvqA\":[\"Γεια σου!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Δε θα μπορείς να αποκτήσεις πρόσβαση στον λογαριασμό σου εκτός και αν επικοινωνήσεις με την υποστήριξη - ωστόσο, τα δεδομένα σου δεν θα διαγραφούν.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Προσαρμοσμένη κατάσταση\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Κοινοί Φίλοι\"],\"nbzz1A\":[\"Εισήγαγε Κωδικό\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Αυτή είναι η αρχή των σημειώσεών σου.\"],\"o+XJ9D\":[\"Αλλαγή\"],\"oB4OOq\":[\"Αποκλεισμός Μελών\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Συνδεδεμένος\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Διωγμός Μελών\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Προεπιλεγμένος\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Αποσύνδεση\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Μετάβαση στην αρχή\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Χρήστης Έφυγε από την Κλήση\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Ο Λογαριασμός μου\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Όλα τα Μηνύματα\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 άτομο αντέδρασε\"],\"rxaY+5\":[\"Μην Ενοχλείτε\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Αναφορά server\"],\"tBmnPU\":[\"Φίλοι\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Διαχείριση Webhooks\"],\"tdTuUv\":[\"Αποκλεισμός χρήστη\"],\"tfDRzk\":[\"Αποθήκευση\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Αποκλεισμένος Χρήστης\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Πήγαινε στον server των δοκιμαστών\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Διωγμός μέλους\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Διαγραφή Ρόλου\"],\"utrCh2\":[\"Timeout Μελών\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Σχετικά\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Περιγραφή Server\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Προφίλ\"],\"vJum3e\":[\"Υποστήριξε το εγχείρημα κάνοντας μια δωρεά - σε ευχαριστούμε!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Βίντεο\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Επεξεργασία ταυτότητας\"],\"vXIe7J\":[\"Γλώσσα\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Παρακαλώ να τα αποθηκεύσεις σε ασφαλές μέρος.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Μυνήματα\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Είσοδος στο Κανάλι\"],\"wL3cK8\":[\"Πιο πρόσφατο\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Μέλη\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Μεταμφίεση\"],\"xDAtGP\":[\"Μήνυμα\"],\"xGVfLh\":[\"Συνέχεια\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Αποκλεισμοί\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Όροι Χρήσης\"],\"xpgPPI\":[\"Τα Bot μου\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Αποδοχή αιτήματος φιλίας\"],\"y1eoq1\":[\"Αντιγραφή συνδέσμου\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Επιβεβαιώνω ότι είμαι τουλάχιστον 18 ετών.\"],\"yDOdwQ\":[\"Διαχείριση Χρηστών\"],\"yIBLq8\":[\"Ομιλία\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Κλείσιμο\"],\"z0hW8A\":[\"Προβολή Κωδικών Ανάκτησης\"],\"z0t9bb\":[\"Σύνδεση\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OΚ\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Αυτή είναι η αρχή της συζήτησής σου.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Πιο παλιό\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/el/messages.mjs b/components/i18n/catalogs/el/messages.mjs
new file mode 100644
index 0000000..2accf77
--- /dev/null
+++ b/components/i18n/catalogs/el/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Σε σίγαση\"],\"+YFgJi\":[\"Εμβλήματα\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Επισήμανση ως αναγνωσμένο\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Δημιούργησε ένα νέο ρόλο\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Αποσύνδεση από όλες τις άλλες συνεδρίες\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Διάλεξε ένα όνομα χρήστη με το οποίο θέλεις οι άλλοι να μπορούν να σε βρίσκουν. Αυτό μπορεί να αλλάξει αργότερα στις ρυθμίσεις χρήστη σου.\"],\"/qQDwm\":[\"Δημιουργία πρόσκλησης…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Αναφορά μηνύματος\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Υποβολή σχολίων\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Αντιγραφή ID μηνύματος\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Αποχώρηση από την ομάδα\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Μπορείς να αναφέρεις προβλήματα και να συζητήσεις βελτιώσεις μαζί μας απευθείας εδώ.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Αποκλεισμένα\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Δεν θα μπορείς να συμμετάσχεις ξανά αν δεν σε προσκαλέσουν ξανά.\"],\"3QuNUr\":[\"Αρκετά άτομα πληκτρολογούν…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Είστε ήδη φίλοι με αυτόν τον χρήστη.\"],\"3T8ziB\":[\"Δημιούργησε έναν λογαριασμό\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Συνεδρίες\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Ψευδώνυμο\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Διάλεξε τη γλώσσα σου\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Βρες μια κοινότητα με βάση τα χόμπι ή τα ενδιαφέροντά σου.\"],\"572q5a\":[\"Αναφορά χρήστη\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Επισήμανση ως μη αναγνωσμένο\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Αλλαγή Ψευδώνυμου\"],\"5dJK4M\":[\"Ρόλοι\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Επισκόπηση\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Αποσυνδεδεμένος\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Χρήστης\"],\"7SU2U9\":[\"Αντιγραφή ID server\"],\"7VpPHA\":[\"Επιβεβαίωση\"],\"7dZnmw\":[\"Σχετικότητα\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Όνομα χρήστη\"],\"7vhWI8\":[\"Νέος Κωδικός πρόσβασης\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Διαχείριση Server\"],\"8FE4JE\":[\"Ενεργοποίηση εφαρμογής επαληθευτή\"],\"8VGnad\":[\"Δημιούργησε Κωδικούς Ανάκτησης\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Κωδικός πρόσβασης\"],\"8aTiea\":[\"Εξατομίκευση\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Εισήγαγε το όνομα χρήστη σου.\"],\"9D85wC\":[\"Αντιγραφή ID χρήστη\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Άδειες\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Αποκλεισμός\"],\"9nffag\":[\"Βλέπεις παλαιότερα μηνύματα\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Κατάργηση αποκλεισμού χρήστη\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Δημιούργησε μια ομάδα\"],\"A9Rhec\":[\"Όνομα Καναλιού\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Εισήγαγε έναν νέο κωδικό πρόσβασης.\"],\"AU7IRi\":[\"Κανάλι Κειμένου\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Κανάλι Φωνής\"],\"BHsrDx\":[\"Προσκλήσεις\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Το μήνυμα εστάλη από άλλη πλατφόρμα\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Προβολή Καναλιού\"],\"CK7kdd\":[\"Καθαρισμός κατάστασης\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Περιγραφή Καναλιού\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Αποστολή Μηνυμάτων\"],\"CkIs/i\":[\"Σίγαση Μελών\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Τρέχων Κωδικός πρόσβασης\"],\"DDpDsO\":[\"Κωδικός Πρόσκλησης\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Επίσημη Επικοινωνία\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Έγινε\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Το μήνυμα δεν έχει φορτωθεί, κάνε κλικ για μετάβαση\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Υποβολή πρότασης χαρακτηριστικού\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Διωγμός\"],\"EdQY6l\":[\"Τίποτα\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Συνομιλίες\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Στάλθηκε ένα συνημμένο\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Δημιουργία κατηγορίας\"],\"F1uGNS\":[\"Διαχείριση Ψευδώνυμων\"],\"FEr96N\":[\"Θέμα\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Αφαίρεση Avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ενεργοποίηση Ειδοποιήσεων Επιφάνειας εργασίας\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Αφοσιωμένος\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Αντιγραφή ID καναλιού\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Κοινές Ομάδες\"],\"GhCPk1\":[\"Μόλις διαγραφεί, δεν υπάρχει επιστροφή.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Εισήγαγε τον τρέχοντα κωδικό πρόσβασής σου.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Παρακαλώ διάλεξε μία μέθοδο για έλεγχο ταυτότητας του αιτήματος.\"],\"HAKBY9\":[\"Μεταφόρτωση Αρχείων\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Αποθηκευμένες Σημειώσεις\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Επαναποστολή επαλήθευσης\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Μετακίνηση Μελών\"],\"ImOQa9\":[\"Απάντηση\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Στάλθηκαν πολλαπλά συνημμένα\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Αδύνατη η διαγραφή του λογαριασμού μέχρι όλοι οι σερβερς να διαγραφούν ή μεταφερθούν\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Επιβεβαίωση Ενέργειας\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Προβολή παλαιότερων ενημερώσεων\"],\"JUJmXm\":[\"Παρακαλώ επιβεβαίωσε αυτή την ενέργεια χρησιμοποιώντας την επιλεγμένη μέθοδο.\"],\"JW8mxK\":[\"Αποθηκεύτηκε στις σημειώσεις σου\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Καλωσόρισες στο\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Μπορείς επίσης να κάνεις δεξί κλικ στην εικόνα χρήστη που βρίσκεται επάνω αριστερά, ή αριστερό κλικ εάν είσαι ήδη στην αρχική.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Διαγραφή μηνύματος\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Το περιεχόμενο παραβιάζει έναν ή περισσότερους νόμους\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Ήχοι\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Επίσημος Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Αφαίρεση φίλου\"],\"LcET2C\":[\"Πολιτική Απορρήτου\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Σου έχουμε στείλει ένα email επαλήθευσης. Παρακαλώ περίμενε ως και 10 λεπτά για την παραλαβή.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Όνομα Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Αποχώρηση\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Δες τις τρέχουσες αναφορές σφαλμάτων εδώ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ενημέρωσέ μας πώς μπορούμε να βελτιώσουμε την εφαρμογή μας αφήνοντας σχόλια.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ο λογαριασμός σου επαληθεύτηκε!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Δεν έχεις άδεια αποστολής μηνυμάτων σε αυτό το κανάλι.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Επαναφορά\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Απόρριψη αιτήματος φιλίας\"],\"PSP1MZ\":[\"Όνομα Ρόλου\"],\"PWOA0E\":[\"Μόνο Επισημάνσεις\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Αποστολή Ενσωματώσεων\"],\"PnzsrT\":[\"Πηγαίος Κώδικας\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Μετάβαση στο παρόν\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Αδρανής\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Επεξεργασία μηνύματος\"],\"QqoBlW\":[\"Έλεγξε το mail σου!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Επαναφορά κωδικού πρόσβασης\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Αντιγραφή ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Παρακαλώ σάρωσε ή χρησιμοποιήστε το παρακάτω token στην εφαρμογή επαληθευτή σου.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Αφαίρεση Επαληθευτή\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Διαχείριση Μηνυμάτων\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Διαχείριση Ρόλων\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ρυθμίσεις\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Προσκάλεσε όλους σου τους φίλους, μερικά cool bots και κάνε ένα μεγάλο πάρτι.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Αλλαγή Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Εξερχόμενο Μήνυμα\"],\"VJScHU\":[\"Αιτία\"],\"VKsaTi\":[\"Απαντάς σε\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Κώφωση Μελών\"],\"VsHxv+\":[\"Αντιγραφή κειμένου\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Επαληθεύουμε το λογαριασμό σου…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Οι εξωτερικοί σύνδεσμοι μπορεί να είναι επικίνδυνοι!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ρυθμίσεις Εφαρμογής\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Εφαρμογή Επαληθευτή\"],\"YcVBkL\":[\"Εισερχόμενο Μήνυμα\"],\"YirHq7\":[\"Σχόλια\"],\"YlFpiA\":[\"Αποτυχία επαλήθευσης!\"],\"Yp+Hi/\":[\"Άνοιγμα ρυθμίσεων\"],\"Z5HWHd\":[\"Ενεργό\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Οι κωδικοί ανάκτησής σου\"],\"aAIQg2\":[\"Εμφάνιση\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Δεν μπορείς να αναιρέσεις αυτή την ενέργεια.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Ανενεργό\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Απενεργοποίηση Λογαριασμού\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Ανάγνωση Ιστορικού Μηνυμάτων\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Αποκλεισμός μέλους\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Διαχείριση Αδειών\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Προσκλητής\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Διαγραφή\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ακύρωση\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Δημιούργησε ένα νέο bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Πρόσκληση Άλλων\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Αόρατος\"],\"ekfzWq\":[\"Ρυθμίσεις Χρήστη\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Διαχείριση Εξατομίκευσης\"],\"fTMMeD\":[\"Δημιουργία πρόσκλησης\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Εγγραφή\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Ακύρωση αιτήματος φιλίας\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Ανάθεση Ρόλων\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Αναφορά\"],\"gkBHk/\":[\"Δημιουργία καναλιού\"],\"gkmjYT\":[\"Αποχώρηση από τον server\"],\"go1IWB\":[\"Αυτός ο χρήστης σε έχει αποκλείσει.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Διαγραφή καναλιού\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Παρακαλώ εισήγαγε το email σου.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Δημιουργία\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Αρχική\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Σύνδεση\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Επισήμανση\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Επιστροφή στην σύνδεση\"],\"jpJ5AL\":[\"Κωδικός Ανάκτησης\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Καλωσόρισες!\"],\"knjY+b\":[\"Μπορείς να το ανοίξεις ξανά αργότερα, αλλά θα εξαφανιστεί και για τις δύο πλευρές.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Προσθήκη φίλου\"],\"lSGjX7\":[\"Χρήστης Συμμετάσχει στην Κλήση\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Κανάλια\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Όνομα Ομάδας\"],\"mAYvqA\":[\"Γεια σου!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Δε θα μπορείς να αποκτήσεις πρόσβαση στον λογαριασμό σου εκτός και αν επικοινωνήσεις με την υποστήριξη - ωστόσο, τα δεδομένα σου δεν θα διαγραφούν.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Προσαρμοσμένη κατάσταση\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Κοινοί Φίλοι\"],\"nbzz1A\":[\"Εισήγαγε Κωδικό\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Αυτή είναι η αρχή των σημειώσεών σου.\"],\"o+XJ9D\":[\"Αλλαγή\"],\"oB4OOq\":[\"Αποκλεισμός Μελών\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Συνδεδεμένος\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Διωγμός Μελών\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Προεπιλεγμένος\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Αποσύνδεση\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Μετάβαση στην αρχή\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Χρήστης Έφυγε από την Κλήση\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Ο Λογαριασμός μου\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Όλα τα Μηνύματα\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 άτομο αντέδρασε\"],\"rxaY+5\":[\"Μην Ενοχλείτε\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Αναφορά server\"],\"tBmnPU\":[\"Φίλοι\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Διαχείριση Webhooks\"],\"tdTuUv\":[\"Αποκλεισμός χρήστη\"],\"tfDRzk\":[\"Αποθήκευση\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Αποκλεισμένος Χρήστης\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Πήγαινε στον server των δοκιμαστών\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Διωγμός μέλους\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Διαγραφή Ρόλου\"],\"utrCh2\":[\"Timeout Μελών\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Σχετικά\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Περιγραφή Server\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Προφίλ\"],\"vJum3e\":[\"Υποστήριξε το εγχείρημα κάνοντας μια δωρεά - σε ευχαριστούμε!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Βίντεο\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Επεξεργασία ταυτότητας\"],\"vXIe7J\":[\"Γλώσσα\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Παρακαλώ να τα αποθηκεύσεις σε ασφαλές μέρος.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Μυνήματα\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Είσοδος στο Κανάλι\"],\"wL3cK8\":[\"Πιο πρόσφατο\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Μέλη\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Μεταμφίεση\"],\"xDAtGP\":[\"Μήνυμα\"],\"xGVfLh\":[\"Συνέχεια\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Αποκλεισμοί\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Όροι Χρήσης\"],\"xpgPPI\":[\"Τα Bot μου\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Αποδοχή αιτήματος φιλίας\"],\"y1eoq1\":[\"Αντιγραφή συνδέσμου\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Επιβεβαιώνω ότι είμαι τουλάχιστον 18 ετών.\"],\"yDOdwQ\":[\"Διαχείριση Χρηστών\"],\"yIBLq8\":[\"Ομιλία\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Κλείσιμο\"],\"z0hW8A\":[\"Προβολή Κωδικών Ανάκτησης\"],\"z0t9bb\":[\"Σύνδεση\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OΚ\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Αυτή είναι η αρχή της συζήτησής σου.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Πιο παλιό\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/el/messages.po b/components/i18n/catalogs/el/messages.po
new file mode 100644
index 0000000..091cca2
--- /dev/null
+++ b/components/i18n/catalogs/el/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: el\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 άτομο αντέδρασε"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Σχετικά"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Αποδοχή αιτήματος φιλίας"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Προσθήκη φίλου"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Όλα τα Μηνύματα"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Είστε ήδη φίλοι με αυτόν τον χρήστη."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Εμφάνιση"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Ανάθεση Ρόλων"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Εφαρμογή Επαληθευτή"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Εμβλήματα"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Αποκλεισμός"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Αποκλεισμός μέλους"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Αποκλεισμός Μελών"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Αποκλεισμοί"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Αποκλεισμός χρήστη"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Αποκλεισμένα"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Αποκλεισμένος Χρήστης"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bug Tracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Ακύρωση"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Ακύρωση αιτήματος φιλίας"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Αδύνατη η διαγραφή του λογαριασμού μέχρι όλοι οι σερβερς να διαγραφούν ή μεταφερθούν"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Αλλαγή"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Αλλαγή Avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Αλλαγή Ψευδώνυμου"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Περιγραφή Καναλιού"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Όνομα Καναλιού"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Κανάλια"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Έλεγξε το mail σου!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Καθαρισμός κατάστασης"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Ρυθμίσεις Εφαρμογής"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Κλείσιμο"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Επιβεβαίωση"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Επιβεβαίωση Ενέργειας"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Σύνδεση"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Το περιεχόμενο παραβιάζει έναν ή περισσότερους νόμους"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Συνέχεια"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Συνομιλίες"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Αντιγραφή ID καναλιού"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Αντιγραφή ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Αντιγραφή συνδέσμου"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Αντιγραφή ID μηνύματος"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Αντιγραφή ID server"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Αντιγραφή κειμένου"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Αντιγραφή ID χρήστη"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Δημιουργία"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Δημιούργησε μια ομάδα"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Δημιούργησε ένα νέο bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Δημιούργησε ένα νέο ρόλο"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Δημιούργησε έναν λογαριασμό"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Δημιουργία κατηγορίας"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Δημιουργία καναλιού"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Δημιουργία πρόσκλησης"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Τρέχων Κωδικός πρόσβασης"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Προσαρμοσμένη κατάσταση"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Εξατομίκευση"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Κώφωση Μελών"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Προεπιλεγμένος"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Διαγραφή"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Διαγραφή καναλιού"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Διαγραφή μηνύματος"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Διαγραφή Ρόλου"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Απενεργοποίηση Λογαριασμού"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Μην Ενοχλείτε"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Έγινε"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Επεξεργασία ταυτότητας"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Επεξεργασία μηνύματος"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Ενεργοποίηση εφαρμογής επαληθευτή"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Ενεργοποίηση Ειδοποιήσεων Επιφάνειας εργασίας"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Εισήγαγε έναν νέο κωδικό πρόσβασης."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Είσοδος στο Κανάλι"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Εισήγαγε Κωδικό"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Εισήγαγε τον τρέχοντα κωδικό πρόσβασής σου."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Εισήγαγε το όνομα χρήστη σου."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Οι εξωτερικοί σύνδεσμοι μπορεί να είναι επικίνδυνοι!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Αποτυχία επαλήθευσης!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Σχόλια"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Βρες μια κοινότητα με βάση τα χόμπι ή τα ενδιαφέροντά σου."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Αφοσιωμένος"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Φίλοι"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Δημιούργησε Κωδικούς Ανάκτησης"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Δημιουργία πρόσκλησης…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Επιστροφή στην σύνδεση"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Πήγαινε στον server των δοκιμαστών"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Όνομα Ομάδας"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Γεια σου!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Αρχική"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Επιβεβαιώνω ότι είμαι τουλάχιστον 18 ετών."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Αδρανής"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Αόρατος"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Προσκάλεσε όλους σου τους φίλους, μερικά cool bots και κάνε ένα μεγάλο πάρτι."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Κωδικός Πρόσκλησης"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Πρόσκληση Άλλων"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Προσκλητής"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Προσκλήσεις"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Μετάβαση στο παρόν"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Μετάβαση στην αρχή"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Διωγμός"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Διωγμός μέλους"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Διωγμός Μελών"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Γλώσσα"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Πιο πρόσφατο"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Αποχώρηση"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Αποχώρηση από την ομάδα"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Αποχώρηση από τον server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Ενημέρωσέ μας πώς μπορούμε να βελτιώσουμε την εφαρμογή μας αφήνοντας σχόλια."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Αποσύνδεση"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Αποσύνδεση από όλες τις άλλες συνεδρίες"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Σύνδεση"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Διαχείριση Εξατομίκευσης"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Διαχείριση Μηνυμάτων"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Διαχείριση Ψευδώνυμων"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Διαχείριση Αδειών"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Διαχείριση Ρόλων"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Διαχείριση Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Διαχείριση Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Επισήμανση ως αναγνωσμένο"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Επισήμανση ως μη αναγνωσμένο"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Μεταμφίεση"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Μέλη"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Επισήμανση"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Μόνο Επισημάνσεις"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Μήνυμα"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Το μήνυμα δεν έχει φορτωθεί, κάνε κλικ για μετάβαση"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Εισερχόμενο Μήνυμα"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Εξερχόμενο Μήνυμα"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Το μήνυμα εστάλη από άλλη πλατφόρμα"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Μυνήματα"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Μετακίνηση Μελών"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Σίγαση Μελών"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Σε σίγαση"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Κοινοί Φίλοι"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Κοινές Ομάδες"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Ο Λογαριασμός μου"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Τα Bot μου"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Νέος Κωδικός πρόσβασης"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Ψευδώνυμο"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Τίποτα"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Ειδοποιήσεις"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Ανενεργό"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Επίσημη Επικοινωνία"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Επίσημος Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Αποσυνδεδεμένος"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OΚ"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Πιο παλιό"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Ενεργό"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Μόλις διαγραφεί, δεν υπάρχει επιστροφή."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Συνδεδεμένος"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Άνοιγμα ρυθμίσεων"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Επισκόπηση"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Κωδικός πρόσβασης"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Άδειες"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Διάλεξε ένα όνομα χρήστη με το οποίο θέλεις οι άλλοι να μπορούν να σε βρίσκουν. Αυτό μπορεί να αλλάξει αργότερα στις ρυθμίσεις χρήστη σου."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Παρακαλώ επιβεβαίωσε αυτή την ενέργεια χρησιμοποιώντας την επιλεγμένη μέθοδο."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Παρακαλώ εισήγαγε το email σου."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Παρακαλώ να τα αποθηκεύσεις σε ασφαλές μέρος."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Παρακαλώ σάρωσε ή χρησιμοποιήστε το παρακάτω token στην εφαρμογή επαληθευτή σου."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Παρακαλώ διάλεξε μία μέθοδο για έλεγχο ταυτότητας του αιτήματος."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Πολιτική Απορρήτου"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Προφίλ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Ανάγνωση Ιστορικού Μηνυμάτων"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Αιτία"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Κωδικός Ανάκτησης"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Εγγραφή"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Απόρριψη αιτήματος φιλίας"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Σχετικότητα"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Αφαίρεση Επαληθευτή"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Αφαίρεση Avatar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Αφαίρεση φίλου"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Απάντηση"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Απαντάς σε"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Αναφορά"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Αναφορά μηνύματος"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Αναφορά server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Αναφορά χρήστη"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Επαναποστολή επαλήθευσης"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Επαναφορά"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Επαναφορά κωδικού πρόσβασης"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Όνομα Ρόλου"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Ρόλοι"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Αποθήκευση"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Αποθηκεύτηκε στις σημειώσεις σου"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Αποθηκευμένες Σημειώσεις"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Διάλεξε τη γλώσσα σου"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Αποστολή Ενσωματώσεων"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Αποστολή Μηνυμάτων"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Στάλθηκε ένα συνημμένο"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Στάλθηκαν πολλαπλά συνημμένα"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Περιγραφή Server"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Όνομα Server"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Συνεδρίες"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Ρυθμίσεις"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Αρκετά άτομα πληκτρολογούν…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Ήχοι"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Πηγαίος Κώδικας"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Ομιλία"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Υποβολή πρότασης χαρακτηριστικού"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Υποβολή σχολίων"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Υποστήριξε το εγχείρημα κάνοντας μια δωρεά - σε ευχαριστούμε!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Όροι Χρήσης"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Κανάλι Κειμένου"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Θέμα"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Αυτή είναι η αρχή της συζήτησής σου."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Αυτή είναι η αρχή των σημειώσεών σου."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Αυτός ο χρήστης σε έχει αποκλείσει."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout Μελών"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Κατάργηση αποκλεισμού χρήστη"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Μεταφόρτωση Αρχείων"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Χρήστης"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Χρήστης Συμμετάσχει στην Κλήση"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Χρήστης Έφυγε από την Κλήση"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Διαχείριση Χρηστών"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Ρυθμίσεις Χρήστη"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Όνομα χρήστη"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Επαληθεύουμε το λογαριασμό σου…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Βίντεο"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Προβολή Καναλιού"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Δες τις τρέχουσες αναφορές σφαλμάτων εδώ."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Προβολή παλαιότερων ενημερώσεων"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Προβολή Κωδικών Ανάκτησης"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Βλέπεις παλαιότερα μηνύματα"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Κανάλι Φωνής"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Σου έχουμε στείλει ένα email επαλήθευσης. Παρακαλώ περίμενε ως και 10 λεπτά για την παραλαβή."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Καλωσόρισες στο"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Καλωσόρισες!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Μπορείς επίσης να κάνεις δεξί κλικ στην εικόνα χρήστη που βρίσκεται επάνω αριστερά, ή αριστερό κλικ εάν είσαι ήδη στην αρχική."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Μπορείς να το ανοίξεις ξανά αργότερα, αλλά θα εξαφανιστεί και για τις δύο πλευρές."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Μπορείς να αναφέρεις προβλήματα και να συζητήσεις βελτιώσεις μαζί μας απευθείας εδώ."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Δεν μπορείς να αναιρέσεις αυτή την ενέργεια."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Δεν έχεις άδεια αποστολής μηνυμάτων σε αυτό το κανάλι."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Δε θα μπορείς να αποκτήσεις πρόσβαση στον λογαριασμό σου εκτός και αν επικοινωνήσεις με την υποστήριξη - ωστόσο, τα δεδομένα σου δεν θα διαγραφούν."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Δεν θα μπορείς να συμμετάσχεις ξανά αν δεν σε προσκαλέσουν ξανά."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Ο λογαριασμός σου επαληθεύτηκε!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Οι κωδικοί ανάκτησής σου"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/en/messages.js b/components/i18n/catalogs/en/messages.js
new file mode 100644
index 0000000..034db28
--- /dev/null
+++ b/components/i18n/catalogs/en/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/export default {messages:JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Create an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter your preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current Password\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter your current password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saved Notes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Save to your notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Privacy Policy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We've sent you a verification email. Please allow up to 10 minutes for it to arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check your mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Register\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Please enter your email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back to login\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welcome!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channels\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Hello!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of your notes.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Do Not Disturb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Friends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms of Service\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
diff --git a/components/i18n/catalogs/en/messages.mjs b/components/i18n/catalogs/en/messages.mjs
new file mode 100644
index 0000000..d254db1
--- /dev/null
+++ b/components/i18n/catalogs/en/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Create an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter your preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current Password\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter your current password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saved Notes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Save to your notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Privacy Policy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We've sent you a verification email. Please allow up to 10 minutes for it to arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check your mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Register\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Please enter your email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back to login\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welcome!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channels\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Hello!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of your notes.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Do Not Disturb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Friends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms of Service\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/en/messages.po b/components/i18n/catalogs/en/messages.po
new file mode 100644
index 0000000..5feaffc
--- /dev/null
+++ b/components/i18n/catalogs/en/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 16:36-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: en\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr "[Yesterday at] LT"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr "[Today at] LT"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr "[Tomorrow at] LT"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr "[Last] dddd [at] LT"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr "dddd [at] LT"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr "(changes are being saved…)"
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr "{0, plural, one {# blocked message} other {# blocked messages}}"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr "{0, plural, one {# Member} other {# Members}}"
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr "{0, plural, one {Drop a file} other {Drop # files}}"
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr "{0} and {1} are typing…"
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr "{0} changed the channel description"
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr "{0} changed the channel icon"
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr "{0} emoji slots remaining"
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr "{0} is typing…"
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr "{0} joined"
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr "{0} left"
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr "{0} made {1} the new group owner"
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr "{0} pinned a message"
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr "{0} renamed the channel"
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr "{0} unpinned a message"
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr "{0} was added by {1}"
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr "{0} was banned"
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr "{0} was kicked"
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr "{0} was removed by {1}"
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr "{0}-{1} of {2}"
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr "{0}'s roles"
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr "{unknown} reacted"
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr "{usernames} and {unknown} others reacted"
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr "{usernames} reacted"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr "<0/> has been added by <1/>"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr "<0/> has been banned from the server"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr "<0/> has been kicked from the server"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr "<0/> has been removed by <1/>"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr "<0/> joined the server"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr "<0/> left the group"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr "<0/> left the server"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr "<0/> pinned <1/>"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr "<0/> started a call"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr "<0/> started a call that lasted "
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr "<0/> transferred group ownership to <1/>"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr "<0/> unpinned <1/>"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr "<0/> updated the group description"
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr "<0/> updated the group icon "
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr "<0/> updated the group name to <1>{0}1>"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 person reacted"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr "12 hours"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr "24 hours"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr "Able to access channels on this server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr "Able to access this channel"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr "Able to speak in voice call"
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "About"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr "Accept"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Accept friend request"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr "Acknowledge"
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr "Add"
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr "Add a new friend"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Add friend"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr "Add friends to group"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr "Add new members to the group"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr "Add status text"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr "Admin"
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr "Admin Panel"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Advanced"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr "Affects all roles and users"
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr "All"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "All Messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr "Allow members to change name and avatar per-message"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr "Allow others to add your bot to their servers from Discover"
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Already friends with this user."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr "American (MM/DD/YYYY)"
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr "An error occurred."
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr "An internal error occurred. ({0})"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Appearance"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr "Are you sure you want to clear your sessions?"
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr "Are you sure you want to delete this?"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr "Are you sure you want to go to "
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr "Are you sure you want to go to <0>{0}0>?"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr "Assign lower-ranked roles to lower-ranking members"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Assign Roles"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authenticator App"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr "Back"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Badges"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr "Ban evasion"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr "Ban lower-ranking members from the server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ban member"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr "Ban Member"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Ban Members"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr "Ban user"
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr "Ban User"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr "Banner"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bans"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Block user"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blocked"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blocked User"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr "Browser Echo Cancellation"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr "Browser Noise Supression"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bug Tracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr "Busy"
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cancel"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancel friend request"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr "Cancel message"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Cannot delete account until servers are deleted or transferred"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr "Cannot edit this message."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Change"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Change Avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr "Change identity on {0}"
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr "Change login email"
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr "Change login password"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Change Nickname"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr "Change other members' nicknames"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr "Change own avatar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr "Change own nickname"
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr "Change username"
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr "Change your profile per-server"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr "Changelog"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Channel Description"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr "Channel Info"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Channel Name"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr "Channel Settings"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Channels"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr "Chat Input"
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Check your mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr "Choose a username"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr "Choose username"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Clear status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr "Click on the items below to learn more about different changes!"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr "Click to show full description"
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr "Click to show spoiler"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Client Settings"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Close"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr "Close chat"
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr "Close conversation with {0}?"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr "Code"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr "Configure a way to get back into your account in case your 2FA is lost"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr "Configure one-time password authentication"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirm"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirm action"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Connect"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr "Connect to voice channel"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr "Connected"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr "Connecting"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Content breaks one or more laws"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continue"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr "Continue to app"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr "Contribute a language"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversations"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr "Copy category ID"
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copy channel ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copy ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr "Copy Invite URL"
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copy link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr "Copy Link"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copy message ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr "Copy role ID"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copy server ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copy text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr "Copy Token"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copy user ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr "Copy webhook URL"
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr "Could not find what you requested."
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Create"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr "Create a channel before inviting others!"
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Create a group"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr "Create a group or server"
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Create a new bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr "Create a new category"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr "Create a new group"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Create a new role"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr "Create a webhook"
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Create an account"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr "Create and edit server roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr "Create and edit webhooks"
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr "Create Bot"
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Create category"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Create channel"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Create invite"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr "Create Invite"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr "Create invites for others to use"
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr "Create Role"
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr "Create server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr "Create server emoji"
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr "Create Webhook"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr "Created <0/>"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Current Password"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr "Current Session"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Custom status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr "Custom window frame"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Customisation"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr "Dark"
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr "Database error, please contact support. ({0})"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr "Deafen lower-ranking members in voice call"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Deafen Members"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Default"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr "Default Permissions"
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Delete"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr "Delete {0}?"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr "Delete Account"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr "Delete and pin messages sent by other members"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr "Delete Bot"
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr "Delete category"
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Delete channel"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr "Delete Channel"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr "Delete Invite"
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Delete message"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Delete Role"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr "Delete Server"
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr "Description provided by {0}"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr "Desktop"
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr "Developer Documentation"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Disable Account"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr "Disable one-time password authenticator"
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr "Disabled"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr "Disconnected"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr "Discord RPC"
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr "Discover Stoat"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr "Display & Text"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr "Display Name"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Do Not Disturb"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr "Don't ask me again for "
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr "Don't ask me again for <0>{0}0>"
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr "Don't notify others that you've left"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr "Donate"
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr "Donate to Stoat"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr "Donated to Stoat"
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Done"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr "Drugs or illegal goods"
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr "Edit {0}'s roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr "Edit and delete channel"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr "Edit any permissions on the server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr "Edit channel-specific role and default permissions"
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr "Edit Global Profile"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr "Edit group name and description"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Edit identity"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr "Edit Identity"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Edit message"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr "Edit roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr "Edit the server's information and settings"
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Edit your identity"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr "Edited"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr "Effective <0/> (<1/>)"
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr "Emoji Name"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr "Emoji Pack (affects your messages only)"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr "Enable Authenticator"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Enable authenticator app"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Enable Desktop Notifications"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr "Enable transparency glass/blur effects (slow on older machines)"
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr "Enter a new name for this session"
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Enter a new password."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Enter Channel"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Enter Code"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Enter your current password."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr "Enter your current password..."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Enter your preferred username."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "External links can be dangerous!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr "Extortion or blackmail"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr "Extreme violence, gore or animal cruelty"
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr "Failed to process the image you provided."
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr "Failed to send"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Failed to verify!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Find a community based on your hobbies or interests."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr "Find your com<0/>munity,<1/>connect with the world."
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Focus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr "For 1 hour"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr "For 15 minutes"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr "For 24 hours"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr "For 3 hours"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr "For 8 hours"
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Friends"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr "Fruit Salad"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr "Generate a new token if it gets lost or compromised"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generate Recovery Codes"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generating invite…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr "Get a new set of recovery codes"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr "Get active recovery codes"
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr "Give feedback on Stoat"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr "Give us some detail"
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Go back to login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr "Go to account settings to edit your username"
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr "Go to the Stoat Lounge"
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Go to the testers server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr "Good"
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr "Grants {0} permissions and denies {1} permissions"
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Group Name"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr "Harassment or cyberbullying"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr "Hardware Acceleration"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr "Hear other people and see their video"
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hello!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr "Help contribute to an existing or new language"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr "Helped translate Stoat"
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr "Here is your new invite code: <0>{0}0>"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr "High Contrast"
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Home"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "I confirm that I am at least 18 years old."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr "I understand the consequences"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Idle"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr "Illegal hacking or cracking"
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr "Image by @fakurian"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr "Impersonation"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr "Instead of closing, Stoat will hide in your tray."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr "Interface Font"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisible"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invite all of your friends, some cool bots, and throw a big party."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr "Invite Bot"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Invite Code"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invite Others"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Inviter"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invites"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr "irrelevant joke badge 1"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr "irrelevant joke badge 2"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr "ISO Standard (YYYY-MM-DD)"
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr "Join"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr "Join a server"
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr "Join call"
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr "Join the Stoat Lounge"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr "Join the voice channel"
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr "Joined"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Jump to present"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Jump to the beginning"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr "Keep as is"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Kick"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr "Kick lower-ranking members from the server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Kick member"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr "Kick Member"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kick Members"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Language"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr "Last sync <0/>"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Latest"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr "Launch Stoat when you log into your computer."
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr "Learn more about how to create bots on Stoat."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Leave"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr "Leave {0}?"
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Leave group"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Leave server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr "Let Stoat use its own custom titlebar."
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Let us know how we can improve our app by giving us feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr "Light"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr "Listen"
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr "Load file ({0})"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr "Log In"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Log Out"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Log out of all other sessions"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr "Log Out Other Sessions"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Login"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr "Logs you out of all sessions except this device."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr "Malware or phishing"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr "Manage Channel"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Manage Customisation"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Manage Messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Manage Nicknames"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Manage Permissions"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Manage Roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Manage Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Manage Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr "Mark as mature"
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr "Mark as Mature"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Mark as read"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Mark as unread"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr "Mark this channel as mature?"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Masquerade"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Members"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mention"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr "Mention Everyone"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr "Mention everyone and online members inside the server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr "Mention Roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr "Mention specific roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr "Mentions"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Mentions Only"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Message"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr "Message {0}"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr "Message Group Spacing"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Message not loaded, click to jump"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Message Received"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Message Sent"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr "Message Size"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Message was sent on another platform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Messaging"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr "Minimise to Tray"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr "Missing permission"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr "Monochrome"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr "Monospace Font"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr "More Contrast"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Move Members"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr "Move members between voice channels"
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr "Multi-factor authentication is already enabled for this account."
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr "Mute"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr "Mute Channel"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr "Mute lower-ranking members in voice call"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Mute Members"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr "Mute Server"
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Muted"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr "Muted until <0/>"
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Mutual Friends"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Mutual Groups"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "My Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "My Bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr "Name"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr "Neutral"
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr "NEW"
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr "New messages since {0}"
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "New Password"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr "New to Stoat"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr "New to the server"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Nickname"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr "No permissions set yet"
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr "Nobody here right now!"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "None"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr "Normal"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr "Not of minimum age to use the platform"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifications"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Off"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Official Communication"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Official Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Oldest"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "On"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Once it's deleted, there's no going back."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr "One of the first 1000 users!"
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr "Only mentions will notify you"
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr "Open"
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr "Open {0}"
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr "Open channel settings"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr "Open file"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr "Open server settings"
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Open settings"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr "Other"
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr "Output Volume"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Overview"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr "Pardon User"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Password"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr "Pending"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permissions"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr "Pin message"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr "Platform Moderator"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Please confirm this action using the selected method."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Please enter your email."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr "Please log in again."
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Please save these to a safe location."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Please scan or use the token below in your authenticator app."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Please select a method to authenticate your request."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr "Please select a reason"
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privacy Policy"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr "Private Channel"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profile"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr "Profile Bio"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr "Promotes harm"
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr "Provided email or password is wrong."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr "Raid or spam attack"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr "React"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr "React to messages with emoji"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Read Message History"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr "Read More"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr "Read past messages sent in channel"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr "Read past messages sent in channels"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Reason"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr "Receive notifications while the app is open and in the background."
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr "Reconnecting"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Recovery Code"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr "Recovery Codes"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr "Reduced"
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Register"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr "Registered since <0/>"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Reject friend request"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevance"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr "Remove all reactions"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Remove Authenticator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Remove Avatars"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Remove friend"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr "Remove other members' avatars"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr "Remove reaction"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr "Rename"
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr "Rename category"
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr "Rename Session"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr "Rep Stoat using Discord rich presence."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Reply"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Replying to"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Report"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Report message"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Report server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Report user"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr "Resend"
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Resend verification"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reset"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr "Reset {0}'s token?"
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Reset password"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr "Reset Recovery Codes"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Reset Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr "Responsibly disclosed security issues"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr "Retry sending"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr "Revenge or underage pornography"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr "Review policy changes"
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr "Roadmap"
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Role Name"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roles"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Save"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr "Save file"
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Save to your notes"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Saved Notes"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr "Scams or fraud"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr "Search for groups..."
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr "Search for users..."
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr "See what we're currently working on."
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr "Select audio input"
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr "Select audio output"
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr "Select members to add"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Select your language"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr "Send attachments to chat"
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr "Send email"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr "Send embedded content such as link embeds or custom embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Send Embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Send Messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr "Send messages in channel"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr "Send messages in channels"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr "Send Request"
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr "Sending..."
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr "Sent"
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr "Sent {0} attachments"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Sent an attachment"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Sent multiple attachments"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr "Server Avatar"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr "Server Banner"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr "Server Default"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Server Description"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr "Server Icon"
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr "Server Identities"
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Server Name"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr "Server Roles"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessions"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr "Set your status"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Settings"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr "Setup one-time password authenticator"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr "Setup recovery codes"
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Several people are typing…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr "Share camera or screen in voice call"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr "Show corrections and suggestions as you type."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr "Show send message button"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr "Sign into Stoat"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr "Sign Up"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr "Silent"
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr "someone@example.com"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr "Something cool about me..."
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr "Something is wrong with your request, {0}."
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr "Something went wrong! {error}"
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr "Something went wrong! Try again later."
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sounds"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Source Code"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr "Spam or similar platform abuse"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Speak"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr "Spellchecker"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr "Start the call"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr "Start with Computer"
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr "Status"
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr "Stoat Desktop"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr "Stoat Developer"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr "Stoat for Desktop"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr "Stoat Founder"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Submit feature suggestion"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Submit feedback"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr "Submit to Discover"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr "Subscriptions"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr "Suggest new Stoat features on GitHub discussions."
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Support the project by donating - thank you!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr "Switch to this voice channel"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr "Sync appearance options, such as chosen emoji pack and message density."
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr "Sync your chosen theme, colours, and any custom CSS."
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr "Sync your currently chosen language."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr "System"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr "System message channels"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr "Tell us what's wrong with this message"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr "Tell us what's wrong with this server"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr "Tell us what's wrong with this user"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr "Temporarily prevent lower-ranking members from interacting"
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Terms of Service"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Text Channel"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr "That action had no effect."
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr "The password is too short."
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Theme"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr "This account is not activated! Please check your account's inbox and try again."
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr "This bot is private and can only be added by the creator."
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr "This channel is about..."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr "This channel is marked as mature."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr "This channel is not available in your region while we review options on legal compliance."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr "This content is not available in your region."
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr "This feature is currently disabled."
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr "This file type is not allowed."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr "This group is too large, you can have up to {0} users."
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr "This has already been sent."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "This is the start of your conversation."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "This is the start of your notes."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr "This message is already pinned."
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr "This message is empty and has not been sent."
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr "This password has previously appeared in security leaks, please use another password."
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr "This server is about..."
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "This user has blocked you."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr "This user is not part of the server and may already be banned"
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr "This username is already taken."
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr "This username is not allowed."
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr "This will invalidate the current token and stop any existing instances of the bot from running."
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout Members"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr "Toggle main sidebar"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr "Tonal Spot"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr "Traditional (DD/MM/YYYY)"
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr "Trending GIFs"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Unblock user"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr "Uncaught Stoat error: {0}"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr "Unknown Server"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr "Unmark as mature"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr "Unmark as Mature"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr "Unmark this channel as mature?"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr "Unmute Channel"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr "Unmute Server"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr "Unpin message"
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr "Unsent message"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr "Unsolicited advertising or spam"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr "Until I turn it back on"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Upload Files"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr "Use a code or invite link"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr "Use the graphics card to improve performance."
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "User"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr "User Banned"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr "User broke a certain rule…"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr "User Joined"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "User Joined Call"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr "User Kicked"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr "User Left"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "User Left Call"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "User Management"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "User Settings"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr "User's profile has inappropriate content"
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Username"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr "username#1234"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr "Users will be asked to confirm their age before joining this channel."
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr "Users will be asked to confirm their age before opening this channel."
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr "Using default microphone"
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr "Using default speaker"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr "Verified"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verifying your account…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr "Version:"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "View Channel"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "View currently active bug reports here."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr "View members"
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "View older updates"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr "View pinned messages"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "View Recovery Codes"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Viewing older messages"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr "Voice"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Voice Channel"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr "Voice Processing"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr "Volume"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr "Want to change username?"
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr "Webhook Icon"
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr "Webhook Name"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Welcome to"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Welcome!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr "Whether other users can edit these settings"
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr "With {0}"
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr "Would you like to create a new group or server?"
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr "Would you like to create a new server or join an existing one?"
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr "You agree that your bot is subject to the Acceptable Usage Policy."
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr "You are about to ban {0}"
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr "You are about to kick {0}"
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr "You are banned from this server."
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr "You can also click the gear icon in the bottom left."
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "You can also right-click the user icon in the top left, or left click it if you're already home."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "You can re-open it later, but it will disappear on both sides."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "You can report issues and discuss improvements with us directly here."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr "You can't be in more than {0} servers, please leave one and try again."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr "You can't have more than {0} channels on this server."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr "You can't have more than {0} emojis on this server."
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr "You cannot give yourself missing permissions."
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr "You cannot join this call."
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr "You cannot remove yourself."
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr "You cannot report yourself."
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr "You cannot timeout yourself."
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "You cannot undo this action."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr "You clicked on \"{0}\""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr "You do not have permission to do this."
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "You don't have permission to send messages in this channel."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr "You have this user blocked."
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr "You muted this user."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr "You were logged out!"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr "You will not receive any notifications"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "You won't be able to rejoin unless you are re-invited."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr "You're already part of this group."
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr "You're already part of this server."
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr "You've already sent a request to this user."
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr "You've been invited to join this server.<0/>Would you like to join?"
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr "You've been signed out of Stoat!"
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr "You've reached your personal bot limit."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr "You've sent too many friend requests, the maximum is {0}"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Your account has been verified!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr "Your discriminator change has been ratelimited, please try again later."
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr "Your message is too long, please remove some characters and try again."
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Your recovery codes"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr "Your role ranking is too low to take this action."
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr "Your user has already been created? Try logging in again or refreshing the app."
diff --git a/components/i18n/catalogs/en_US/messages.js b/components/i18n/catalogs/en_US/messages.js
new file mode 100644
index 0000000..4fc7c3c
--- /dev/null
+++ b/components/i18n/catalogs/en_US/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by, this can be changed later in settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Create an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Backup Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customization\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter your preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current Password\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter your current password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saved Notes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm using a selected method.\"],\"JW8mxK\":[\"Save to your notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Privacy Policy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Please allow up to 10 minutes for it to arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check your mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authentication app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customization\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Register\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Please enter your email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back to login\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"User photo\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welcome!\"],\"knjY+b\":[\"You can re-open it later but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channels\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Hello!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is where your notes start.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Do Not Disturb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Friends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms of Service\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/en_US/messages.mjs b/components/i18n/catalogs/en_US/messages.mjs
new file mode 100644
index 0000000..05154c3
--- /dev/null
+++ b/components/i18n/catalogs/en_US/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by, this can be changed later in settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Create an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Username\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Backup Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Customization\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter your preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current Password\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter your current password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saved Notes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm using a selected method.\"],\"JW8mxK\":[\"Save to your notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Privacy Policy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Please allow up to 10 minutes for it to arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check your mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authentication app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customization\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Register\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Please enter your email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back to login\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"User photo\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welcome!\"],\"knjY+b\":[\"You can re-open it later but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channels\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Hello!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is where your notes start.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Do Not Disturb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Friends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"About\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms of Service\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/en_US/messages.po b/components/i18n/catalogs/en_US/messages.po
new file mode 100644
index 0000000..177f8d6
--- /dev/null
+++ b/components/i18n/catalogs/en_US/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: en_US\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 person reacted"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "About"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Add friend"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "All Messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Already friends with this user."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Appearance"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Assign Roles"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authenticator App"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "User photo"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Badges"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ban member"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Ban Members"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bans"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Block user"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blocked"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blocked User"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bug Tracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cancel"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancel request"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Cannot delete account until servers are deleted or transferred"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Change"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Change Avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Change Nickname"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Channel Description"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Channel Name"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Channels"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Check your mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Clear status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Client Settings"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Close"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirm"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirm action"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Connect"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Content breaks one or more laws"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continue"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversations"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copy channel ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copy ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copy link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copy message ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copy server ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copy text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copy user ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Create"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Create a group"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Create a new bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Create a new role"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Create an account"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Create category"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Create channel"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Create invite"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Current Password"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Custom status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Customization"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Deafen Members"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Default"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Delete"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Delete channel"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Delete message"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Delete Role"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Disable Account"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Do Not Disturb"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Done"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Edit identity"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Edit message"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Enable authenticator app"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Enable Desktop Notifications"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Enter a new password."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Enter Channel"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Enter Code"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Enter your current password."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Enter your preferred username."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "External links can be dangerous!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Failed to verify!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Find a community based on your hobbies or interests."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Focus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Friends"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generate Backup Codes"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generating invite…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Go back to login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Go to the testers server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Group Name"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hello!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Home"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "I confirm that I am at least 18 years old."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Idle"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisible"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invite all of your friends, some cool bots, and throw a big party."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Invite Code"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invite Others"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Inviter"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invites"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Jump to present"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Jump to the beginning"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Kick"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Kick member"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kick Members"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Language"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Latest"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Leave"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Leave group"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Leave server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Let us know how we can improve our app by giving us feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Log Out"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Log out of all other sessions"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Login"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Manage Customization"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Manage Messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Manage Nicknames"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Manage Permissions"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Manage Roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Manage Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Manage Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Mark as read"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Mark as unread"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Masquerade"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Members"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mention"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Mentions Only"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Message"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Message not loaded, click to jump"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Message Received"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Message Sent"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Message was sent on another platform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Move Members"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Mute Members"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Muted"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Mutual Friends"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Mutual Groups"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "My Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "My Bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "New Password"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Nickname"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "None"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifications"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Off"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Official Communication"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Official Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ok"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Oldest"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "On"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Once it's deleted, there's no going back."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Open settings"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Overview"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Password"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permissions"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Pick a username that you want people to be able to find you by, this can be changed later in settings."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Please confirm using a selected method."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Please enter your email."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Please save these to a safe location."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Please scan or use the token below in your authentication app."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Please select a method to authenticate your request."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privacy Policy"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profile"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Read Message History"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Reason"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Recovery Code"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Register"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevance"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Remove Authenticator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Remove Avatars"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Remove friend"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Reply"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Replying to"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Report"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Report message"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Report server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Report user"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Resend verification"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reset"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Reset password"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Role Name"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roles"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Save"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Save to your notes"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Saved Notes"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Select your language"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Send Embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Send Messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Sent an attachment"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Sent multiple attachments"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Server Description"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Server Name"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessions"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Settings"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Several people are typing…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sounds"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Source Code"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Speak"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Submit feature suggestion"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Submit feedback"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Support the project by donating - thank you!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Terms of Service"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Text Channel"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Theme"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "This is the start of your conversation."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "This is where your notes start."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "This user has blocked you."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout Members"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Unblock user"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Upload Files"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "User"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "User Joined Call"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "User Left Call"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "User Management"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "User Settings"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Username"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verifying your account…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "View Channel"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "View currently active bug reports here."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "View older updates"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "View Recovery Codes"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Viewing older messages"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Voice Channel"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Please allow up to 10 minutes for it to arrive."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Welcome to"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Welcome!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "You can also right-click the user icon in the top left, or left click it if you're already home."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "You can re-open it later but it will disappear on both sides."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "You can report issues and discuss improvements with us directly here."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "You cannot undo this action."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "You don't have permission to send messages in this channel."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "You won't be able to rejoin unless you are re-invited."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Your account has been verified!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Your recovery codes"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/enchantment/messages.js b/components/i18n/catalogs/enchantment/messages.js
new file mode 100644
index 0000000..db52a48
--- /dev/null
+++ b/components/i18n/catalogs/enchantment/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"ᒲ⚍ℸᒷ↸\"],\"+YFgJi\":[\"ʖᔑ↸⊣ᒷᓭ\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"ᒲᔑ∷ꖌ ᔑᓭ ∷ᒷᔑ↸\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"ᓵ∷ᒷᔑℸᒷ ᔑ リᒷ∴ ∷𝙹ꖎᒷ\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"ꖎ𝙹⊣ 𝙹⚍ℸ 𝙹⎓ ᔑꖎꖎ 𝙹ℸ⍑ᒷ∷ ᓭᒷᓭᓭ╎𝙹リᓭ\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"!¡╎ᓵꖌ ᔑ ⚍ᓭᒷ∷リᔑᒲᒷ ℸ⍑ᔑℸ ||𝙹⚍ ∴ᔑリℸ !¡ᒷ𝙹!¡ꖎᒷ ℸ𝙹 ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ⎓╎リ↸ ||𝙹⚍ ʖ||. ℸ⍑╎ᓭ ᓵᔑリ ʖᒷ ᓵ⍑ᔑリ⊣ᒷ↸ ꖎᔑℸᒷ∷ ╎リ ||𝙹⚍∷ ⚍ᓭᒷ∷ ᓭᒷℸℸ╎リ⊣ᓭ.\"],\"/qQDwm\":[\"⊣ᒷリᒷ∷ᔑℸ╎リ⊣ ╎リ⍊╎ℸᒷ…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"∷ᒷ!¡𝙹∷ℸ ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"ᓭ⚍ʖᒲ╎ℸ ⎓ᒷᒷ↸ʖᔑᓵꖌ\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"ᓵ𝙹!¡|| ᒲᒷᓭᓭᔑ⊣ᒷ ╎↸\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"ꖎᒷᔑ⍊ᒷ ⊣∷𝙹⚍!¡\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"||𝙹⚍ ᓵᔑリ ∷ᒷ!¡𝙹∷ℸ ╎ᓭᓭ⚍ᒷᓭ ᔑリ↸ ↸╎ᓭᓵ⚍ᓭᓭ ╎ᒲ!¡∷𝙹⍊ᒷᒲᒷリℸᓭ ∴╎ℸ⍑ ⚍ᓭ ↸╎∷ᒷᓵℸꖎ|| ⍑ᒷ∷ᒷ.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ʖꖎ𝙹ᓵꖌᒷ↸\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"||𝙹⚍ ∴𝙹リ'ℸ ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ∷ᒷ⋮𝙹╎リ ⚍リꖎᒷᓭᓭ ||𝙹⚍ ᔑ∷ᒷ ∷ᒷ-╎リ⍊╎ℸᒷ↸.\"],\"3QuNUr\":[\"ᓭᒷ⍊ᒷ∷ᔑꖎ !¡ᒷ𝙹!¡ꖎᒷ ᔑ∷ᒷ ℸ||!¡╎リ⊣…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"ᔑꖎ∷ᒷᔑ↸|| ⎓∷╎ᒷリ↸ᓭ ∴╎ℸ⍑ ℸ⍑╎ᓭ ⚍ᓭᒷ∷.\"],\"3T8ziB\":[\"ᓵ∷ᒷᔑℸᒷ ᔑリ ᔑᓵᓵ𝙹⚍リℸ\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"ᓭᒷᓭᓭ╎𝙹リᓭ\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"リ╎ᓵꖌリᔑᒲᒷ\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"ᓭᒷꖎᒷᓵℸ ||𝙹⚍∷ ꖎᔑリ⊣⚍ᔑ⊣ᒷ\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"⎓╎リ↸ ᔑ ᓵ𝙹ᒲᒲ⚍リ╎ℸ|| ʖᔑᓭᒷ↸ 𝙹リ ||𝙹⚍∷ ⍑𝙹ʖʖ╎ᒷᓭ 𝙹∷ ╎リℸᒷ∷ᒷᓭℸᓭ.\"],\"572q5a\":[\"∷ᒷ!¡𝙹∷ℸ ⚍ᓭᒷ∷\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"ᒲᔑ∷ꖌ ᔑᓭ ⚍リ∷ᒷᔑ↸\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"ᓵ⍑ᔑリ⊣ᒷ リ╎ᓵꖌリᔑᒲᒷ\"],\"5dJK4M\":[\"∷𝙹ꖎᒷᓭ\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"𝙹⍊ᒷ∷⍊╎ᒷ∴\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"𝙹⎓⎓ꖎ╎リᒷ\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"⚍ᓭᒷ∷\"],\"7SU2U9\":[\"ᓵ𝙹!¡|| ᓭᒷ∷⍊ᒷ∷ ╎↸\"],\"7VpPHA\":[\"ᓵ𝙹リ⎓╎∷ᒲ\"],\"7dZnmw\":[\"∷ᒷꖎᒷ⍊ᔑリᓵᒷ\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"⚍ᓭᒷ∷リᔑᒲᒷ\"],\"7vhWI8\":[\"リᒷ∴ !¡ᔑᓭᓭ∴𝙹∷↸\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"ᒲᔑリᔑ⊣ᒷ ᓭᒷ∷⍊ᒷ∷\"],\"8FE4JE\":[\"ᒷリᔑʖꖎᒷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡\"],\"8VGnad\":[\"⊣ᒷリᒷ∷ᔑℸᒷ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"!¡ᔑᓭᓭ∴𝙹∷↸\"],\"8aTiea\":[\"ᓵ⚍ᓭℸ𝙹ᒲ╎ᓭᔑℸ╎𝙹リ\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"ᒷリℸᒷ∷ ||𝙹⚍∷ !¡∷ᒷ⎓ᒷ∷∷ᒷ↸ ⚍ᓭᒷ∷リᔑᒲᒷ.\"],\"9D85wC\":[\"ᓵ𝙹!¡|| ⚍ᓭᒷ∷ ╎↸\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"∷ᒷᓭᒷℸ ℸ𝙹ꖌᒷリ\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"!¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リᓭ\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"ʖᔑリ\"],\"9nffag\":[\"⍊╎ᒷ∴╎リ⊣ 𝙹ꖎ↸ᒷ∷ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"⚍リʖꖎ𝙹ᓵꖌ ⚍ᓭᒷ∷\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"ᓵ∷ᒷᔑℸᒷ ᔑ ⊣∷𝙹⚍!¡\"],\"A9Rhec\":[\"ᓵ⍑ᔑリリᒷꖎ リᔑᒲᒷ\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"ᒷリℸᒷ∷ ᔑ リᒷ∴ !¡ᔑᓭᓭ∴𝙹∷↸.\"],\"AU7IRi\":[\"ℸᒷ/ℸ ᓵ⍑ᔑリリᒷꖎ\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"⍊𝙹╎ᓵᒷ ᓵ⍑ᔑリリᒷꖎ\"],\"BHsrDx\":[\"╎リ⍊╎ℸᒷᓭ\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ ∴ᔑᓭ ᓭᒷリℸ 𝙹リ ᔑリ𝙹ℸ⍑ᒷ∷ !¡ꖎᔑℸ⎓𝙹∷ᒲ\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"⍊╎ᒷ∴ ᓵ⍑ᔑリリᒷꖎ\"],\"CK7kdd\":[\"ᓵꖎᒷᔑ∷ ᓭℸᔑℸ⚍ᓭ\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"ᓵ⍑ᔑリリᒷꖎ ↸ᒷᓭᓵ∷╎!¡ℸ╎𝙹リ\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ᓭᒷリ↸ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"CkIs/i\":[\"ᒲ⚍ℸᒷ ᒲᒷᒲʖᒷ∷ᓭ\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"ᓵ⚍∷∷ᒷリℸ !¡ᔑᓭᓭ∴𝙹∷↸\"],\"DDpDsO\":[\"╎リ⍊╎ℸᒷ ᓵ𝙹↸ᒷ\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"𝙹⎓⎓╎ᓵ╎ᔑꖎ ᓵ𝙹ᒲᒲ⚍リ╎ᓵᔑℸ╎𝙹リ\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"↸𝙹リᒷ\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ リ𝙹ℸ ꖎ𝙹ᔑ↸ᒷ↸, ᓵꖎ╎ᓵꖌ ℸ𝙹 ⋮⚍ᒲ!¡\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ᓭ⚍ʖᒲ╎ℸ ⎓ᒷᔑℸ⚍∷ᒷ ᓭ⚍⊣⊣ᒷᓭℸ╎𝙹リ\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"ꖌ╎ᓵꖌ\"],\"EdQY6l\":[\"リ𝙹リᒷ\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"ᓵ𝙹リ⍊ᒷ∷ᓭᔑℸ╎𝙹リᓭ\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ᓭᒷリℸ ᔑリ ᔑℸℸᔑᓵ⍑ᒲᒷリℸ\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"ᓵ∷ᒷᔑℸᒷ ᓵᔑℸᒷ⊣𝙹∷||\"],\"F1uGNS\":[\"ᒲᔑリᔑ⊣ᒷ リ╎ᓵꖌリᔑᒲᒷᓭ\"],\"FEr96N\":[\"ℸ⍑ᒷᒲᒷ\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"∷ᒷᒲ𝙹⍊ᒷ ᔑ⍊ᔑℸᔑ∷ᓭ\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"ᒷリᔑʖꖎᒷ ↸ᒷᓭꖌℸ𝙹!¡ リ𝙹ℸ╎⎓╎ᓵᔑℸ╎𝙹リᓭ\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"⎓𝙹ᓵ⚍ᓭ\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"ᓵ𝙹!¡|| ᓵ⍑ᔑリリᒷꖎ ╎↸\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"ᒲ⚍ℸ⚍ᔑꖎ ⊣∷𝙹⚍!¡ᓭ\"],\"GhCPk1\":[\"𝙹リᓵᒷ ╎ℸ'ᓭ ↸ᒷꖎᒷℸᒷ↸, ℸ⍑ᒷ∷ᒷ'ᓭ リ𝙹 ⊣𝙹╎リ⊣ ʖᔑᓵꖌ.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"ᒷリℸᒷ∷ ||𝙹⚍∷ ᓵ⚍∷∷ᒷリℸ !¡ᔑᓭᓭ∴𝙹∷↸.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"!¡ꖎᒷᔑᓭᒷ ᓭᒷꖎᒷᓵℸ ᔑ ᒲᒷℸ⍑𝙹↸ ℸ𝙹 ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸᒷ ||𝙹⚍∷ ∷ᒷᑑ⚍ᒷᓭℸ.\"],\"HAKBY9\":[\"⚍!¡ꖎ𝙹ᔑ↸ ⎓╎ꖎᒷᓭ\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"ᓭᔑ⍊ᒷ↸ リ𝙹ℸᒷᓭ\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"∷ᒷᓭᒷリ↸ ⍊ᒷ∷╎⎓╎ᓵᔑℸ╎𝙹リ\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"ᒲ𝙹⍊ᒷ ᒲᒷᒲʖᒷ∷ᓭ\"],\"ImOQa9\":[\"∷ᒷ!¡ꖎ||\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ᓭᒷリℸ ᒲ⚍ꖎℸ╎!¡ꖎᒷ ᔑℸℸᔑᓵ⍑ᒲᒷリℸᓭ\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"ᓵᔑリリ𝙹ℸ ↸ᒷꖎᒷℸᒷ ᔑᓵᓵ𝙹⚍リℸ ⚍リℸ╎ꖎ ᓭᒷ∷⍊ᒷ∷ᓭ ᔑ∷ᒷ ↸ᒷꖎᒷℸᒷ↸ 𝙹∷ ℸ∷ᔑリᓭ⎓ᒷ∷∷ᒷ↸\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"ᓵ𝙹リ⎓╎∷ᒲ ᔑᓵℸ╎𝙹リ\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"⍊╎ᒷ∴ 𝙹ꖎ↸ᒷ∷ ⚍!¡↸ᔑℸᒷᓭ\"],\"JUJmXm\":[\"!¡ꖎᒷᔑᓭᒷ ᓵ𝙹リ⎓╎∷ᒲ ℸ⍑╎ᓭ ᔑᓵℸ╎𝙹リ ⚍ᓭ╎リ⊣ ℸ⍑ᒷ ᓭᒷꖎᒷᓵℸᒷ↸ ᒲᒷℸ⍑𝙹↸.\"],\"JW8mxK\":[\"ᓭᔑ⍊ᒷ ℸ𝙹 ||𝙹⚍∷ リ𝙹ℸᒷᓭ\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"∴ᒷꖎᓵ𝙹ᒲᒷ ℸ𝙹\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"||𝙹⚍ ᓵᔑリ ᔑꖎᓭ𝙹 ∷╎⊣⍑ℸ-ᓵꖎ╎ᓵꖌ ℸ⍑ᒷ ⚍ᓭᒷ∷ ╎ᓵ𝙹リ ╎リ ℸ⍑ᒷ ℸ𝙹!¡ ꖎᒷ⎓ℸ, 𝙹∷ ꖎᒷ⎓ℸ ᓵꖎ╎ᓵꖌ ╎ℸ ╎⎓ ||𝙹⚍'∷ᒷ ᔑꖎ∷ᒷᔑ↸|| ⍑𝙹ᒲᒷ.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"↸ᒷꖎᒷℸᒷ ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"ᓵ𝙹リℸᒷリℸ ʖ∷ᒷᔑꖌᓭ 𝙹リᒷ 𝙹∷ ᒲ𝙹∷ᒷ ꖎᔑ∴ᓭ\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ᓭ𝙹⚍リ↸ᓭ\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"𝙹⎓⎓╎ᓵ╎ᔑꖎ ᓭᒷ∷⍊ᒷ∷\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"∷ᒷᒲ𝙹⍊ᒷ ⎓∷╎ᒷリ↸\"],\"LcET2C\":[\"!¡∷╎⍊ᔑᓵ|| !¡𝙹ꖎ╎ᓵ||\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"∴ᒷ'⍊ᒷ ᓭᒷリℸ ||𝙹⚍ ᔑ ⍊ᒷ∷╎⎓╎ᓵᔑℸ╎𝙹リ ᒷᒲᔑ╎ꖎ. !¡ꖎᒷᔑᓭᒷ ᔑꖎꖎ𝙹∴ ⚍!¡ ℸ𝙹 10 ᒲ╎リ⚍ℸᒷᓭ ⎓𝙹∷ ╎ℸ ℸ𝙹 ᔑ∷∷╎⍊ᒷ.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"ᓭᒷ∷⍊ᒷ∷ リᔑᒲᒷ\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"ꖎᒷᔑ⍊ᒷ\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"⍊╎ᒷ∴ ᓵ⚍∷∷ᒷリℸꖎ|| ᔑᓵℸ╎⍊ᒷ ʖ⚍⊣ ∷ᒷ!¡𝙹∷ℸᓭ ⍑ᒷ∷ᒷ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"ꖎᒷℸ ⚍ᓭ ꖌリ𝙹∴ ⍑𝙹∴ ∴ᒷ ᓵᔑリ ╎ᒲ!¡∷𝙹⍊ᒷ 𝙹⚍∷ ᔑ!¡!¡ ʖ|| ⊣╎⍊╎リ⊣ ⚍ᓭ ⎓ᒷᒷ↸ʖᔑᓵꖌ.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ ⍑ᔑᓭ ʖᒷᒷリ ⍊ᒷ∷╎⎓╎ᒷ↸!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ᒷᒲᔑ╎ꖎ\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"||𝙹⚍ ↸𝙹リ'ℸ ⍑ᔑ⍊ᒷ !¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リ ℸ𝙹 ᓭᒷリ↸ ᒲᒷᓭᓭᔑ⊣ᒷᓭ ╎リ ℸ⍑╎ᓭ ᓵ⍑ᔑリリᒷꖎ.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"∷ᒷᓭᒷℸ\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"∷ᒷ⋮ᒷᓵℸ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ\"],\"PSP1MZ\":[\"∷𝙹ꖎᒷ リᔑᒲᒷ\"],\"PWOA0E\":[\"ᒲᒷリℸ╎𝙹リᓭ 𝙹リꖎ||\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ᓭᒷリ↸ ᒷᒲʖᒷ↸ᓭ\"],\"PnzsrT\":[\"ᓭ𝙹⚍∷ᓵᒷ ᓵ𝙹↸ᒷ\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"⋮⚍ᒲ!¡ ℸ𝙹 !¡∷ᒷᓭᒷリℸ\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"╎↸ꖎᒷ\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"ᒷ↸╎ℸ ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"QqoBlW\":[\"ᓵ⍑ᒷᓵꖌ ||𝙹⚍∷ ᒲᔑ╎ꖎ!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"∷ᒷᓭᒷℸ !¡ᔑᓭᓭ∴𝙹∷↸\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"ʖ⚍⊣ ℸ∷ᔑᓵꖌᒷ∷\"],\"S3bIKF\":[\"ᓵ𝙹!¡|| ╎↸\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"!¡ꖎᒷᔑᓭᒷ ᓭᓵᔑリ 𝙹∷ ⚍ᓭᒷ ℸ⍑ᒷ ℸ𝙹ꖌᒷリ ʖᒷꖎ𝙹∴ ╎リ ||𝙹⚍∷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"∷ᒷᒲ𝙹⍊ᒷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"ᒲᔑリᔑ⊣ᒷ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"ᒲᔑリᔑ⊣ᒷ ∷𝙹ꖎᒷᓭ\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"ᓭᒷℸℸ╎リ⊣ᓭ\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"╎リ⍊╎ℸᒷ ᔑꖎꖎ 𝙹⎓ ||𝙹⚍∷ ⎓∷╎ᒷリ↸ᓭ, ᓭ𝙹ᒲᒷ ᓵ𝙹𝙹ꖎ ʖ𝙹ℸᓭ, ᔑリ↸ ℸ⍑∷𝙹∴ ᔑ ʖ╎⊣ !¡ᔑ∷ℸ||.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"ᓵ⍑ᔑリ⊣ᒷ ᔑ⍊ᔑℸᔑ∷\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ ᓭᒷリℸ\"],\"VJScHU\":[\"∷ᒷᔑᓭ𝙹リ\"],\"VKsaTi\":[\"∷ᒷ!¡ꖎ||╎リ⊣ ℸ𝙹\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"↸ᒷᔑ⎓ᒷリ ᒲᒷᒲʖᒷ∷ᓭ\"],\"VsHxv+\":[\"ᓵ𝙹!¡|| ℸᒷ/ℸ\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"⍊ᒷ∷╎⎓||╎リ⊣ ||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"ᒷ/ℸᒷ∷リᔑꖎ ꖎ╎リꖌᓭ ᓵᔑリ ʖᒷ ↸ᔑリ⊣ᒷ∷𝙹⚍ᓭ!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ᓵꖎ╎ᒷリℸ ᓭᒷℸℸ╎リ⊣ᓭ\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡\"],\"YcVBkL\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ ∷ᒷᓵᒷ╎⍊ᒷ↸\"],\"YirHq7\":[\"⎓ᒷᒷ↸ʖᔑᓵꖌ\"],\"YlFpiA\":[\"⎓ᔑ╎ꖎᒷ↸ ℸ𝙹 ⍊ᒷ∷╎⎓||!\"],\"Yp+Hi/\":[\"𝙹!¡ᒷリ ᓭᒷℸℸ╎リ⊣ᓭ\"],\"Z5HWHd\":[\"𝙹リ\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"||𝙹⚍∷ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ\"],\"aAIQg2\":[\"ᔑ!¡!¡ᒷᔑ∷ᔑリᓵᒷ\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"||𝙹⚍ ᓵᔑリリ𝙹ℸ ⚍リ↸𝙹 ℸ⍑╎ᓭ ᔑᓵℸ╎𝙹リ.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"𝙹⎓⎓\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"↸╎ᓭᔑʖꖎᒷ ᔑᓵᓵ𝙹⚍リℸ\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"∷ᒷᔑ↸ ᒲᒷᓭᓭᔑ⊣ᒷ ⍑╎ᓭℸ𝙹∷||\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"ʖᔑリ ᒲᒷᒲʖᒷ∷\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"ᒲᔑリᔑ⊣ᒷ !¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リᓭ\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"╎リ⍊╎ℸᒷ∷\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"↸ᒷꖎᒷℸᒷ\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"ᓵᔑリᓵᒷꖎ\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"ᓵ∷ᒷᔑℸᒷ ᔑ リᒷ∴ ʖ𝙹ℸ\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"╎リ⍊╎ℸᒷ 𝙹ℸ⍑ᒷ∷ᓭ\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"╎リ⍊╎ᓭ╎ʖꖎᒷ\"],\"ekfzWq\":[\"⚍ᓭᒷ∷ ᓭᒷℸℸ╎リ⊣ᓭ\"],\"etgedT\":[\"ᒷᒲ𝙹⋮╎ᓭ\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"ᒲᔑリᔑ⊣ᒷ ᓵ⚍ᓭℸ𝙹ᒲ╎ᓭᔑℸ╎𝙹リ\"],\"fTMMeD\":[\"ᓵ∷ᒷᔑℸᒷ ╎リ⍊╎ℸᒷ\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"∷ᒷ⊣╎ᓭℸᒷ∷\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"ᓵᔑリᓵᒷꖎ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ᔑᓭᓭ╎⊣リ ∷𝙹ꖎᒷᓭ\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"∷ᒷ!¡𝙹∷ℸ\"],\"gkBHk/\":[\"ᓵ∷ᒷᔑℸᒷ ᓵ⍑ᔑリリᒷꖎ\"],\"gkmjYT\":[\"ꖎᒷᔑ⍊ᒷ ᓭᒷ∷⍊ᒷ∷\"],\"go1IWB\":[\"ℸ⍑╎ᓭ ⚍ᓭᒷ∷ ⍑ᔑᓭ ʖꖎ𝙹ᓵꖌᒷ↸ ||𝙹⚍.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"↸ᒷꖎᒷℸᒷ ᓵ⍑ᔑリリᒷꖎ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"!¡ꖎᒷᔑᓭᒷ ᒷリℸᒷ∷ ||𝙹⚍∷ ᒷᒲᔑ╎ꖎ.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"ᓵ∷ᒷᔑℸᒷ\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"⍑𝙹ᒲᒷ\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"リ𝙹ℸ╎⎓╎ᓵᔑℸ╎𝙹リᓭ\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"ᓵ𝙹リリᒷᓵℸ\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"ᒲᒷリℸ╎𝙹リ\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ʖ𝙹ℸ\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"⊣𝙹 ʖᔑᓵꖌ ℸ𝙹 ꖎ𝙹⊣╎リ\"],\"jpJ5AL\":[\"∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷ\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"ᔑ⍊ᔑℸᔑ∷\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"∴ᒷꖎᓵ𝙹ᒲᒷ!\"],\"knjY+b\":[\"||𝙹⚍ ᓵᔑリ ∷ᒷ-𝙹!¡ᒷリ ╎ℸ ꖎᔑℸᒷ∷, ʖ⚍ℸ ╎ℸ ∴╎ꖎꖎ ↸╎ᓭᔑ!¡!¡ᒷᔑ∷ 𝙹リ ʖ𝙹ℸ⍑ ᓭ╎↸ᒷᓭ.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"ᔑ↸↸ ⎓∷╎ᒷリ↸\"],\"lSGjX7\":[\"⚍ᓭᒷ∷ ⋮𝙹╎リᒷ↸ ᓵᔑꖎꖎ\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"ᓵ⍑ᔑリリᒷꖎᓭ\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"⊣∷𝙹⚍!¡ リᔑᒲᒷ\"],\"mAYvqA\":[\"⍑ᒷꖎꖎ𝙹!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"ᒷ↸╎ℸ ||𝙹⚍∷ ╎↸ᒷリℸ╎ℸ||\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"||𝙹⚍ ∴𝙹リ'ℸ ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ᔑᓵᓵᒷᓭᓭ ||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ ⚍リꖎᒷᓭᓭ ||𝙹⚍ ᓵ𝙹リℸᔑᓵℸ ᓭ⚍!¡!¡𝙹∷ℸ - ⍑𝙹∴ᒷ⍊ᒷ∷, ||𝙹⚍∷ ↸ᔑℸᔑ ∴╎ꖎꖎ リ𝙹ℸ ʖᒷ ↸ᒷꖎᒷℸᒷ↸.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"ᓵ⚍ᓭℸ𝙹ᒲ ᓭℸᔑℸ⚍ᓭ\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"ᒲ⚍ℸ⚍ᔑꖎ ⎓∷╎ᒷリ↸ᓭ\"],\"nbzz1A\":[\"ᒷリℸᒷ∷ ᓵ𝙹↸ᒷ\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"ℸ⍑╎ᓭ ╎ᓭ ℸ⍑ᒷ ᓭℸᔑ∷ℸ 𝙹⎓ ||𝙹⚍∷ リ𝙹ℸᒷᓭ.\"],\"o+XJ9D\":[\"ᓵ⍑ᔑリ⊣ᒷ\"],\"oB4OOq\":[\"ʖᔑリ ᒲᒷᒲʖᒷ∷ᓭ\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"𝙹リꖎ╎リᒷ\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"ꖌ╎ᓵꖌ ᒲᒷᒲʖᒷ∷ᓭ\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"↸ᒷ⎓ᔑ⚍ꖎℸ\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"ꖎ𝙹⊣ 𝙹⚍ℸ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"⋮⚍ᒲ!¡ ℸ𝙹 ℸ⍑ᒷ ʖᒷ⊣╎リリ╎リ⊣\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"⚍ᓭᒷ∷ ꖎᒷ⎓ℸ ᓵᔑꖎꖎ\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"ᒲ|| ᔑᓵᓵ𝙹⚍リℸ\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"ᔑꖎꖎ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 !¡ᒷ∷ᓭ𝙹リ ∷ᒷᔑᓵℸᒷ↸\"],\"rxaY+5\":[\"↸𝙹 リ𝙹ℸ ↸╎ᓭℸ⚍∷ʖ\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"ᔑ↸⍊ᔑリᓵᒷ↸\"],\"t43mBk\":[\"∷ᒷ!¡𝙹∷ℸ ᓭᒷ∷⍊ᒷ∷\"],\"tBmnPU\":[\"⎓∷╎ᒷリ↸ᓭ\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"ᒲᔑリᔑ⊣ᒷ ∴ᒷʖ⍑𝙹𝙹ꖌᓭ\"],\"tdTuUv\":[\"ʖꖎ𝙹ᓵꖌ ⚍ᓭᒷ∷\"],\"tfDRzk\":[\"ᓭᔑ⍊ᒷ\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ʖꖎ𝙹ᓵꖌᒷ↸ ⚍ᓭᒷ∷\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"⊣𝙹 ℸ𝙹 ℸ⍑ᒷ ℸᒷᓭℸᒷ∷ᓭ ᓭᒷ∷⍊ᒷ∷\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"ꖌ╎ᓵꖌ ᒲᒷᒲʖᒷ∷\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"↸ᒷꖎᒷℸᒷ ∷𝙹ꖎᒷ\"],\"utrCh2\":[\"ℸ╎ᒲᒷ𝙹⚍ℸ ᒲᒷᒲʖᒷ∷ᓭ\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"ᔑʖ𝙹⚍ℸ\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"ᓭᒷ∷⍊ᒷ∷ ↸ᒷᓭᓵ∷╎!¡ℸ╎𝙹リ\"],\"v1kQyJ\":[\"∴ᒷʖ⍑𝙹𝙹ꖌᓭ\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"!¡∷𝙹⎓╎ꖎᒷ\"],\"vJum3e\":[\"ᓭ⚍!¡!¡𝙹∷ℸ ℸ⍑ᒷ !¡∷𝙹⋮ᒷᓵℸ ʖ|| ↸𝙹リᔑℸ╎リ⊣ - ℸ⍑ᔑリꖌ ||𝙹⚍!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"⍊╎↸ᒷ𝙹\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"ᒷ↸╎ℸ ╎↸ᒷリℸ╎ℸ||\"],\"vXIe7J\":[\"ꖎᔑリ⊣⚍ᔑ⊣ᒷ\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"!¡ꖎᒷᔑᓭᒷ ᓭᔑ⍊ᒷ ℸ⍑ᒷᓭᒷ ℸ𝙹 ᔑ ᓭᔑ⎓ᒷ ꖎ𝙹ᓵᔑℸ╎𝙹リ.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"ᒲᒷᓭᓭᔑ⊣╎リ⊣\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"ᒷリℸᒷ∷ ᓵ⍑ᔑリリᒷꖎ\"],\"wL3cK8\":[\"ꖎᔑℸᒷᓭℸ\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"ᒲᒷᒲʖᒷ∷ᓭ\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ᒲᔑᓭᑑ⚍ᒷ∷ᔑ↸ᒷ\"],\"xDAtGP\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"xGVfLh\":[\"ᓵ𝙹リℸ╎リ⚍ᒷ\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"ʖᔑリᓭ\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"ℸᒷ∷ᒲᓭ 𝙹⎓ ᓭᒷ∷⍊╎ᓵᒷ\"],\"xpgPPI\":[\"ᒲ|| ʖ𝙹ℸᓭ\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"ᔑᓵᓵᒷ!¡ℸ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ\"],\"y1eoq1\":[\"ᓵ𝙹!¡|| ꖎ╎リꖌ\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"╎ ᓵ𝙹リ⎓╎∷ᒲ ℸ⍑ᔑℸ ╎ ᔑᒲ ᔑℸ ꖎᒷᔑᓭℸ 18 ||ᒷᔑ∷ᓭ 𝙹ꖎ↸.\"],\"yDOdwQ\":[\"⚍ᓭᒷ∷ ᒲᔑリᔑ⊣ᒷᒲᒷリℸ\"],\"yIBLq8\":[\"ᓭ!¡ᒷᔑꖌ\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"ᓵꖎ𝙹ᓭᒷ\"],\"z0hW8A\":[\"⍊╎ᒷ∴ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ\"],\"z0t9bb\":[\"ꖎ𝙹⊣╎リ\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"𝙹ꖌ\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"ℸ⍑╎ᓭ ╎ᓭ ℸ⍑ᒷ ᓭℸᔑ∷ℸ 𝙹⎓ ||𝙹⚍∷ ᓵ𝙹リ⍊ᒷ∷ᓭᔑℸ╎𝙹リ.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"𝙹ꖎ↸ᒷᓭℸ\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/enchantment/messages.mjs b/components/i18n/catalogs/enchantment/messages.mjs
new file mode 100644
index 0000000..19fcf67
--- /dev/null
+++ b/components/i18n/catalogs/enchantment/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"ᒲ⚍ℸᒷ↸\"],\"+YFgJi\":[\"ʖᔑ↸⊣ᒷᓭ\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"ᒲᔑ∷ꖌ ᔑᓭ ∷ᒷᔑ↸\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"ᓵ∷ᒷᔑℸᒷ ᔑ リᒷ∴ ∷𝙹ꖎᒷ\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"ꖎ𝙹⊣ 𝙹⚍ℸ 𝙹⎓ ᔑꖎꖎ 𝙹ℸ⍑ᒷ∷ ᓭᒷᓭᓭ╎𝙹リᓭ\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"!¡╎ᓵꖌ ᔑ ⚍ᓭᒷ∷リᔑᒲᒷ ℸ⍑ᔑℸ ||𝙹⚍ ∴ᔑリℸ !¡ᒷ𝙹!¡ꖎᒷ ℸ𝙹 ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ⎓╎リ↸ ||𝙹⚍ ʖ||. ℸ⍑╎ᓭ ᓵᔑリ ʖᒷ ᓵ⍑ᔑリ⊣ᒷ↸ ꖎᔑℸᒷ∷ ╎リ ||𝙹⚍∷ ⚍ᓭᒷ∷ ᓭᒷℸℸ╎リ⊣ᓭ.\"],\"/qQDwm\":[\"⊣ᒷリᒷ∷ᔑℸ╎リ⊣ ╎リ⍊╎ℸᒷ…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"∷ᒷ!¡𝙹∷ℸ ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"ᓭ⚍ʖᒲ╎ℸ ⎓ᒷᒷ↸ʖᔑᓵꖌ\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"ᓵ𝙹!¡|| ᒲᒷᓭᓭᔑ⊣ᒷ ╎↸\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"ꖎᒷᔑ⍊ᒷ ⊣∷𝙹⚍!¡\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"||𝙹⚍ ᓵᔑリ ∷ᒷ!¡𝙹∷ℸ ╎ᓭᓭ⚍ᒷᓭ ᔑリ↸ ↸╎ᓭᓵ⚍ᓭᓭ ╎ᒲ!¡∷𝙹⍊ᒷᒲᒷリℸᓭ ∴╎ℸ⍑ ⚍ᓭ ↸╎∷ᒷᓵℸꖎ|| ⍑ᒷ∷ᒷ.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ʖꖎ𝙹ᓵꖌᒷ↸\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"||𝙹⚍ ∴𝙹リ'ℸ ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ∷ᒷ⋮𝙹╎リ ⚍リꖎᒷᓭᓭ ||𝙹⚍ ᔑ∷ᒷ ∷ᒷ-╎リ⍊╎ℸᒷ↸.\"],\"3QuNUr\":[\"ᓭᒷ⍊ᒷ∷ᔑꖎ !¡ᒷ𝙹!¡ꖎᒷ ᔑ∷ᒷ ℸ||!¡╎リ⊣…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"ᔑꖎ∷ᒷᔑ↸|| ⎓∷╎ᒷリ↸ᓭ ∴╎ℸ⍑ ℸ⍑╎ᓭ ⚍ᓭᒷ∷.\"],\"3T8ziB\":[\"ᓵ∷ᒷᔑℸᒷ ᔑリ ᔑᓵᓵ𝙹⚍リℸ\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"ᓭᒷᓭᓭ╎𝙹リᓭ\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"リ╎ᓵꖌリᔑᒲᒷ\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"ᓭᒷꖎᒷᓵℸ ||𝙹⚍∷ ꖎᔑリ⊣⚍ᔑ⊣ᒷ\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"⎓╎リ↸ ᔑ ᓵ𝙹ᒲᒲ⚍リ╎ℸ|| ʖᔑᓭᒷ↸ 𝙹リ ||𝙹⚍∷ ⍑𝙹ʖʖ╎ᒷᓭ 𝙹∷ ╎リℸᒷ∷ᒷᓭℸᓭ.\"],\"572q5a\":[\"∷ᒷ!¡𝙹∷ℸ ⚍ᓭᒷ∷\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"ᒲᔑ∷ꖌ ᔑᓭ ⚍リ∷ᒷᔑ↸\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"ᓵ⍑ᔑリ⊣ᒷ リ╎ᓵꖌリᔑᒲᒷ\"],\"5dJK4M\":[\"∷𝙹ꖎᒷᓭ\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"𝙹⍊ᒷ∷⍊╎ᒷ∴\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"𝙹⎓⎓ꖎ╎リᒷ\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"⚍ᓭᒷ∷\"],\"7SU2U9\":[\"ᓵ𝙹!¡|| ᓭᒷ∷⍊ᒷ∷ ╎↸\"],\"7VpPHA\":[\"ᓵ𝙹リ⎓╎∷ᒲ\"],\"7dZnmw\":[\"∷ᒷꖎᒷ⍊ᔑリᓵᒷ\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"⚍ᓭᒷ∷リᔑᒲᒷ\"],\"7vhWI8\":[\"リᒷ∴ !¡ᔑᓭᓭ∴𝙹∷↸\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"ᒲᔑリᔑ⊣ᒷ ᓭᒷ∷⍊ᒷ∷\"],\"8FE4JE\":[\"ᒷリᔑʖꖎᒷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡\"],\"8VGnad\":[\"⊣ᒷリᒷ∷ᔑℸᒷ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"!¡ᔑᓭᓭ∴𝙹∷↸\"],\"8aTiea\":[\"ᓵ⚍ᓭℸ𝙹ᒲ╎ᓭᔑℸ╎𝙹リ\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"ᒷリℸᒷ∷ ||𝙹⚍∷ !¡∷ᒷ⎓ᒷ∷∷ᒷ↸ ⚍ᓭᒷ∷リᔑᒲᒷ.\"],\"9D85wC\":[\"ᓵ𝙹!¡|| ⚍ᓭᒷ∷ ╎↸\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"∷ᒷᓭᒷℸ ℸ𝙹ꖌᒷリ\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"!¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リᓭ\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"ʖᔑリ\"],\"9nffag\":[\"⍊╎ᒷ∴╎リ⊣ 𝙹ꖎ↸ᒷ∷ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"⚍リʖꖎ𝙹ᓵꖌ ⚍ᓭᒷ∷\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"ᓵ∷ᒷᔑℸᒷ ᔑ ⊣∷𝙹⚍!¡\"],\"A9Rhec\":[\"ᓵ⍑ᔑリリᒷꖎ リᔑᒲᒷ\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"ᒷリℸᒷ∷ ᔑ リᒷ∴ !¡ᔑᓭᓭ∴𝙹∷↸.\"],\"AU7IRi\":[\"ℸᒷ/ℸ ᓵ⍑ᔑリリᒷꖎ\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"⍊𝙹╎ᓵᒷ ᓵ⍑ᔑリリᒷꖎ\"],\"BHsrDx\":[\"╎リ⍊╎ℸᒷᓭ\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ ∴ᔑᓭ ᓭᒷリℸ 𝙹リ ᔑリ𝙹ℸ⍑ᒷ∷ !¡ꖎᔑℸ⎓𝙹∷ᒲ\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"⍊╎ᒷ∴ ᓵ⍑ᔑリリᒷꖎ\"],\"CK7kdd\":[\"ᓵꖎᒷᔑ∷ ᓭℸᔑℸ⚍ᓭ\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"ᓵ⍑ᔑリリᒷꖎ ↸ᒷᓭᓵ∷╎!¡ℸ╎𝙹リ\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ᓭᒷリ↸ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"CkIs/i\":[\"ᒲ⚍ℸᒷ ᒲᒷᒲʖᒷ∷ᓭ\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"ᓵ⚍∷∷ᒷリℸ !¡ᔑᓭᓭ∴𝙹∷↸\"],\"DDpDsO\":[\"╎リ⍊╎ℸᒷ ᓵ𝙹↸ᒷ\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"𝙹⎓⎓╎ᓵ╎ᔑꖎ ᓵ𝙹ᒲᒲ⚍リ╎ᓵᔑℸ╎𝙹リ\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"↸𝙹リᒷ\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ リ𝙹ℸ ꖎ𝙹ᔑ↸ᒷ↸, ᓵꖎ╎ᓵꖌ ℸ𝙹 ⋮⚍ᒲ!¡\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ᓭ⚍ʖᒲ╎ℸ ⎓ᒷᔑℸ⚍∷ᒷ ᓭ⚍⊣⊣ᒷᓭℸ╎𝙹リ\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"ꖌ╎ᓵꖌ\"],\"EdQY6l\":[\"リ𝙹リᒷ\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"ᓵ𝙹リ⍊ᒷ∷ᓭᔑℸ╎𝙹リᓭ\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ᓭᒷリℸ ᔑリ ᔑℸℸᔑᓵ⍑ᒲᒷリℸ\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"ᓵ∷ᒷᔑℸᒷ ᓵᔑℸᒷ⊣𝙹∷||\"],\"F1uGNS\":[\"ᒲᔑリᔑ⊣ᒷ リ╎ᓵꖌリᔑᒲᒷᓭ\"],\"FEr96N\":[\"ℸ⍑ᒷᒲᒷ\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"∷ᒷᒲ𝙹⍊ᒷ ᔑ⍊ᔑℸᔑ∷ᓭ\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"ᒷリᔑʖꖎᒷ ↸ᒷᓭꖌℸ𝙹!¡ リ𝙹ℸ╎⎓╎ᓵᔑℸ╎𝙹リᓭ\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"⎓𝙹ᓵ⚍ᓭ\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"ᓵ𝙹!¡|| ᓵ⍑ᔑリリᒷꖎ ╎↸\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"ᒲ⚍ℸ⚍ᔑꖎ ⊣∷𝙹⚍!¡ᓭ\"],\"GhCPk1\":[\"𝙹リᓵᒷ ╎ℸ'ᓭ ↸ᒷꖎᒷℸᒷ↸, ℸ⍑ᒷ∷ᒷ'ᓭ リ𝙹 ⊣𝙹╎リ⊣ ʖᔑᓵꖌ.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"ᒷリℸᒷ∷ ||𝙹⚍∷ ᓵ⚍∷∷ᒷリℸ !¡ᔑᓭᓭ∴𝙹∷↸.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"!¡ꖎᒷᔑᓭᒷ ᓭᒷꖎᒷᓵℸ ᔑ ᒲᒷℸ⍑𝙹↸ ℸ𝙹 ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸᒷ ||𝙹⚍∷ ∷ᒷᑑ⚍ᒷᓭℸ.\"],\"HAKBY9\":[\"⚍!¡ꖎ𝙹ᔑ↸ ⎓╎ꖎᒷᓭ\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"ᓭᔑ⍊ᒷ↸ リ𝙹ℸᒷᓭ\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"∷ᒷᓭᒷリ↸ ⍊ᒷ∷╎⎓╎ᓵᔑℸ╎𝙹リ\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"ᒲ𝙹⍊ᒷ ᒲᒷᒲʖᒷ∷ᓭ\"],\"ImOQa9\":[\"∷ᒷ!¡ꖎ||\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ᓭᒷリℸ ᒲ⚍ꖎℸ╎!¡ꖎᒷ ᔑℸℸᔑᓵ⍑ᒲᒷリℸᓭ\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"ᓵᔑリリ𝙹ℸ ↸ᒷꖎᒷℸᒷ ᔑᓵᓵ𝙹⚍リℸ ⚍リℸ╎ꖎ ᓭᒷ∷⍊ᒷ∷ᓭ ᔑ∷ᒷ ↸ᒷꖎᒷℸᒷ↸ 𝙹∷ ℸ∷ᔑリᓭ⎓ᒷ∷∷ᒷ↸\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"ᓵ𝙹リ⎓╎∷ᒲ ᔑᓵℸ╎𝙹リ\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"⍊╎ᒷ∴ 𝙹ꖎ↸ᒷ∷ ⚍!¡↸ᔑℸᒷᓭ\"],\"JUJmXm\":[\"!¡ꖎᒷᔑᓭᒷ ᓵ𝙹リ⎓╎∷ᒲ ℸ⍑╎ᓭ ᔑᓵℸ╎𝙹リ ⚍ᓭ╎リ⊣ ℸ⍑ᒷ ᓭᒷꖎᒷᓵℸᒷ↸ ᒲᒷℸ⍑𝙹↸.\"],\"JW8mxK\":[\"ᓭᔑ⍊ᒷ ℸ𝙹 ||𝙹⚍∷ リ𝙹ℸᒷᓭ\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"∴ᒷꖎᓵ𝙹ᒲᒷ ℸ𝙹\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"||𝙹⚍ ᓵᔑリ ᔑꖎᓭ𝙹 ∷╎⊣⍑ℸ-ᓵꖎ╎ᓵꖌ ℸ⍑ᒷ ⚍ᓭᒷ∷ ╎ᓵ𝙹リ ╎リ ℸ⍑ᒷ ℸ𝙹!¡ ꖎᒷ⎓ℸ, 𝙹∷ ꖎᒷ⎓ℸ ᓵꖎ╎ᓵꖌ ╎ℸ ╎⎓ ||𝙹⚍'∷ᒷ ᔑꖎ∷ᒷᔑ↸|| ⍑𝙹ᒲᒷ.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"↸ᒷꖎᒷℸᒷ ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"ᓵ𝙹リℸᒷリℸ ʖ∷ᒷᔑꖌᓭ 𝙹リᒷ 𝙹∷ ᒲ𝙹∷ᒷ ꖎᔑ∴ᓭ\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ᓭ𝙹⚍リ↸ᓭ\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"𝙹⎓⎓╎ᓵ╎ᔑꖎ ᓭᒷ∷⍊ᒷ∷\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"∷ᒷᒲ𝙹⍊ᒷ ⎓∷╎ᒷリ↸\"],\"LcET2C\":[\"!¡∷╎⍊ᔑᓵ|| !¡𝙹ꖎ╎ᓵ||\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"∴ᒷ'⍊ᒷ ᓭᒷリℸ ||𝙹⚍ ᔑ ⍊ᒷ∷╎⎓╎ᓵᔑℸ╎𝙹リ ᒷᒲᔑ╎ꖎ. !¡ꖎᒷᔑᓭᒷ ᔑꖎꖎ𝙹∴ ⚍!¡ ℸ𝙹 10 ᒲ╎リ⚍ℸᒷᓭ ⎓𝙹∷ ╎ℸ ℸ𝙹 ᔑ∷∷╎⍊ᒷ.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"ᓭᒷ∷⍊ᒷ∷ リᔑᒲᒷ\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"ꖎᒷᔑ⍊ᒷ\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"⍊╎ᒷ∴ ᓵ⚍∷∷ᒷリℸꖎ|| ᔑᓵℸ╎⍊ᒷ ʖ⚍⊣ ∷ᒷ!¡𝙹∷ℸᓭ ⍑ᒷ∷ᒷ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"ꖎᒷℸ ⚍ᓭ ꖌリ𝙹∴ ⍑𝙹∴ ∴ᒷ ᓵᔑリ ╎ᒲ!¡∷𝙹⍊ᒷ 𝙹⚍∷ ᔑ!¡!¡ ʖ|| ⊣╎⍊╎リ⊣ ⚍ᓭ ⎓ᒷᒷ↸ʖᔑᓵꖌ.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ ⍑ᔑᓭ ʖᒷᒷリ ⍊ᒷ∷╎⎓╎ᒷ↸!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ᒷᒲᔑ╎ꖎ\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"||𝙹⚍ ↸𝙹リ'ℸ ⍑ᔑ⍊ᒷ !¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リ ℸ𝙹 ᓭᒷリ↸ ᒲᒷᓭᓭᔑ⊣ᒷᓭ ╎リ ℸ⍑╎ᓭ ᓵ⍑ᔑリリᒷꖎ.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"∷ᒷᓭᒷℸ\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"∷ᒷ⋮ᒷᓵℸ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ\"],\"PSP1MZ\":[\"∷𝙹ꖎᒷ リᔑᒲᒷ\"],\"PWOA0E\":[\"ᒲᒷリℸ╎𝙹リᓭ 𝙹リꖎ||\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ᓭᒷリ↸ ᒷᒲʖᒷ↸ᓭ\"],\"PnzsrT\":[\"ᓭ𝙹⚍∷ᓵᒷ ᓵ𝙹↸ᒷ\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"⋮⚍ᒲ!¡ ℸ𝙹 !¡∷ᒷᓭᒷリℸ\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"╎↸ꖎᒷ\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"ᒷ↸╎ℸ ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"QqoBlW\":[\"ᓵ⍑ᒷᓵꖌ ||𝙹⚍∷ ᒲᔑ╎ꖎ!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"∷ᒷᓭᒷℸ !¡ᔑᓭᓭ∴𝙹∷↸\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"ʖ⚍⊣ ℸ∷ᔑᓵꖌᒷ∷\"],\"S3bIKF\":[\"ᓵ𝙹!¡|| ╎↸\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"!¡ꖎᒷᔑᓭᒷ ᓭᓵᔑリ 𝙹∷ ⚍ᓭᒷ ℸ⍑ᒷ ℸ𝙹ꖌᒷリ ʖᒷꖎ𝙹∴ ╎リ ||𝙹⚍∷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"∷ᒷᒲ𝙹⍊ᒷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"ᒲᔑリᔑ⊣ᒷ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"ᒲᔑリᔑ⊣ᒷ ∷𝙹ꖎᒷᓭ\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"ᓭᒷℸℸ╎リ⊣ᓭ\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"╎リ⍊╎ℸᒷ ᔑꖎꖎ 𝙹⎓ ||𝙹⚍∷ ⎓∷╎ᒷリ↸ᓭ, ᓭ𝙹ᒲᒷ ᓵ𝙹𝙹ꖎ ʖ𝙹ℸᓭ, ᔑリ↸ ℸ⍑∷𝙹∴ ᔑ ʖ╎⊣ !¡ᔑ∷ℸ||.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"ᓵ⍑ᔑリ⊣ᒷ ᔑ⍊ᔑℸᔑ∷\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ ᓭᒷリℸ\"],\"VJScHU\":[\"∷ᒷᔑᓭ𝙹リ\"],\"VKsaTi\":[\"∷ᒷ!¡ꖎ||╎リ⊣ ℸ𝙹\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"↸ᒷᔑ⎓ᒷリ ᒲᒷᒲʖᒷ∷ᓭ\"],\"VsHxv+\":[\"ᓵ𝙹!¡|| ℸᒷ/ℸ\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"⍊ᒷ∷╎⎓||╎リ⊣ ||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"ᒷ/ℸᒷ∷リᔑꖎ ꖎ╎リꖌᓭ ᓵᔑリ ʖᒷ ↸ᔑリ⊣ᒷ∷𝙹⚍ᓭ!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ᓵꖎ╎ᒷリℸ ᓭᒷℸℸ╎リ⊣ᓭ\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡\"],\"YcVBkL\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ ∷ᒷᓵᒷ╎⍊ᒷ↸\"],\"YirHq7\":[\"⎓ᒷᒷ↸ʖᔑᓵꖌ\"],\"YlFpiA\":[\"⎓ᔑ╎ꖎᒷ↸ ℸ𝙹 ⍊ᒷ∷╎⎓||!\"],\"Yp+Hi/\":[\"𝙹!¡ᒷリ ᓭᒷℸℸ╎リ⊣ᓭ\"],\"Z5HWHd\":[\"𝙹リ\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"||𝙹⚍∷ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ\"],\"aAIQg2\":[\"ᔑ!¡!¡ᒷᔑ∷ᔑリᓵᒷ\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"||𝙹⚍ ᓵᔑリリ𝙹ℸ ⚍リ↸𝙹 ℸ⍑╎ᓭ ᔑᓵℸ╎𝙹リ.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"𝙹⎓⎓\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"↸╎ᓭᔑʖꖎᒷ ᔑᓵᓵ𝙹⚍リℸ\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"∷ᒷᔑ↸ ᒲᒷᓭᓭᔑ⊣ᒷ ⍑╎ᓭℸ𝙹∷||\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"ʖᔑリ ᒲᒷᒲʖᒷ∷\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"ᒲᔑリᔑ⊣ᒷ !¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リᓭ\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"╎リ⍊╎ℸᒷ∷\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"↸ᒷꖎᒷℸᒷ\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"ᓵᔑリᓵᒷꖎ\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"ᓵ∷ᒷᔑℸᒷ ᔑ リᒷ∴ ʖ𝙹ℸ\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"╎リ⍊╎ℸᒷ 𝙹ℸ⍑ᒷ∷ᓭ\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"╎リ⍊╎ᓭ╎ʖꖎᒷ\"],\"ekfzWq\":[\"⚍ᓭᒷ∷ ᓭᒷℸℸ╎リ⊣ᓭ\"],\"etgedT\":[\"ᒷᒲ𝙹⋮╎ᓭ\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"ᒲᔑリᔑ⊣ᒷ ᓵ⚍ᓭℸ𝙹ᒲ╎ᓭᔑℸ╎𝙹リ\"],\"fTMMeD\":[\"ᓵ∷ᒷᔑℸᒷ ╎リ⍊╎ℸᒷ\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"∷ᒷ⊣╎ᓭℸᒷ∷\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"ᓵᔑリᓵᒷꖎ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ᔑᓭᓭ╎⊣リ ∷𝙹ꖎᒷᓭ\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"∷ᒷ!¡𝙹∷ℸ\"],\"gkBHk/\":[\"ᓵ∷ᒷᔑℸᒷ ᓵ⍑ᔑリリᒷꖎ\"],\"gkmjYT\":[\"ꖎᒷᔑ⍊ᒷ ᓭᒷ∷⍊ᒷ∷\"],\"go1IWB\":[\"ℸ⍑╎ᓭ ⚍ᓭᒷ∷ ⍑ᔑᓭ ʖꖎ𝙹ᓵꖌᒷ↸ ||𝙹⚍.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"↸ᒷꖎᒷℸᒷ ᓵ⍑ᔑリリᒷꖎ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"!¡ꖎᒷᔑᓭᒷ ᒷリℸᒷ∷ ||𝙹⚍∷ ᒷᒲᔑ╎ꖎ.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"ᓵ∷ᒷᔑℸᒷ\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"⍑𝙹ᒲᒷ\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"リ𝙹ℸ╎⎓╎ᓵᔑℸ╎𝙹リᓭ\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"ᓵ𝙹リリᒷᓵℸ\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"ᒲᒷリℸ╎𝙹リ\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ʖ𝙹ℸ\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"⊣𝙹 ʖᔑᓵꖌ ℸ𝙹 ꖎ𝙹⊣╎リ\"],\"jpJ5AL\":[\"∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷ\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"ᔑ⍊ᔑℸᔑ∷\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"∴ᒷꖎᓵ𝙹ᒲᒷ!\"],\"knjY+b\":[\"||𝙹⚍ ᓵᔑリ ∷ᒷ-𝙹!¡ᒷリ ╎ℸ ꖎᔑℸᒷ∷, ʖ⚍ℸ ╎ℸ ∴╎ꖎꖎ ↸╎ᓭᔑ!¡!¡ᒷᔑ∷ 𝙹リ ʖ𝙹ℸ⍑ ᓭ╎↸ᒷᓭ.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"ᔑ↸↸ ⎓∷╎ᒷリ↸\"],\"lSGjX7\":[\"⚍ᓭᒷ∷ ⋮𝙹╎リᒷ↸ ᓵᔑꖎꖎ\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"ᓵ⍑ᔑリリᒷꖎᓭ\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"⊣∷𝙹⚍!¡ リᔑᒲᒷ\"],\"mAYvqA\":[\"⍑ᒷꖎꖎ𝙹!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"ᒷ↸╎ℸ ||𝙹⚍∷ ╎↸ᒷリℸ╎ℸ||\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"||𝙹⚍ ∴𝙹リ'ℸ ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ᔑᓵᓵᒷᓭᓭ ||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ ⚍リꖎᒷᓭᓭ ||𝙹⚍ ᓵ𝙹リℸᔑᓵℸ ᓭ⚍!¡!¡𝙹∷ℸ - ⍑𝙹∴ᒷ⍊ᒷ∷, ||𝙹⚍∷ ↸ᔑℸᔑ ∴╎ꖎꖎ リ𝙹ℸ ʖᒷ ↸ᒷꖎᒷℸᒷ↸.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"ᓵ⚍ᓭℸ𝙹ᒲ ᓭℸᔑℸ⚍ᓭ\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"ᒲ⚍ℸ⚍ᔑꖎ ⎓∷╎ᒷリ↸ᓭ\"],\"nbzz1A\":[\"ᒷリℸᒷ∷ ᓵ𝙹↸ᒷ\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"ℸ⍑╎ᓭ ╎ᓭ ℸ⍑ᒷ ᓭℸᔑ∷ℸ 𝙹⎓ ||𝙹⚍∷ リ𝙹ℸᒷᓭ.\"],\"o+XJ9D\":[\"ᓵ⍑ᔑリ⊣ᒷ\"],\"oB4OOq\":[\"ʖᔑリ ᒲᒷᒲʖᒷ∷ᓭ\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"𝙹リꖎ╎リᒷ\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"ꖌ╎ᓵꖌ ᒲᒷᒲʖᒷ∷ᓭ\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"↸ᒷ⎓ᔑ⚍ꖎℸ\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"ꖎ𝙹⊣ 𝙹⚍ℸ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"⋮⚍ᒲ!¡ ℸ𝙹 ℸ⍑ᒷ ʖᒷ⊣╎リリ╎リ⊣\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"⚍ᓭᒷ∷ ꖎᒷ⎓ℸ ᓵᔑꖎꖎ\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"ᒲ|| ᔑᓵᓵ𝙹⚍リℸ\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"ᔑꖎꖎ ᒲᒷᓭᓭᔑ⊣ᒷᓭ\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 !¡ᒷ∷ᓭ𝙹リ ∷ᒷᔑᓵℸᒷ↸\"],\"rxaY+5\":[\"↸𝙹 リ𝙹ℸ ↸╎ᓭℸ⚍∷ʖ\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"ᔑ↸⍊ᔑリᓵᒷ↸\"],\"t43mBk\":[\"∷ᒷ!¡𝙹∷ℸ ᓭᒷ∷⍊ᒷ∷\"],\"tBmnPU\":[\"⎓∷╎ᒷリ↸ᓭ\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"ᒲᔑリᔑ⊣ᒷ ∴ᒷʖ⍑𝙹𝙹ꖌᓭ\"],\"tdTuUv\":[\"ʖꖎ𝙹ᓵꖌ ⚍ᓭᒷ∷\"],\"tfDRzk\":[\"ᓭᔑ⍊ᒷ\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ʖꖎ𝙹ᓵꖌᒷ↸ ⚍ᓭᒷ∷\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"⊣𝙹 ℸ𝙹 ℸ⍑ᒷ ℸᒷᓭℸᒷ∷ᓭ ᓭᒷ∷⍊ᒷ∷\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"ꖌ╎ᓵꖌ ᒲᒷᒲʖᒷ∷\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"↸ᒷꖎᒷℸᒷ ∷𝙹ꖎᒷ\"],\"utrCh2\":[\"ℸ╎ᒲᒷ𝙹⚍ℸ ᒲᒷᒲʖᒷ∷ᓭ\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"ᔑʖ𝙹⚍ℸ\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"ᓭᒷ∷⍊ᒷ∷ ↸ᒷᓭᓵ∷╎!¡ℸ╎𝙹リ\"],\"v1kQyJ\":[\"∴ᒷʖ⍑𝙹𝙹ꖌᓭ\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"!¡∷𝙹⎓╎ꖎᒷ\"],\"vJum3e\":[\"ᓭ⚍!¡!¡𝙹∷ℸ ℸ⍑ᒷ !¡∷𝙹⋮ᒷᓵℸ ʖ|| ↸𝙹リᔑℸ╎リ⊣ - ℸ⍑ᔑリꖌ ||𝙹⚍!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"⍊╎↸ᒷ𝙹\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"ᒷ↸╎ℸ ╎↸ᒷリℸ╎ℸ||\"],\"vXIe7J\":[\"ꖎᔑリ⊣⚍ᔑ⊣ᒷ\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"!¡ꖎᒷᔑᓭᒷ ᓭᔑ⍊ᒷ ℸ⍑ᒷᓭᒷ ℸ𝙹 ᔑ ᓭᔑ⎓ᒷ ꖎ𝙹ᓵᔑℸ╎𝙹リ.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"ᒲᒷᓭᓭᔑ⊣╎リ⊣\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"ᒷリℸᒷ∷ ᓵ⍑ᔑリリᒷꖎ\"],\"wL3cK8\":[\"ꖎᔑℸᒷᓭℸ\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"ᒲᒷᒲʖᒷ∷ᓭ\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ᒲᔑᓭᑑ⚍ᒷ∷ᔑ↸ᒷ\"],\"xDAtGP\":[\"ᒲᒷᓭᓭᔑ⊣ᒷ\"],\"xGVfLh\":[\"ᓵ𝙹リℸ╎リ⚍ᒷ\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"ʖᔑリᓭ\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"ℸᒷ∷ᒲᓭ 𝙹⎓ ᓭᒷ∷⍊╎ᓵᒷ\"],\"xpgPPI\":[\"ᒲ|| ʖ𝙹ℸᓭ\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"ᔑᓵᓵᒷ!¡ℸ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ\"],\"y1eoq1\":[\"ᓵ𝙹!¡|| ꖎ╎リꖌ\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"╎ ᓵ𝙹リ⎓╎∷ᒲ ℸ⍑ᔑℸ ╎ ᔑᒲ ᔑℸ ꖎᒷᔑᓭℸ 18 ||ᒷᔑ∷ᓭ 𝙹ꖎ↸.\"],\"yDOdwQ\":[\"⚍ᓭᒷ∷ ᒲᔑリᔑ⊣ᒷᒲᒷリℸ\"],\"yIBLq8\":[\"ᓭ!¡ᒷᔑꖌ\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"ᓵꖎ𝙹ᓭᒷ\"],\"z0hW8A\":[\"⍊╎ᒷ∴ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ\"],\"z0t9bb\":[\"ꖎ𝙹⊣╎リ\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"𝙹ꖌ\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"ℸ⍑╎ᓭ ╎ᓭ ℸ⍑ᒷ ᓭℸᔑ∷ℸ 𝙹⎓ ||𝙹⚍∷ ᓵ𝙹リ⍊ᒷ∷ᓭᔑℸ╎𝙹リ.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"𝙹ꖎ↸ᒷᓭℸ\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/enchantment/messages.po b/components/i18n/catalogs/enchantment/messages.po
new file mode 100644
index 0000000..0ee0f5a
--- /dev/null
+++ b/components/i18n/catalogs/enchantment/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: enchantment\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 !¡ᒷ∷ᓭ𝙹リ ∷ᒷᔑᓵℸᒷ↸"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "ᔑʖ𝙹⚍ℸ"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "ᔑᓵᓵᒷ!¡ℸ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "ᔑ↸↸ ⎓∷╎ᒷリ↸"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "ᔑ↸⍊ᔑリᓵᒷ↸"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "ᔑꖎꖎ ᒲᒷᓭᓭᔑ⊣ᒷᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "ᔑꖎ∷ᒷᔑ↸|| ⎓∷╎ᒷリ↸ᓭ ∴╎ℸ⍑ ℸ⍑╎ᓭ ⚍ᓭᒷ∷."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "ᔑ!¡!¡ᒷᔑ∷ᔑリᓵᒷ"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "ᔑᓭᓭ╎⊣リ ∷𝙹ꖎᒷᓭ"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "ᔑ⍊ᔑℸᔑ∷"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "ʖᔑ↸⊣ᒷᓭ"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "ʖᔑリ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "ʖᔑリ ᒲᒷᒲʖᒷ∷"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "ʖᔑリ ᒲᒷᒲʖᒷ∷ᓭ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "ʖᔑリᓭ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "ʖꖎ𝙹ᓵꖌ ⚍ᓭᒷ∷"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "ʖꖎ𝙹ᓵꖌᒷ↸"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "ʖꖎ𝙹ᓵꖌᒷ↸ ⚍ᓭᒷ∷"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "ʖ𝙹ℸ"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "ʖ⚍⊣ ℸ∷ᔑᓵꖌᒷ∷"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "ᓵᔑリᓵᒷꖎ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "ᓵᔑリᓵᒷꖎ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "ᓵᔑリリ𝙹ℸ ↸ᒷꖎᒷℸᒷ ᔑᓵᓵ𝙹⚍リℸ ⚍リℸ╎ꖎ ᓭᒷ∷⍊ᒷ∷ᓭ ᔑ∷ᒷ ↸ᒷꖎᒷℸᒷ↸ 𝙹∷ ℸ∷ᔑリᓭ⎓ᒷ∷∷ᒷ↸"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "ᓵ⍑ᔑリ⊣ᒷ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "ᓵ⍑ᔑリ⊣ᒷ ᔑ⍊ᔑℸᔑ∷"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "ᓵ⍑ᔑリ⊣ᒷ リ╎ᓵꖌリᔑᒲᒷ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "ᓵ⍑ᔑリリᒷꖎ ↸ᒷᓭᓵ∷╎!¡ℸ╎𝙹リ"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "ᓵ⍑ᔑリリᒷꖎ リᔑᒲᒷ"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "ᓵ⍑ᔑリリᒷꖎᓭ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "ᓵ⍑ᒷᓵꖌ ||𝙹⚍∷ ᒲᔑ╎ꖎ!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "ᓵꖎᒷᔑ∷ ᓭℸᔑℸ⚍ᓭ"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "ᓵꖎ╎ᒷリℸ ᓭᒷℸℸ╎リ⊣ᓭ"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "ᓵꖎ𝙹ᓭᒷ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "ᓵ𝙹リ⎓╎∷ᒲ"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "ᓵ𝙹リ⎓╎∷ᒲ ᔑᓵℸ╎𝙹リ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "ᓵ𝙹リリᒷᓵℸ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "ᓵ𝙹リℸᒷリℸ ʖ∷ᒷᔑꖌᓭ 𝙹リᒷ 𝙹∷ ᒲ𝙹∷ᒷ ꖎᔑ∴ᓭ"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "ᓵ𝙹リℸ╎リ⚍ᒷ"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "ᓵ𝙹リ⍊ᒷ∷ᓭᔑℸ╎𝙹リᓭ"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "ᓵ𝙹!¡|| ᓵ⍑ᔑリリᒷꖎ ╎↸"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "ᓵ𝙹!¡|| ╎↸"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "ᓵ𝙹!¡|| ꖎ╎リꖌ"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "ᓵ𝙹!¡|| ᒲᒷᓭᓭᔑ⊣ᒷ ╎↸"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "ᓵ𝙹!¡|| ᓭᒷ∷⍊ᒷ∷ ╎↸"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "ᓵ𝙹!¡|| ℸᒷ/ℸ"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "ᓵ𝙹!¡|| ⚍ᓭᒷ∷ ╎↸"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "ᓵ∷ᒷᔑℸᒷ"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "ᓵ∷ᒷᔑℸᒷ ᔑ ⊣∷𝙹⚍!¡"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "ᓵ∷ᒷᔑℸᒷ ᔑ リᒷ∴ ʖ𝙹ℸ"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "ᓵ∷ᒷᔑℸᒷ ᔑ リᒷ∴ ∷𝙹ꖎᒷ"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "ᓵ∷ᒷᔑℸᒷ ᔑリ ᔑᓵᓵ𝙹⚍リℸ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "ᓵ∷ᒷᔑℸᒷ ᓵᔑℸᒷ⊣𝙹∷||"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "ᓵ∷ᒷᔑℸᒷ ᓵ⍑ᔑリリᒷꖎ"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "ᓵ∷ᒷᔑℸᒷ ╎リ⍊╎ℸᒷ"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "ᓵ⚍∷∷ᒷリℸ !¡ᔑᓭᓭ∴𝙹∷↸"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "ᓵ⚍ᓭℸ𝙹ᒲ ᓭℸᔑℸ⚍ᓭ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "ᓵ⚍ᓭℸ𝙹ᒲ╎ᓭᔑℸ╎𝙹リ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "↸ᒷᔑ⎓ᒷリ ᒲᒷᒲʖᒷ∷ᓭ"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "↸ᒷ⎓ᔑ⚍ꖎℸ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "↸ᒷꖎᒷℸᒷ"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "↸ᒷꖎᒷℸᒷ ᓵ⍑ᔑリリᒷꖎ"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "↸ᒷꖎᒷℸᒷ ᒲᒷᓭᓭᔑ⊣ᒷ"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "↸ᒷꖎᒷℸᒷ ∷𝙹ꖎᒷ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "↸╎ᓭᔑʖꖎᒷ ᔑᓵᓵ𝙹⚍リℸ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "↸𝙹 リ𝙹ℸ ↸╎ᓭℸ⚍∷ʖ"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "↸𝙹リᒷ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "ᒷ↸╎ℸ ╎↸ᒷリℸ╎ℸ||"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "ᒷ↸╎ℸ ᒲᒷᓭᓭᔑ⊣ᒷ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "ᒷ↸╎ℸ ||𝙹⚍∷ ╎↸ᒷリℸ╎ℸ||"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "ᒷᒲᔑ╎ꖎ"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "ᒷᒲ𝙹⋮╎ᓭ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "ᒷリᔑʖꖎᒷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "ᒷリᔑʖꖎᒷ ↸ᒷᓭꖌℸ𝙹!¡ リ𝙹ℸ╎⎓╎ᓵᔑℸ╎𝙹リᓭ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "ᒷリℸᒷ∷ ᔑ リᒷ∴ !¡ᔑᓭᓭ∴𝙹∷↸."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "ᒷリℸᒷ∷ ᓵ⍑ᔑリリᒷꖎ"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "ᒷリℸᒷ∷ ᓵ𝙹↸ᒷ"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "ᒷリℸᒷ∷ ||𝙹⚍∷ ᓵ⚍∷∷ᒷリℸ !¡ᔑᓭᓭ∴𝙹∷↸."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "ᒷリℸᒷ∷ ||𝙹⚍∷ !¡∷ᒷ⎓ᒷ∷∷ᒷ↸ ⚍ᓭᒷ∷リᔑᒲᒷ."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "ᒷ/ℸᒷ∷リᔑꖎ ꖎ╎リꖌᓭ ᓵᔑリ ʖᒷ ↸ᔑリ⊣ᒷ∷𝙹⚍ᓭ!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "⎓ᔑ╎ꖎᒷ↸ ℸ𝙹 ⍊ᒷ∷╎⎓||!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "⎓ᒷᒷ↸ʖᔑᓵꖌ"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "⎓╎リ↸ ᔑ ᓵ𝙹ᒲᒲ⚍リ╎ℸ|| ʖᔑᓭᒷ↸ 𝙹リ ||𝙹⚍∷ ⍑𝙹ʖʖ╎ᒷᓭ 𝙹∷ ╎リℸᒷ∷ᒷᓭℸᓭ."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "⎓𝙹ᓵ⚍ᓭ"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "⎓∷╎ᒷリ↸ᓭ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "⊣ᒷリᒷ∷ᔑℸᒷ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "⊣ᒷリᒷ∷ᔑℸ╎リ⊣ ╎リ⍊╎ℸᒷ…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "⊣𝙹 ʖᔑᓵꖌ ℸ𝙹 ꖎ𝙹⊣╎リ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "⊣𝙹 ℸ𝙹 ℸ⍑ᒷ ℸᒷᓭℸᒷ∷ᓭ ᓭᒷ∷⍊ᒷ∷"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "⊣∷𝙹⚍!¡ リᔑᒲᒷ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "⍑ᒷꖎꖎ𝙹!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "⍑𝙹ᒲᒷ"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "╎ ᓵ𝙹リ⎓╎∷ᒲ ℸ⍑ᔑℸ ╎ ᔑᒲ ᔑℸ ꖎᒷᔑᓭℸ 18 ||ᒷᔑ∷ᓭ 𝙹ꖎ↸."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "╎↸ꖎᒷ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "╎リ⍊╎ᓭ╎ʖꖎᒷ"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "╎リ⍊╎ℸᒷ ᔑꖎꖎ 𝙹⎓ ||𝙹⚍∷ ⎓∷╎ᒷリ↸ᓭ, ᓭ𝙹ᒲᒷ ᓵ𝙹𝙹ꖎ ʖ𝙹ℸᓭ, ᔑリ↸ ℸ⍑∷𝙹∴ ᔑ ʖ╎⊣ !¡ᔑ∷ℸ||."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "╎リ⍊╎ℸᒷ ᓵ𝙹↸ᒷ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "╎リ⍊╎ℸᒷ 𝙹ℸ⍑ᒷ∷ᓭ"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "╎リ⍊╎ℸᒷ∷"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "╎リ⍊╎ℸᒷᓭ"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "⋮⚍ᒲ!¡ ℸ𝙹 !¡∷ᒷᓭᒷリℸ"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "⋮⚍ᒲ!¡ ℸ𝙹 ℸ⍑ᒷ ʖᒷ⊣╎リリ╎リ⊣"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "ꖌ╎ᓵꖌ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "ꖌ╎ᓵꖌ ᒲᒷᒲʖᒷ∷"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "ꖌ╎ᓵꖌ ᒲᒷᒲʖᒷ∷ᓭ"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "ꖎᔑリ⊣⚍ᔑ⊣ᒷ"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "ꖎᔑℸᒷᓭℸ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "ꖎᒷᔑ⍊ᒷ"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "ꖎᒷᔑ⍊ᒷ ⊣∷𝙹⚍!¡"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "ꖎᒷᔑ⍊ᒷ ᓭᒷ∷⍊ᒷ∷"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "ꖎᒷℸ ⚍ᓭ ꖌリ𝙹∴ ⍑𝙹∴ ∴ᒷ ᓵᔑリ ╎ᒲ!¡∷𝙹⍊ᒷ 𝙹⚍∷ ᔑ!¡!¡ ʖ|| ⊣╎⍊╎リ⊣ ⚍ᓭ ⎓ᒷᒷ↸ʖᔑᓵꖌ."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "ꖎ𝙹⊣ 𝙹⚍ℸ"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "ꖎ𝙹⊣ 𝙹⚍ℸ 𝙹⎓ ᔑꖎꖎ 𝙹ℸ⍑ᒷ∷ ᓭᒷᓭᓭ╎𝙹リᓭ"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "ꖎ𝙹⊣╎リ"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "ᒲᔑリᔑ⊣ᒷ ᓵ⚍ᓭℸ𝙹ᒲ╎ᓭᔑℸ╎𝙹リ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "ᒲᔑリᔑ⊣ᒷ ᒲᒷᓭᓭᔑ⊣ᒷᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "ᒲᔑリᔑ⊣ᒷ リ╎ᓵꖌリᔑᒲᒷᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "ᒲᔑリᔑ⊣ᒷ !¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "ᒲᔑリᔑ⊣ᒷ ∷𝙹ꖎᒷᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "ᒲᔑリᔑ⊣ᒷ ᓭᒷ∷⍊ᒷ∷"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "ᒲᔑリᔑ⊣ᒷ ∴ᒷʖ⍑𝙹𝙹ꖌᓭ"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "ᒲᔑ∷ꖌ ᔑᓭ ∷ᒷᔑ↸"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "ᒲᔑ∷ꖌ ᔑᓭ ⚍リ∷ᒷᔑ↸"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "ᒲᔑᓭᑑ⚍ᒷ∷ᔑ↸ᒷ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "ᒲᒷᒲʖᒷ∷ᓭ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "ᒲᒷリℸ╎𝙹リ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "ᒲᒷリℸ╎𝙹リᓭ 𝙹リꖎ||"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "ᒲᒷᓭᓭᔑ⊣ᒷ"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "ᒲᒷᓭᓭᔑ⊣ᒷ リ𝙹ℸ ꖎ𝙹ᔑ↸ᒷ↸, ᓵꖎ╎ᓵꖌ ℸ𝙹 ⋮⚍ᒲ!¡"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "ᒲᒷᓭᓭᔑ⊣ᒷ ∷ᒷᓵᒷ╎⍊ᒷ↸"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "ᒲᒷᓭᓭᔑ⊣ᒷ ᓭᒷリℸ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "ᒲᒷᓭᓭᔑ⊣ᒷ ∴ᔑᓭ ᓭᒷリℸ 𝙹リ ᔑリ𝙹ℸ⍑ᒷ∷ !¡ꖎᔑℸ⎓𝙹∷ᒲ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "ᒲᒷᓭᓭᔑ⊣╎リ⊣"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "ᒲ𝙹⍊ᒷ ᒲᒷᒲʖᒷ∷ᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "ᒲ⚍ℸᒷ ᒲᒷᒲʖᒷ∷ᓭ"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "ᒲ⚍ℸᒷ↸"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "ᒲ⚍ℸ⚍ᔑꖎ ⎓∷╎ᒷリ↸ᓭ"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "ᒲ⚍ℸ⚍ᔑꖎ ⊣∷𝙹⚍!¡ᓭ"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "ᒲ|| ᔑᓵᓵ𝙹⚍リℸ"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "ᒲ|| ʖ𝙹ℸᓭ"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "リᒷ∴ !¡ᔑᓭᓭ∴𝙹∷↸"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "リ╎ᓵꖌリᔑᒲᒷ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "リ𝙹リᒷ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "リ𝙹ℸ╎⎓╎ᓵᔑℸ╎𝙹リᓭ"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "𝙹⎓⎓"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "𝙹⎓⎓╎ᓵ╎ᔑꖎ ᓵ𝙹ᒲᒲ⚍リ╎ᓵᔑℸ╎𝙹リ"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "𝙹⎓⎓╎ᓵ╎ᔑꖎ ᓭᒷ∷⍊ᒷ∷"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "𝙹⎓⎓ꖎ╎リᒷ"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "𝙹ꖌ"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "𝙹ꖎ↸ᒷᓭℸ"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "𝙹リ"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "𝙹リᓵᒷ ╎ℸ'ᓭ ↸ᒷꖎᒷℸᒷ↸, ℸ⍑ᒷ∷ᒷ'ᓭ リ𝙹 ⊣𝙹╎リ⊣ ʖᔑᓵꖌ."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "𝙹リꖎ╎リᒷ"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "𝙹!¡ᒷリ ᓭᒷℸℸ╎リ⊣ᓭ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "𝙹⍊ᒷ∷⍊╎ᒷ∴"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "!¡ᔑᓭᓭ∴𝙹∷↸"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "!¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リᓭ"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "!¡╎ᓵꖌ ᔑ ⚍ᓭᒷ∷リᔑᒲᒷ ℸ⍑ᔑℸ ||𝙹⚍ ∴ᔑリℸ !¡ᒷ𝙹!¡ꖎᒷ ℸ𝙹 ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ⎓╎リ↸ ||𝙹⚍ ʖ||. ℸ⍑╎ᓭ ᓵᔑリ ʖᒷ ᓵ⍑ᔑリ⊣ᒷ↸ ꖎᔑℸᒷ∷ ╎リ ||𝙹⚍∷ ⚍ᓭᒷ∷ ᓭᒷℸℸ╎リ⊣ᓭ."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "!¡ꖎᒷᔑᓭᒷ ᓵ𝙹リ⎓╎∷ᒲ ℸ⍑╎ᓭ ᔑᓵℸ╎𝙹リ ⚍ᓭ╎リ⊣ ℸ⍑ᒷ ᓭᒷꖎᒷᓵℸᒷ↸ ᒲᒷℸ⍑𝙹↸."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "!¡ꖎᒷᔑᓭᒷ ᒷリℸᒷ∷ ||𝙹⚍∷ ᒷᒲᔑ╎ꖎ."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "!¡ꖎᒷᔑᓭᒷ ᓭᔑ⍊ᒷ ℸ⍑ᒷᓭᒷ ℸ𝙹 ᔑ ᓭᔑ⎓ᒷ ꖎ𝙹ᓵᔑℸ╎𝙹リ."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "!¡ꖎᒷᔑᓭᒷ ᓭᓵᔑリ 𝙹∷ ⚍ᓭᒷ ℸ⍑ᒷ ℸ𝙹ꖌᒷリ ʖᒷꖎ𝙹∴ ╎リ ||𝙹⚍∷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷ ᔑ!¡!¡."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "!¡ꖎᒷᔑᓭᒷ ᓭᒷꖎᒷᓵℸ ᔑ ᒲᒷℸ⍑𝙹↸ ℸ𝙹 ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸᒷ ||𝙹⚍∷ ∷ᒷᑑ⚍ᒷᓭℸ."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "!¡∷╎⍊ᔑᓵ|| !¡𝙹ꖎ╎ᓵ||"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "!¡∷𝙹⎓╎ꖎᒷ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "∷ᒷᔑ↸ ᒲᒷᓭᓭᔑ⊣ᒷ ⍑╎ᓭℸ𝙹∷||"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "∷ᒷᔑᓭ𝙹リ"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "∷ᒷ⊣╎ᓭℸᒷ∷"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "∷ᒷ⋮ᒷᓵℸ ⎓∷╎ᒷリ↸ ∷ᒷᑑ⚍ᒷᓭℸ"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "∷ᒷꖎᒷ⍊ᔑリᓵᒷ"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "∷ᒷᒲ𝙹⍊ᒷ ᔑ⚍ℸ⍑ᒷリℸ╎ᓵᔑℸ𝙹∷"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "∷ᒷᒲ𝙹⍊ᒷ ᔑ⍊ᔑℸᔑ∷ᓭ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "∷ᒷᒲ𝙹⍊ᒷ ⎓∷╎ᒷリ↸"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "∷ᒷ!¡ꖎ||"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "∷ᒷ!¡ꖎ||╎リ⊣ ℸ𝙹"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "∷ᒷ!¡𝙹∷ℸ"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "∷ᒷ!¡𝙹∷ℸ ᒲᒷᓭᓭᔑ⊣ᒷ"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "∷ᒷ!¡𝙹∷ℸ ᓭᒷ∷⍊ᒷ∷"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "∷ᒷ!¡𝙹∷ℸ ⚍ᓭᒷ∷"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "∷ᒷᓭᒷリ↸ ⍊ᒷ∷╎⎓╎ᓵᔑℸ╎𝙹リ"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "∷ᒷᓭᒷℸ"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "∷ᒷᓭᒷℸ !¡ᔑᓭᓭ∴𝙹∷↸"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "∷ᒷᓭᒷℸ ℸ𝙹ꖌᒷリ"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "∷𝙹ꖎᒷ リᔑᒲᒷ"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "∷𝙹ꖎᒷᓭ"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "ᓭᔑ⍊ᒷ"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "ᓭᔑ⍊ᒷ ℸ𝙹 ||𝙹⚍∷ リ𝙹ℸᒷᓭ"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "ᓭᔑ⍊ᒷ↸ リ𝙹ℸᒷᓭ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "ᓭᒷꖎᒷᓵℸ ||𝙹⚍∷ ꖎᔑリ⊣⚍ᔑ⊣ᒷ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "ᓭᒷリ↸ ᒷᒲʖᒷ↸ᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "ᓭᒷリ↸ ᒲᒷᓭᓭᔑ⊣ᒷᓭ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "ᓭᒷリℸ ᔑリ ᔑℸℸᔑᓵ⍑ᒲᒷリℸ"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "ᓭᒷリℸ ᒲ⚍ꖎℸ╎!¡ꖎᒷ ᔑℸℸᔑᓵ⍑ᒲᒷリℸᓭ"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "ᓭᒷ∷⍊ᒷ∷ ↸ᒷᓭᓵ∷╎!¡ℸ╎𝙹リ"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "ᓭᒷ∷⍊ᒷ∷ リᔑᒲᒷ"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "ᓭᒷᓭᓭ╎𝙹リᓭ"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "ᓭᒷℸℸ╎リ⊣ᓭ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "ᓭᒷ⍊ᒷ∷ᔑꖎ !¡ᒷ𝙹!¡ꖎᒷ ᔑ∷ᒷ ℸ||!¡╎リ⊣…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "ᓭ𝙹⚍リ↸ᓭ"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "ᓭ𝙹⚍∷ᓵᒷ ᓵ𝙹↸ᒷ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "ᓭ!¡ᒷᔑꖌ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "ᓭ⚍ʖᒲ╎ℸ ⎓ᒷᔑℸ⚍∷ᒷ ᓭ⚍⊣⊣ᒷᓭℸ╎𝙹リ"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "ᓭ⚍ʖᒲ╎ℸ ⎓ᒷᒷ↸ʖᔑᓵꖌ"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "ᓭ⚍!¡!¡𝙹∷ℸ ℸ⍑ᒷ !¡∷𝙹⋮ᒷᓵℸ ʖ|| ↸𝙹リᔑℸ╎リ⊣ - ℸ⍑ᔑリꖌ ||𝙹⚍!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "ℸᒷ∷ᒲᓭ 𝙹⎓ ᓭᒷ∷⍊╎ᓵᒷ"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "ℸᒷ/ℸ ᓵ⍑ᔑリリᒷꖎ"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "ℸ⍑ᒷᒲᒷ"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "ℸ⍑╎ᓭ ╎ᓭ ℸ⍑ᒷ ᓭℸᔑ∷ℸ 𝙹⎓ ||𝙹⚍∷ ᓵ𝙹リ⍊ᒷ∷ᓭᔑℸ╎𝙹リ."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "ℸ⍑╎ᓭ ╎ᓭ ℸ⍑ᒷ ᓭℸᔑ∷ℸ 𝙹⎓ ||𝙹⚍∷ リ𝙹ℸᒷᓭ."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "ℸ⍑╎ᓭ ⚍ᓭᒷ∷ ⍑ᔑᓭ ʖꖎ𝙹ᓵꖌᒷ↸ ||𝙹⚍."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "ℸ╎ᒲᒷ𝙹⚍ℸ ᒲᒷᒲʖᒷ∷ᓭ"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "⚍リʖꖎ𝙹ᓵꖌ ⚍ᓭᒷ∷"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "⚍!¡ꖎ𝙹ᔑ↸ ⎓╎ꖎᒷᓭ"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "⚍ᓭᒷ∷"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "⚍ᓭᒷ∷ ⋮𝙹╎リᒷ↸ ᓵᔑꖎꖎ"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "⚍ᓭᒷ∷ ꖎᒷ⎓ℸ ᓵᔑꖎꖎ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "⚍ᓭᒷ∷ ᒲᔑリᔑ⊣ᒷᒲᒷリℸ"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "⚍ᓭᒷ∷ ᓭᒷℸℸ╎リ⊣ᓭ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "⚍ᓭᒷ∷リᔑᒲᒷ"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "⍊ᒷ∷╎⎓||╎リ⊣ ||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "⍊╎↸ᒷ𝙹"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "⍊╎ᒷ∴ ᓵ⍑ᔑリリᒷꖎ"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "⍊╎ᒷ∴ ᓵ⚍∷∷ᒷリℸꖎ|| ᔑᓵℸ╎⍊ᒷ ʖ⚍⊣ ∷ᒷ!¡𝙹∷ℸᓭ ⍑ᒷ∷ᒷ."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "⍊╎ᒷ∴ 𝙹ꖎ↸ᒷ∷ ⚍!¡↸ᔑℸᒷᓭ"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "⍊╎ᒷ∴ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "⍊╎ᒷ∴╎リ⊣ 𝙹ꖎ↸ᒷ∷ ᒲᒷᓭᓭᔑ⊣ᒷᓭ"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "⍊𝙹╎ᓵᒷ ᓵ⍑ᔑリリᒷꖎ"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "∴ᒷ'⍊ᒷ ᓭᒷリℸ ||𝙹⚍ ᔑ ⍊ᒷ∷╎⎓╎ᓵᔑℸ╎𝙹リ ᒷᒲᔑ╎ꖎ. !¡ꖎᒷᔑᓭᒷ ᔑꖎꖎ𝙹∴ ⚍!¡ ℸ𝙹 10 ᒲ╎リ⚍ℸᒷᓭ ⎓𝙹∷ ╎ℸ ℸ𝙹 ᔑ∷∷╎⍊ᒷ."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "∴ᒷʖ⍑𝙹𝙹ꖌᓭ"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "∴ᒷꖎᓵ𝙹ᒲᒷ ℸ𝙹"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "∴ᒷꖎᓵ𝙹ᒲᒷ!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "||𝙹⚍ ᓵᔑリ ᔑꖎᓭ𝙹 ∷╎⊣⍑ℸ-ᓵꖎ╎ᓵꖌ ℸ⍑ᒷ ⚍ᓭᒷ∷ ╎ᓵ𝙹リ ╎リ ℸ⍑ᒷ ℸ𝙹!¡ ꖎᒷ⎓ℸ, 𝙹∷ ꖎᒷ⎓ℸ ᓵꖎ╎ᓵꖌ ╎ℸ ╎⎓ ||𝙹⚍'∷ᒷ ᔑꖎ∷ᒷᔑ↸|| ⍑𝙹ᒲᒷ."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "||𝙹⚍ ᓵᔑリ ∷ᒷ-𝙹!¡ᒷリ ╎ℸ ꖎᔑℸᒷ∷, ʖ⚍ℸ ╎ℸ ∴╎ꖎꖎ ↸╎ᓭᔑ!¡!¡ᒷᔑ∷ 𝙹リ ʖ𝙹ℸ⍑ ᓭ╎↸ᒷᓭ."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "||𝙹⚍ ᓵᔑリ ∷ᒷ!¡𝙹∷ℸ ╎ᓭᓭ⚍ᒷᓭ ᔑリ↸ ↸╎ᓭᓵ⚍ᓭᓭ ╎ᒲ!¡∷𝙹⍊ᒷᒲᒷリℸᓭ ∴╎ℸ⍑ ⚍ᓭ ↸╎∷ᒷᓵℸꖎ|| ⍑ᒷ∷ᒷ."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "||𝙹⚍ ᓵᔑリリ𝙹ℸ ⚍リ↸𝙹 ℸ⍑╎ᓭ ᔑᓵℸ╎𝙹リ."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "||𝙹⚍ ↸𝙹リ'ℸ ⍑ᔑ⍊ᒷ !¡ᒷ∷ᒲ╎ᓭᓭ╎𝙹リ ℸ𝙹 ᓭᒷリ↸ ᒲᒷᓭᓭᔑ⊣ᒷᓭ ╎リ ℸ⍑╎ᓭ ᓵ⍑ᔑリリᒷꖎ."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "||𝙹⚍ ∴𝙹リ'ℸ ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ᔑᓵᓵᒷᓭᓭ ||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ ⚍リꖎᒷᓭᓭ ||𝙹⚍ ᓵ𝙹リℸᔑᓵℸ ᓭ⚍!¡!¡𝙹∷ℸ - ⍑𝙹∴ᒷ⍊ᒷ∷, ||𝙹⚍∷ ↸ᔑℸᔑ ∴╎ꖎꖎ リ𝙹ℸ ʖᒷ ↸ᒷꖎᒷℸᒷ↸."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "||𝙹⚍ ∴𝙹リ'ℸ ʖᒷ ᔑʖꖎᒷ ℸ𝙹 ∷ᒷ⋮𝙹╎リ ⚍リꖎᒷᓭᓭ ||𝙹⚍ ᔑ∷ᒷ ∷ᒷ-╎リ⍊╎ℸᒷ↸."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "||𝙹⚍∷ ᔑᓵᓵ𝙹⚍リℸ ⍑ᔑᓭ ʖᒷᒷリ ⍊ᒷ∷╎⎓╎ᒷ↸!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "||𝙹⚍∷ ∷ᒷᓵ𝙹⍊ᒷ∷|| ᓵ𝙹↸ᒷᓭ"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/eo/messages.js b/components/i18n/catalogs/eo/messages.js
new file mode 100644
index 0000000..446468e
--- /dev/null
+++ b/components/i18n/catalogs/eo/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Silentigita\"],\"+YFgJi\":[\"Ŝildoj\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marki legita\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Krei novan rolon\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Elsalutigi ĉiujn aliajn seancojn\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Elektu uzantonomon, per kiu oni povos trovi vin. Ĉi tio povas esti ŝanĝita poste en viaj uzantaj agordoj.\"],\"/qQDwm\":[\"Generado de invitilo…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Raporti mesaĝon\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Alsendi prikomentojn\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopii identigilon de mesaĝo\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Forlasi grupon\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Vi povas raporti problemojn kaj rekte priparoli plibonigojn kun ni ĉi tie.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokita\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Vi ne povos re-aliĝi, krom se vi reinvitiĝas.\"],\"3QuNUr\":[\"Pluraj homoj skribas…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Tiu uzanto jam estas amiko.\"],\"3T8ziB\":[\"Krei konton\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seancoj\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Kromnomo\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Elektu vian lingvon\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Trovu komunumon baze sur viaj ŝatokupoj aŭ interesoj.\"],\"572q5a\":[\"Raporti uzanton\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marki nelegita\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ŝanĝi kromnomon\"],\"5dJK4M\":[\"Roloj\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Superrigardo\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Elreta\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Uzanto\"],\"7SU2U9\":[\"Kopii identigilon de servilo\"],\"7VpPHA\":[\"Konfirmi\"],\"7dZnmw\":[\"Laŭ rilateco\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Uzantnomo\"],\"7vhWI8\":[\"Nova pasvorto\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Mastrumi servilon\"],\"8FE4JE\":[\"Ebligi aŭtentigan apon\"],\"8VGnad\":[\"Krei restarigajn kodojn\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Pasvorto\"],\"8aTiea\":[\"Proprigo\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enigu vian uzantnomon.\"],\"9D85wC\":[\"Kopii identigilon de uzanto\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permesoj\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Forbari\"],\"9nffag\":[\"Vi rigardas mesaĝojn pli malnovajn\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Malbloki uzanton\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Krei grupon\"],\"A9Rhec\":[\"Kanala nomo\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enigu novan pasvorton.\"],\"AU7IRi\":[\"Teksta kanalo\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voĉa kanalo\"],\"BHsrDx\":[\"Invitoj\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesaĝo sendiĝis ĉe alia platformo\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vidi kanalon\"],\"CK7kdd\":[\"Forigi statotekston\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanala priskribo\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Sendi mesaĝojn\"],\"CkIs/i\":[\"Silentigi membrojn\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuala pasvorto\"],\"DDpDsO\":[\"Invitkodo\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiala komunikaĵo\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Farite\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesaĝo ne ŝargiĝis, alklaku por salti\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Sendi sugeston por funkcio\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Forpeli\"],\"EdQY6l\":[\"Neniuj\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konversacioj\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sendiĝis alkroĉaĵo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Krei kategorion\"],\"F1uGNS\":[\"Mastrumi kromnomojn\"],\"FEr96N\":[\"Etoso\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Forigi uzantobildojn\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ebligi labortablajn sciigojn\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Koncentriĝanta\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopii identigilon de kanalo\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Reciprokaj grupoj\"],\"GhCPk1\":[\"Vi ne povos malfari la forigon.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Entajpu vian aktualan pasvorton.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Bonvolu elekti metodon por aŭtentigi vian peton.\"],\"HAKBY9\":[\"Alŝuti dosierojn\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Konservitaj notoj\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resendi kontroladon\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Movi membrojn\"],\"ImOQa9\":[\"Respondi\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sendiĝis pluraj alkroĉaĵoj\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Konfirmi agon\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vidi malnovajn ĝisdatigojn\"],\"JUJmXm\":[\"Bonvolu konfirmi ĉi tiun agon per la elektita metodo.\"],\"JW8mxK\":[\"Konservi en viajn notojn\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bonvenon al\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"La agordoj estas alireblaj per dekstra (aŭ maldekstra en la ĉefpaĝo) alklako je via profilbildo supra-maldekstre.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Forigi mesaĝon\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Enhavo rompas unu leĝon aŭ pliajn\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonoj\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiala servilo\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Malamikigi\"],\"LcET2C\":[\"Privateca politiko\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ni sendis al vi konfirman retpoŝton. Bonvolu atendi ĝis 10 minutoj por ĝia alveno.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servila nomo\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Foriri\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Rigardu nune aktivajn cimraportojn ĉi tie.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Sciigu nin kiel ni povas plibonigi nian apon, prikomentante al ni.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Via konto estas konfirmita!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Retpoŝto\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Vi ne havas permeson sendi mesaĝojn en ĉi tiu kanalo.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Restarigi\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rola nomo\"],\"PWOA0E\":[\"Nur mencioj\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Sendi enkorpigaĵojn\"],\"PnzsrT\":[\"Fontkodo\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Salti aktualen\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Senokupa\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redakti mesaĝon\"],\"QqoBlW\":[\"Kontrolu vian retpoŝton!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restarigi pasvorton\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Cimspurilo\"],\"S3bIKF\":[\"Kopii identigilon\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Bonvolu skani aŭ uzi la ĵetonon ĉi-sube en via aŭtentiga aplikaĵo.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Forigi aŭtentigilon\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Mastrumi mesaĝojn\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Mastrumi rolojn\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Agordoj\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invitu viajn amikojn, kelkajn mojosajn robotojn, kaj faru grandan feston.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Ŝanĝi uzantobildon\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Sendado de mesaĝo\"],\"VJScHU\":[\"Kialo\"],\"VKsaTi\":[\"Respondante al\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Surdigi membrojn\"],\"VsHxv+\":[\"Kopii tekston\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Konfirmado de via konto…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Eksteraj ligiloj povas esti danĝeraj!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientaj agordoj\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aŭtentiga apo\"],\"YcVBkL\":[\"Riceviĝo de mesaĝo\"],\"YirHq7\":[\"Prikomentoj\"],\"YlFpiA\":[\"Konfirmado malsukcesis!\"],\"Yp+Hi/\":[\"Malfermi agordojn\"],\"Z5HWHd\":[\"Ŝaltita\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Viaj restarigaj kodoj\"],\"aAIQg2\":[\"Aspekto\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Vi ne povas malfari tion.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Malŝaltita\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Malvalidigi konton\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Legi mesaĝan historion\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Forbari membron\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Mastrumi permesojn\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitanto\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Forigi\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Nuligi\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Krei novan roboton\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviti aliulojn\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nevidebla\"],\"ekfzWq\":[\"Uzantaj agordoj\"],\"etgedT\":[\"Emoĝioj\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Mastrumi proprigon\"],\"fTMMeD\":[\"Krei invitilon\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registriĝi\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Nuligi amikiĝpeton\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribui rolojn\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Raporti\"],\"gkBHk/\":[\"Krei kanalon\"],\"gkmjYT\":[\"Forlasi servilon\"],\"go1IWB\":[\"Tiu uzanto blokis vin.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Forigi kanalon\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Bonvolu enigi vian retpoŝtadreson.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Krei\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Ĉefpaĝo\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Sciigoj\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Konekti\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencii\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Roboto\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Reiri al ensalutado\"],\"jpJ5AL\":[\"Restariga kodo\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Uzantobildo\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bonvenon!\"],\"knjY+b\":[\"Vi povas remalfermi ĝin poste, sed ĝi malaperos ĉe ambaŭ uzantoj.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Amikigi\"],\"lSGjX7\":[\"Aliĝo de uzanto en voĉbabilejon\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaloj\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nomo de la grupo\"],\"mAYvqA\":[\"Saluton!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Vi ne povos aliri vian konton krom se vi kontaktos subtenon - tamen viaj datumoj ne estos forigitaj.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Propra statoteksto\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Reciprokaj amikoj\"],\"nbzz1A\":[\"Enigi kodon\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Jen la komenco de viaj notoj.\"],\"o+XJ9D\":[\"Ŝanĝi\"],\"oB4OOq\":[\"Forbari membrojn\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Enreta\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Forpeli membrojn\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Defaŭlto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Elsaluti\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Salti al komenco\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Forlaso de uzanto el voĉbabilejo\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mia konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Ĉiuj mesaĝoj\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 homo reagis\"],\"rxaY+5\":[\"Neĝenenda\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Altnivela\"],\"t43mBk\":[\"Raporti servilon\"],\"tBmnPU\":[\"Amikoj\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Mastrumi rethokojn\"],\"tdTuUv\":[\"Bloki uzanton\"],\"tfDRzk\":[\"Konservi\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokita uzanto\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Iri al la servilo de testantoj\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Forpeli membron\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Forigi rolon\"],\"utrCh2\":[\"Tempolimigi membrojn\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Pri\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Priskribo de la servilo\"],\"v1kQyJ\":[\"Rethokoj\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profilo\"],\"vJum3e\":[\"Subtenu la projekton per donaco - dankon!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redakti identecon\"],\"vXIe7J\":[\"Lingvo\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Bonvolu konservi ĉi tiujn en sekura loko.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mesaĝado\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Eniri kanalon\"],\"wL3cK8\":[\"Plej laste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membroj\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskado\"],\"xDAtGP\":[\"Mesaĝi\"],\"xGVfLh\":[\"Daŭrigi\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Forbaroj\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Servokondiĉoj\"],\"xpgPPI\":[\"Miaj robotoj\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopii ligilon\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Mi konfirmas, ke mi aĝas almenaŭ 18 jarojn.\"],\"yDOdwQ\":[\"Uzanta administrado\"],\"yIBLq8\":[\"Paroli\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fermi\"],\"z0hW8A\":[\"Vidi restarigajn kodojn\"],\"z0t9bb\":[\"Ensaluti\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Okej\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Jen la komenco de via konversacio.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Plej malnove\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/eo/messages.mjs b/components/i18n/catalogs/eo/messages.mjs
new file mode 100644
index 0000000..e4d6019
--- /dev/null
+++ b/components/i18n/catalogs/eo/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Silentigita\"],\"+YFgJi\":[\"Ŝildoj\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marki legita\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Krei novan rolon\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Elsalutigi ĉiujn aliajn seancojn\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Elektu uzantonomon, per kiu oni povos trovi vin. Ĉi tio povas esti ŝanĝita poste en viaj uzantaj agordoj.\"],\"/qQDwm\":[\"Generado de invitilo…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Raporti mesaĝon\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Alsendi prikomentojn\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopii identigilon de mesaĝo\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Forlasi grupon\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Vi povas raporti problemojn kaj rekte priparoli plibonigojn kun ni ĉi tie.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokita\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Vi ne povos re-aliĝi, krom se vi reinvitiĝas.\"],\"3QuNUr\":[\"Pluraj homoj skribas…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Tiu uzanto jam estas amiko.\"],\"3T8ziB\":[\"Krei konton\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seancoj\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Kromnomo\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Elektu vian lingvon\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Trovu komunumon baze sur viaj ŝatokupoj aŭ interesoj.\"],\"572q5a\":[\"Raporti uzanton\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marki nelegita\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ŝanĝi kromnomon\"],\"5dJK4M\":[\"Roloj\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Superrigardo\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Elreta\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Uzanto\"],\"7SU2U9\":[\"Kopii identigilon de servilo\"],\"7VpPHA\":[\"Konfirmi\"],\"7dZnmw\":[\"Laŭ rilateco\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Uzantnomo\"],\"7vhWI8\":[\"Nova pasvorto\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Mastrumi servilon\"],\"8FE4JE\":[\"Ebligi aŭtentigan apon\"],\"8VGnad\":[\"Krei restarigajn kodojn\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Pasvorto\"],\"8aTiea\":[\"Proprigo\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enigu vian uzantnomon.\"],\"9D85wC\":[\"Kopii identigilon de uzanto\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permesoj\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Forbari\"],\"9nffag\":[\"Vi rigardas mesaĝojn pli malnovajn\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Malbloki uzanton\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Krei grupon\"],\"A9Rhec\":[\"Kanala nomo\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enigu novan pasvorton.\"],\"AU7IRi\":[\"Teksta kanalo\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voĉa kanalo\"],\"BHsrDx\":[\"Invitoj\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesaĝo sendiĝis ĉe alia platformo\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vidi kanalon\"],\"CK7kdd\":[\"Forigi statotekston\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanala priskribo\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Sendi mesaĝojn\"],\"CkIs/i\":[\"Silentigi membrojn\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuala pasvorto\"],\"DDpDsO\":[\"Invitkodo\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiala komunikaĵo\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Farite\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesaĝo ne ŝargiĝis, alklaku por salti\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Sendi sugeston por funkcio\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Forpeli\"],\"EdQY6l\":[\"Neniuj\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konversacioj\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sendiĝis alkroĉaĵo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Krei kategorion\"],\"F1uGNS\":[\"Mastrumi kromnomojn\"],\"FEr96N\":[\"Etoso\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Forigi uzantobildojn\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ebligi labortablajn sciigojn\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Koncentriĝanta\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopii identigilon de kanalo\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Reciprokaj grupoj\"],\"GhCPk1\":[\"Vi ne povos malfari la forigon.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Entajpu vian aktualan pasvorton.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Bonvolu elekti metodon por aŭtentigi vian peton.\"],\"HAKBY9\":[\"Alŝuti dosierojn\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Konservitaj notoj\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resendi kontroladon\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Movi membrojn\"],\"ImOQa9\":[\"Respondi\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sendiĝis pluraj alkroĉaĵoj\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Konfirmi agon\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vidi malnovajn ĝisdatigojn\"],\"JUJmXm\":[\"Bonvolu konfirmi ĉi tiun agon per la elektita metodo.\"],\"JW8mxK\":[\"Konservi en viajn notojn\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bonvenon al\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"La agordoj estas alireblaj per dekstra (aŭ maldekstra en la ĉefpaĝo) alklako je via profilbildo supra-maldekstre.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Forigi mesaĝon\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Enhavo rompas unu leĝon aŭ pliajn\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonoj\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiala servilo\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Malamikigi\"],\"LcET2C\":[\"Privateca politiko\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ni sendis al vi konfirman retpoŝton. Bonvolu atendi ĝis 10 minutoj por ĝia alveno.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servila nomo\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Foriri\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Rigardu nune aktivajn cimraportojn ĉi tie.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Sciigu nin kiel ni povas plibonigi nian apon, prikomentante al ni.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Via konto estas konfirmita!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Retpoŝto\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Vi ne havas permeson sendi mesaĝojn en ĉi tiu kanalo.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Restarigi\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rola nomo\"],\"PWOA0E\":[\"Nur mencioj\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Sendi enkorpigaĵojn\"],\"PnzsrT\":[\"Fontkodo\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Salti aktualen\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Senokupa\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redakti mesaĝon\"],\"QqoBlW\":[\"Kontrolu vian retpoŝton!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restarigi pasvorton\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Cimspurilo\"],\"S3bIKF\":[\"Kopii identigilon\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Bonvolu skani aŭ uzi la ĵetonon ĉi-sube en via aŭtentiga aplikaĵo.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Forigi aŭtentigilon\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Mastrumi mesaĝojn\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Mastrumi rolojn\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Agordoj\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invitu viajn amikojn, kelkajn mojosajn robotojn, kaj faru grandan feston.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Ŝanĝi uzantobildon\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Sendado de mesaĝo\"],\"VJScHU\":[\"Kialo\"],\"VKsaTi\":[\"Respondante al\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Surdigi membrojn\"],\"VsHxv+\":[\"Kopii tekston\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Konfirmado de via konto…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Eksteraj ligiloj povas esti danĝeraj!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientaj agordoj\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aŭtentiga apo\"],\"YcVBkL\":[\"Riceviĝo de mesaĝo\"],\"YirHq7\":[\"Prikomentoj\"],\"YlFpiA\":[\"Konfirmado malsukcesis!\"],\"Yp+Hi/\":[\"Malfermi agordojn\"],\"Z5HWHd\":[\"Ŝaltita\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Viaj restarigaj kodoj\"],\"aAIQg2\":[\"Aspekto\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Vi ne povas malfari tion.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Malŝaltita\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Malvalidigi konton\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Legi mesaĝan historion\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Forbari membron\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Mastrumi permesojn\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitanto\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Forigi\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Nuligi\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Krei novan roboton\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviti aliulojn\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nevidebla\"],\"ekfzWq\":[\"Uzantaj agordoj\"],\"etgedT\":[\"Emoĝioj\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Mastrumi proprigon\"],\"fTMMeD\":[\"Krei invitilon\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registriĝi\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Nuligi amikiĝpeton\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribui rolojn\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Raporti\"],\"gkBHk/\":[\"Krei kanalon\"],\"gkmjYT\":[\"Forlasi servilon\"],\"go1IWB\":[\"Tiu uzanto blokis vin.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Forigi kanalon\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Bonvolu enigi vian retpoŝtadreson.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Krei\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Ĉefpaĝo\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Sciigoj\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Konekti\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencii\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Roboto\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Reiri al ensalutado\"],\"jpJ5AL\":[\"Restariga kodo\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Uzantobildo\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bonvenon!\"],\"knjY+b\":[\"Vi povas remalfermi ĝin poste, sed ĝi malaperos ĉe ambaŭ uzantoj.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Amikigi\"],\"lSGjX7\":[\"Aliĝo de uzanto en voĉbabilejon\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaloj\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nomo de la grupo\"],\"mAYvqA\":[\"Saluton!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Vi ne povos aliri vian konton krom se vi kontaktos subtenon - tamen viaj datumoj ne estos forigitaj.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Propra statoteksto\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Reciprokaj amikoj\"],\"nbzz1A\":[\"Enigi kodon\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Jen la komenco de viaj notoj.\"],\"o+XJ9D\":[\"Ŝanĝi\"],\"oB4OOq\":[\"Forbari membrojn\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Enreta\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Forpeli membrojn\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Defaŭlto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Elsaluti\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Salti al komenco\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Forlaso de uzanto el voĉbabilejo\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mia konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Ĉiuj mesaĝoj\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 homo reagis\"],\"rxaY+5\":[\"Neĝenenda\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Altnivela\"],\"t43mBk\":[\"Raporti servilon\"],\"tBmnPU\":[\"Amikoj\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Mastrumi rethokojn\"],\"tdTuUv\":[\"Bloki uzanton\"],\"tfDRzk\":[\"Konservi\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokita uzanto\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Iri al la servilo de testantoj\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Forpeli membron\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Forigi rolon\"],\"utrCh2\":[\"Tempolimigi membrojn\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Pri\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Priskribo de la servilo\"],\"v1kQyJ\":[\"Rethokoj\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profilo\"],\"vJum3e\":[\"Subtenu la projekton per donaco - dankon!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redakti identecon\"],\"vXIe7J\":[\"Lingvo\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Bonvolu konservi ĉi tiujn en sekura loko.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mesaĝado\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Eniri kanalon\"],\"wL3cK8\":[\"Plej laste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membroj\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskado\"],\"xDAtGP\":[\"Mesaĝi\"],\"xGVfLh\":[\"Daŭrigi\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Forbaroj\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Servokondiĉoj\"],\"xpgPPI\":[\"Miaj robotoj\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopii ligilon\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Mi konfirmas, ke mi aĝas almenaŭ 18 jarojn.\"],\"yDOdwQ\":[\"Uzanta administrado\"],\"yIBLq8\":[\"Paroli\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fermi\"],\"z0hW8A\":[\"Vidi restarigajn kodojn\"],\"z0t9bb\":[\"Ensaluti\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Okej\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Jen la komenco de via konversacio.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Plej malnove\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/eo/messages.po b/components/i18n/catalogs/eo/messages.po
new file mode 100644
index 0000000..510bcf2
--- /dev/null
+++ b/components/i18n/catalogs/eo/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: eo\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 homo reagis"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Pri"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Amikigi"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Altnivela"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Ĉiuj mesaĝoj"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Tiu uzanto jam estas amiko."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Aspekto"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Atribui rolojn"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aŭtentiga apo"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Uzantobildo"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Ŝildoj"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Forbari"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Forbari membron"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Forbari membrojn"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Forbaroj"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloki uzanton"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blokita"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blokita uzanto"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Roboto"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Cimspurilo"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Nuligi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Nuligi amikiĝpeton"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Ŝanĝi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Ŝanĝi uzantobildon"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Ŝanĝi kromnomon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanala priskribo"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanala nomo"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanaloj"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Kontrolu vian retpoŝton!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Forigi statotekston"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Klientaj agordoj"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Fermi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Konfirmi"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Konfirmi agon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Konekti"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Enhavo rompas unu leĝon aŭ pliajn"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Daŭrigi"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Konversacioj"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopii identigilon de kanalo"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopii identigilon"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopii ligilon"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopii identigilon de mesaĝo"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopii identigilon de servilo"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopii tekston"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopii identigilon de uzanto"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Krei"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Krei grupon"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Krei novan roboton"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Krei novan rolon"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Krei konton"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Krei kategorion"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Krei kanalon"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Krei invitilon"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Aktuala pasvorto"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Propra statoteksto"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Proprigo"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Surdigi membrojn"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Defaŭlto"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Forigi"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Forigi kanalon"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Forigi mesaĝon"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Forigi rolon"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Malvalidigi konton"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Neĝenenda"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Farite"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Redakti identecon"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Redakti mesaĝon"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Retpoŝto"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoĝioj"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Ebligi aŭtentigan apon"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Ebligi labortablajn sciigojn"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Enigu novan pasvorton."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Eniri kanalon"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Enigi kodon"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Entajpu vian aktualan pasvorton."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Enigu vian uzantnomon."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Eksteraj ligiloj povas esti danĝeraj!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Konfirmado malsukcesis!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Prikomentoj"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Trovu komunumon baze sur viaj ŝatokupoj aŭ interesoj."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Koncentriĝanta"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amikoj"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Krei restarigajn kodojn"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generado de invitilo…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Reiri al ensalutado"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Iri al la servilo de testantoj"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nomo de la grupo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Saluton!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Ĉefpaĝo"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Mi konfirmas, ke mi aĝas almenaŭ 18 jarojn."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Senokupa"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Nevidebla"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invitu viajn amikojn, kelkajn mojosajn robotojn, kaj faru grandan feston."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Invitkodo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Inviti aliulojn"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Invitanto"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitoj"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Salti aktualen"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Salti al komenco"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Forpeli"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Forpeli membron"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Forpeli membrojn"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Lingvo"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Plej laste"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Foriri"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Forlasi grupon"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Forlasi servilon"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Sciigu nin kiel ni povas plibonigi nian apon, prikomentante al ni."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Elsaluti"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Elsalutigi ĉiujn aliajn seancojn"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Ensaluti"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Mastrumi proprigon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Mastrumi mesaĝojn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Mastrumi kromnomojn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Mastrumi permesojn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Mastrumi rolojn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Mastrumi servilon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Mastrumi rethokojn"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marki legita"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marki nelegita"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskado"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Membroj"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mencii"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Nur mencioj"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Mesaĝi"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mesaĝo ne ŝargiĝis, alklaku por salti"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Riceviĝo de mesaĝo"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Sendado de mesaĝo"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Mesaĝo sendiĝis ĉe alia platformo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Mesaĝado"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Movi membrojn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Silentigi membrojn"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Silentigita"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Reciprokaj amikoj"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Reciprokaj grupoj"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mia konto"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Miaj robotoj"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nova pasvorto"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Kromnomo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Neniuj"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Sciigoj"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Malŝaltita"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Oficiala komunikaĵo"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Oficiala servilo"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Elreta"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Okej"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Plej malnove"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Ŝaltita"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Vi ne povos malfari la forigon."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Enreta"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Malfermi agordojn"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Superrigardo"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Pasvorto"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permesoj"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Elektu uzantonomon, per kiu oni povos trovi vin. Ĉi tio povas esti ŝanĝita poste en viaj uzantaj agordoj."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Bonvolu konfirmi ĉi tiun agon per la elektita metodo."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Bonvolu enigi vian retpoŝtadreson."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Bonvolu konservi ĉi tiujn en sekura loko."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Bonvolu skani aŭ uzi la ĵetonon ĉi-sube en via aŭtentiga aplikaĵo."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Bonvolu elekti metodon por aŭtentigi vian peton."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privateca politiko"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profilo"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Legi mesaĝan historion"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Kialo"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Restariga kodo"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registriĝi"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Laŭ rilateco"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Forigi aŭtentigilon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Forigi uzantobildojn"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Malamikigi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Respondi"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Respondante al"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Raporti"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Raporti mesaĝon"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Raporti servilon"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Raporti uzanton"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Resendi kontroladon"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Restarigi"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Restarigi pasvorton"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rola nomo"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roloj"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Konservi"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Konservi en viajn notojn"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Konservitaj notoj"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Elektu vian lingvon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Sendi enkorpigaĵojn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Sendi mesaĝojn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Sendiĝis alkroĉaĵo"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Sendiĝis pluraj alkroĉaĵoj"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Priskribo de la servilo"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Servila nomo"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Seancoj"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Agordoj"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Pluraj homoj skribas…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sonoj"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Fontkodo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Paroli"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Sendi sugeston por funkcio"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Alsendi prikomentojn"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Subtenu la projekton per donaco - dankon!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Servokondiĉoj"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Teksta kanalo"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Etoso"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Jen la komenco de via konversacio."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Jen la komenco de viaj notoj."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Tiu uzanto blokis vin."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Tempolimigi membrojn"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Malbloki uzanton"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Alŝuti dosierojn"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Uzanto"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Aliĝo de uzanto en voĉbabilejon"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Forlaso de uzanto el voĉbabilejo"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Uzanta administrado"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Uzantaj agordoj"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Uzantnomo"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Konfirmado de via konto…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Vidi kanalon"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Rigardu nune aktivajn cimraportojn ĉi tie."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Vidi malnovajn ĝisdatigojn"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Vidi restarigajn kodojn"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Vi rigardas mesaĝojn pli malnovajn"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Voĉa kanalo"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Ni sendis al vi konfirman retpoŝton. Bonvolu atendi ĝis 10 minutoj por ĝia alveno."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Rethokoj"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Bonvenon al"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Bonvenon!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "La agordoj estas alireblaj per dekstra (aŭ maldekstra en la ĉefpaĝo) alklako je via profilbildo supra-maldekstre."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Vi povas remalfermi ĝin poste, sed ĝi malaperos ĉe ambaŭ uzantoj."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Vi povas raporti problemojn kaj rekte priparoli plibonigojn kun ni ĉi tie."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Vi ne povas malfari tion."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Vi ne havas permeson sendi mesaĝojn en ĉi tiu kanalo."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Vi ne povos aliri vian konton krom se vi kontaktos subtenon - tamen viaj datumoj ne estos forigitaj."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Vi ne povos re-aliĝi, krom se vi reinvitiĝas."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Via konto estas konfirmita!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Viaj restarigaj kodoj"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/es/messages.js b/components/i18n/catalogs/es/messages.js
new file mode 100644
index 0000000..7e4321d
--- /dev/null
+++ b/components/i18n/catalogs/es/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Insignias\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como leído\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crear un nuevo rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Cerrar sesión en todas las otras sesiones\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Elige un nombre de usuario por el cual quieres que la gente pueda encontrarte. Puedes cambiarlo más tarde desde la configuración.\"],\"/qQDwm\":[\"Generando invitación…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Reportar mensaje\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Enviar comentarios\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID del mensaje\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Abandonar grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Puedes informar de problemas y comentarnos tus sugerencias aquí.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueado\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"No podrás volver a entrar a menos que te inviten de nuevo.\"],\"3QuNUr\":[\"Varias personas están escribiendo…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ya eres amigo de este usuario.\"],\"3T8ziB\":[\"Crear una cuenta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesiones\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Apodo\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleccionar idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Encuentra una comunidad basada en tus hobbies o intereses.\"],\"572q5a\":[\"Reportar usuario\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como no leído\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cambiar apodo\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"General\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Desconectado\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuario\"],\"7SU2U9\":[\"Copiar ID del servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevancia\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nombre de usuario\"],\"7vhWI8\":[\"Nueva contraseña\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrar servidor\"],\"8FE4JE\":[\"Habilitar aplicación de autenticación\"],\"8VGnad\":[\"Generar códigos de recuperación\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Contraseña\"],\"8aTiea\":[\"Personalización\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introduce tu nombre de usuario preferido.\"],\"9D85wC\":[\"Copiar ID de usuario\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Restablecer Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisos\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Expulsar\"],\"9nffag\":[\"Estás viendo mensajes antiguos\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear usuario\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crear un grupo\"],\"A9Rhec\":[\"Nombre del canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Inteoduce una nueva contraseña.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Invitaciones\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"El mensaje ha sido enviado en otra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Borrar estado personalizado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descripción del canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensajes\"],\"CkIs/i\":[\"Silenciar Miembros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Contraseña actual\"],\"DDpDsO\":[\"Código de invitación\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hecho\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mensaje no cargado, click para verlo\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Sugerir nuevas características\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar temporalmente\"],\"EdQY6l\":[\"Ninguno\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversaciones\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Envió un archivo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crear categoría\"],\"F1uGNS\":[\"Administrar apodos\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eliminar avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Habilitar notificaciones de escritorio\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrado\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID del canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos en común\"],\"GhCPk1\":[\"Una vez borrado, no hay vuelta atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introduce tu contraseña actual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, seleccione un método para autenticar su solicitud.\"],\"HAKBY9\":[\"Subir archivos\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas guardadas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificación\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover Miembros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Envió múltiples archivos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"No se puede eliminar la cuenta hasta que tus servidores sean eliminados o transferidos a otra propiedad\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar acción\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ver actualizaciones anteriores\"],\"JUJmXm\":[\"Por favor, confirma esta acción utilizando el método seleccionado.\"],\"JW8mxK\":[\"Guardar en tus notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bienvenido a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"También puedes hacer clic derecho en el icono de usuario en la parte superior izquierda, o hacer clic izquierdo si ya estás en la página de inicio.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar mensaje\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"El contenido inflinge una o varias leyes\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonidos\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eliminar amigo\"],\"LcET2C\":[\"Política de privacidad\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Te hemos enviado un correo de verificación. Por favor, espera hasta 10 minutos para que llegue.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nombre del servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Salir\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Ver informes de errores activos actualmente.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Haznos saber cómo podemos mejorar nuestra aplicación dándonos tu opinión.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"¡Tu cuenta ha sido verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Correo electrónico\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"No tienes permiso para enviar mensajes en este canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reiniciar\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rechazar solicitud\"],\"PSP1MZ\":[\"Nombre de rol\"],\"PWOA0E\":[\"Solo menciones\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar embeds\"],\"PnzsrT\":[\"Código fuente\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Ir al actual\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensaje\"],\"QqoBlW\":[\"¡Revisa tu correo electrónico!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restablecer contraseña\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de errores\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Escanea o usa el código en tu aplicación de autenticación.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Eliminar autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Administrar mensajes\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Administrar roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ajustes\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invita a todos tus amigos, algunos bots geniales y organiza una gran fiesta.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cambiar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensaje enviado\"],\"VJScHU\":[\"Motivo\"],\"VKsaTi\":[\"Respondiendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ensordecer miembros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando tu cuenta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"¡Los enlaces externos pueden ser peligrosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ajustes del cliente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicación de autenticación\"],\"YcVBkL\":[\"Mensaje recibido\"],\"YirHq7\":[\"Comentarios\"],\"YlFpiA\":[\"¡Error al verificar!\"],\"Yp+Hi/\":[\"Abrir ajustes\"],\"Z5HWHd\":[\"Activado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Tus códigos de recuperación\"],\"aAIQg2\":[\"Apariencia\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"No puedes deshacer esta acción.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desactivado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deshabilitar cuenta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Leer historial de mensajes\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Expulsar miembro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestionar permisos\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitador\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crear un nuevo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitar a otros\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Ajustes de usuario\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Administrar personalización\"],\"fTMMeD\":[\"Crear invitación\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrarse\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar solicitud de amistad\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Asignar roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Reportar\"],\"gkBHk/\":[\"Crear canal\"],\"gkmjYT\":[\"Abandonar servidor\"],\"go1IWB\":[\"Este usuario te ha bloqueado.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introduce tu correo electrónico.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crear\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Inicio\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Volver al inicio de sesión\"],\"jpJ5AL\":[\"Código de recuperación\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"¡Bienvenido!\"],\"knjY+b\":[\"Puedes volver a abrirla más tarde, pero los mensajes enviados anteriormente se perderán para ambos.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Añadir amigo\"],\"lSGjX7\":[\"Un usuario se ha unido a la llamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canales\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nombre del grupo\"],\"mAYvqA\":[\"¡Hola!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edita tu identidad\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"No podrás acceder a tu cuenta a menos que te pongas en contacto con el soporte - sin embargo, tus datos no serán eliminados.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Establecer estado personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos en común\"],\"nbzz1A\":[\"Introducir el código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Este es el comienzo de tus notas.\"],\"o+XJ9D\":[\"Cambiar\"],\"oB4OOq\":[\"Expulsar miembros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Conectado\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar miembros temporalmente\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Por defecto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Cerrar sesión\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Ir al principio\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un usuario ha abandonado la llamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mi cuenta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todos los mensajes\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persona ha reaccionado\"],\"rxaY+5\":[\"No molestar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanzado\"],\"t43mBk\":[\"Reportar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Administrar Webhooks\"],\"tdTuUv\":[\"Bloquear usuario\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuario Bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Servidor de pruebas\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar miembro temporalmente\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Eliminar Rol\"],\"utrCh2\":[\"Aislar temporalmente a miembros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Acerca de\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descripción del servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoya el proyecto donando - ¡gracias!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar perfil del servidor\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Guárdalos en un lugar seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensajería\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar al canal\"],\"wL3cK8\":[\"Último\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Miembros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Camuflarse\"],\"xDAtGP\":[\"Enviar mensaje\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Expulsiones\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Términos de servicio\"],\"xpgPPI\":[\"Mis bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceptar solicitud\"],\"y1eoq1\":[\"Copiar enlace\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirmo que tengo al menos 18 años.\"],\"yDOdwQ\":[\"Gestión de usuarios\"],\"yIBLq8\":[\"Hablar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Cerrar\"],\"z0hW8A\":[\"Ver códigos de recuperación\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Aceptar\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Este es el comienzo de la conversación.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Más antiguo\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/es/messages.mjs b/components/i18n/catalogs/es/messages.mjs
new file mode 100644
index 0000000..8a497a3
--- /dev/null
+++ b/components/i18n/catalogs/es/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Insignias\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como leído\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crear un nuevo rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Cerrar sesión en todas las otras sesiones\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Elige un nombre de usuario por el cual quieres que la gente pueda encontrarte. Puedes cambiarlo más tarde desde la configuración.\"],\"/qQDwm\":[\"Generando invitación…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Reportar mensaje\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Enviar comentarios\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID del mensaje\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Abandonar grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Puedes informar de problemas y comentarnos tus sugerencias aquí.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueado\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"No podrás volver a entrar a menos que te inviten de nuevo.\"],\"3QuNUr\":[\"Varias personas están escribiendo…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ya eres amigo de este usuario.\"],\"3T8ziB\":[\"Crear una cuenta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesiones\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Apodo\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleccionar idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Encuentra una comunidad basada en tus hobbies o intereses.\"],\"572q5a\":[\"Reportar usuario\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como no leído\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cambiar apodo\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"General\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Desconectado\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuario\"],\"7SU2U9\":[\"Copiar ID del servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevancia\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nombre de usuario\"],\"7vhWI8\":[\"Nueva contraseña\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrar servidor\"],\"8FE4JE\":[\"Habilitar aplicación de autenticación\"],\"8VGnad\":[\"Generar códigos de recuperación\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Contraseña\"],\"8aTiea\":[\"Personalización\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introduce tu nombre de usuario preferido.\"],\"9D85wC\":[\"Copiar ID de usuario\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Restablecer Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisos\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Expulsar\"],\"9nffag\":[\"Estás viendo mensajes antiguos\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear usuario\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crear un grupo\"],\"A9Rhec\":[\"Nombre del canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Inteoduce una nueva contraseña.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Invitaciones\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"El mensaje ha sido enviado en otra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Borrar estado personalizado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descripción del canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensajes\"],\"CkIs/i\":[\"Silenciar Miembros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Contraseña actual\"],\"DDpDsO\":[\"Código de invitación\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hecho\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mensaje no cargado, click para verlo\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Sugerir nuevas características\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar temporalmente\"],\"EdQY6l\":[\"Ninguno\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversaciones\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Envió un archivo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crear categoría\"],\"F1uGNS\":[\"Administrar apodos\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eliminar avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Habilitar notificaciones de escritorio\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrado\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID del canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos en común\"],\"GhCPk1\":[\"Una vez borrado, no hay vuelta atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introduce tu contraseña actual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, seleccione un método para autenticar su solicitud.\"],\"HAKBY9\":[\"Subir archivos\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas guardadas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificación\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover Miembros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Envió múltiples archivos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"No se puede eliminar la cuenta hasta que tus servidores sean eliminados o transferidos a otra propiedad\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar acción\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ver actualizaciones anteriores\"],\"JUJmXm\":[\"Por favor, confirma esta acción utilizando el método seleccionado.\"],\"JW8mxK\":[\"Guardar en tus notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bienvenido a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"También puedes hacer clic derecho en el icono de usuario en la parte superior izquierda, o hacer clic izquierdo si ya estás en la página de inicio.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar mensaje\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"El contenido inflinge una o varias leyes\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonidos\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eliminar amigo\"],\"LcET2C\":[\"Política de privacidad\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Te hemos enviado un correo de verificación. Por favor, espera hasta 10 minutos para que llegue.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nombre del servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Salir\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Ver informes de errores activos actualmente.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Haznos saber cómo podemos mejorar nuestra aplicación dándonos tu opinión.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"¡Tu cuenta ha sido verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Correo electrónico\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"No tienes permiso para enviar mensajes en este canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reiniciar\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rechazar solicitud\"],\"PSP1MZ\":[\"Nombre de rol\"],\"PWOA0E\":[\"Solo menciones\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar embeds\"],\"PnzsrT\":[\"Código fuente\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Ir al actual\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensaje\"],\"QqoBlW\":[\"¡Revisa tu correo electrónico!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restablecer contraseña\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de errores\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Escanea o usa el código en tu aplicación de autenticación.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Eliminar autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Administrar mensajes\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Administrar roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ajustes\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invita a todos tus amigos, algunos bots geniales y organiza una gran fiesta.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cambiar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensaje enviado\"],\"VJScHU\":[\"Motivo\"],\"VKsaTi\":[\"Respondiendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ensordecer miembros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando tu cuenta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"¡Los enlaces externos pueden ser peligrosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ajustes del cliente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicación de autenticación\"],\"YcVBkL\":[\"Mensaje recibido\"],\"YirHq7\":[\"Comentarios\"],\"YlFpiA\":[\"¡Error al verificar!\"],\"Yp+Hi/\":[\"Abrir ajustes\"],\"Z5HWHd\":[\"Activado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Tus códigos de recuperación\"],\"aAIQg2\":[\"Apariencia\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"No puedes deshacer esta acción.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desactivado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deshabilitar cuenta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Leer historial de mensajes\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Expulsar miembro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestionar permisos\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitador\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crear un nuevo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitar a otros\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Ajustes de usuario\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Administrar personalización\"],\"fTMMeD\":[\"Crear invitación\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrarse\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar solicitud de amistad\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Asignar roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Reportar\"],\"gkBHk/\":[\"Crear canal\"],\"gkmjYT\":[\"Abandonar servidor\"],\"go1IWB\":[\"Este usuario te ha bloqueado.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introduce tu correo electrónico.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crear\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Inicio\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Volver al inicio de sesión\"],\"jpJ5AL\":[\"Código de recuperación\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"¡Bienvenido!\"],\"knjY+b\":[\"Puedes volver a abrirla más tarde, pero los mensajes enviados anteriormente se perderán para ambos.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Añadir amigo\"],\"lSGjX7\":[\"Un usuario se ha unido a la llamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canales\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nombre del grupo\"],\"mAYvqA\":[\"¡Hola!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edita tu identidad\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"No podrás acceder a tu cuenta a menos que te pongas en contacto con el soporte - sin embargo, tus datos no serán eliminados.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Establecer estado personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos en común\"],\"nbzz1A\":[\"Introducir el código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Este es el comienzo de tus notas.\"],\"o+XJ9D\":[\"Cambiar\"],\"oB4OOq\":[\"Expulsar miembros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Conectado\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar miembros temporalmente\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Por defecto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Cerrar sesión\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Ir al principio\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un usuario ha abandonado la llamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mi cuenta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todos los mensajes\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persona ha reaccionado\"],\"rxaY+5\":[\"No molestar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanzado\"],\"t43mBk\":[\"Reportar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Administrar Webhooks\"],\"tdTuUv\":[\"Bloquear usuario\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuario Bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Servidor de pruebas\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar miembro temporalmente\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Eliminar Rol\"],\"utrCh2\":[\"Aislar temporalmente a miembros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Acerca de\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descripción del servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoya el proyecto donando - ¡gracias!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar perfil del servidor\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Guárdalos en un lugar seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensajería\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar al canal\"],\"wL3cK8\":[\"Último\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Miembros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Camuflarse\"],\"xDAtGP\":[\"Enviar mensaje\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Expulsiones\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Términos de servicio\"],\"xpgPPI\":[\"Mis bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceptar solicitud\"],\"y1eoq1\":[\"Copiar enlace\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirmo que tengo al menos 18 años.\"],\"yDOdwQ\":[\"Gestión de usuarios\"],\"yIBLq8\":[\"Hablar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Cerrar\"],\"z0hW8A\":[\"Ver códigos de recuperación\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Aceptar\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Este es el comienzo de la conversación.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Más antiguo\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/es/messages.po b/components/i18n/catalogs/es/messages.po
new file mode 100644
index 0000000..d1ece4c
--- /dev/null
+++ b/components/i18n/catalogs/es/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: es\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 persona ha reaccionado"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Acerca de"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Aceptar solicitud"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Añadir amigo"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avanzado"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Todos los mensajes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Ya eres amigo de este usuario."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Apariencia"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Asignar roles"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplicación de autenticación"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Insignias"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Expulsar"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Expulsar miembro"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Expulsar miembros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Expulsiones"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloquear usuario"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloqueado"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Usuario Bloqueado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Rastreador de errores"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancelar solicitud de amistad"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "No se puede eliminar la cuenta hasta que tus servidores sean eliminados o transferidos a otra propiedad"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Cambiar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Cambiar avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Cambiar apodo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Descripción del canal"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nombre del canal"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Canales"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "¡Revisa tu correo electrónico!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Borrar estado personalizado"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Ajustes del cliente"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Cerrar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirmar acción"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Conectar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "El contenido inflinge una o varias leyes"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuar"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversaciones"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copiar ID del canal"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copiar ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copiar enlace"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copiar ID del mensaje"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copiar ID del servidor"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copiar texto"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copiar ID de usuario"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Crear"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Crear un grupo"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Crear un nuevo bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Crear un nuevo rol"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Crear una cuenta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Crear categoría"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Crear canal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Crear invitación"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Contraseña actual"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Establecer estado personalizado"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalización"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Ensordecer miembros"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Por defecto"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Eliminar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Eliminar canal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Eliminar mensaje"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Eliminar Rol"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Deshabilitar cuenta"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "No molestar"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Hecho"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Editar perfil del servidor"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Editar mensaje"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Edita tu identidad"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Correo electrónico"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Habilitar aplicación de autenticación"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Habilitar notificaciones de escritorio"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Inteoduce una nueva contraseña."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entrar al canal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Introducir el código"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Introduce tu contraseña actual."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Introduce tu nombre de usuario preferido."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "¡Los enlaces externos pueden ser peligrosos!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "¡Error al verificar!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Comentarios"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Encuentra una comunidad basada en tus hobbies o intereses."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Concentrado"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amigos"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generar códigos de recuperación"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generando invitación…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Volver al inicio de sesión"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Servidor de pruebas"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nombre del grupo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "¡Hola!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Inicio"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Confirmo que tengo al menos 18 años."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Ausente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisible"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invita a todos tus amigos, algunos bots geniales y organiza una gran fiesta."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Código de invitación"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invitar a otros"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Invitador"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitaciones"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Ir al actual"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Ir al principio"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Expulsar temporalmente"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Expulsar miembro temporalmente"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Expulsar miembros temporalmente"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Idioma"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Último"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Salir"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Abandonar grupo"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Abandonar servidor"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Haznos saber cómo podemos mejorar nuestra aplicación dándonos tu opinión."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Cerrar sesión"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Cerrar sesión en todas las otras sesiones"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Iniciar sesión"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Administrar personalización"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Administrar mensajes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Administrar apodos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Gestionar permisos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Administrar roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Administrar servidor"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Administrar Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marcar como leído"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marcar como no leído"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Camuflarse"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Miembros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mencionar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Solo menciones"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Enviar mensaje"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mensaje no cargado, click para verlo"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Mensaje recibido"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mensaje enviado"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "El mensaje ha sido enviado en otra plataforma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Mensajería"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Mover Miembros"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Silenciar Miembros"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Silenciado"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Amigos en común"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grupos en común"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mi cuenta"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mis bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nueva contraseña"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Apodo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ninguno"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notificaciones"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Desactivado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Comunicado oficial"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Servidor oficial"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Desconectado"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Aceptar"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Más antiguo"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Activado"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Una vez borrado, no hay vuelta atrás."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Conectado"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Abrir ajustes"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "General"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Contraseña"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permisos"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Elige un nombre de usuario por el cual quieres que la gente pueda encontrarte. Puedes cambiarlo más tarde desde la configuración."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Por favor, confirma esta acción utilizando el método seleccionado."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Introduce tu correo electrónico."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Guárdalos en un lugar seguro."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Escanea o usa el código en tu aplicación de autenticación."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Por favor, seleccione un método para autenticar su solicitud."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Política de privacidad"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Perfil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Leer historial de mensajes"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Motivo"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Código de recuperación"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrarse"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rechazar solicitud"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevancia"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Eliminar autenticador"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Eliminar avatares"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Eliminar amigo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Responder"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Respondiendo a"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Reportar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Reportar mensaje"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Reportar servidor"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Reportar usuario"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Reenviar verificación"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reiniciar"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Restablecer contraseña"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Restablecer Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nombre de rol"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roles"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Guardar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Guardar en tus notas"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notas guardadas"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Seleccionar idioma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Enviar embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Enviar mensajes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Envió un archivo"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Envió múltiples archivos"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Descripción del servidor"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nombre del servidor"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesiones"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Ajustes"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Varias personas están escribiendo…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sonidos"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Código fuente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Hablar"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Sugerir nuevas características"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Enviar comentarios"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Apoya el proyecto donando - ¡gracias!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Términos de servicio"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Canal de texto"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Este es el comienzo de la conversación."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Este es el comienzo de tus notas."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Este usuario te ha bloqueado."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Aislar temporalmente a miembros"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Desbloquear usuario"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Subir archivos"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Usuario"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Un usuario se ha unido a la llamada"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Un usuario ha abandonado la llamada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gestión de usuarios"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Ajustes de usuario"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nombre de usuario"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verificando tu cuenta…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Vídeo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Ver canal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Ver informes de errores activos actualmente."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Ver actualizaciones anteriores"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Ver códigos de recuperación"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Estás viendo mensajes antiguos"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Canal de voz"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Te hemos enviado un correo de verificación. Por favor, espera hasta 10 minutos para que llegue."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Bienvenido a"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "¡Bienvenido!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "También puedes hacer clic derecho en el icono de usuario en la parte superior izquierda, o hacer clic izquierdo si ya estás en la página de inicio."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Puedes volver a abrirla más tarde, pero los mensajes enviados anteriormente se perderán para ambos."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Puedes informar de problemas y comentarnos tus sugerencias aquí."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "No puedes deshacer esta acción."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "No tienes permiso para enviar mensajes en este canal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "No podrás acceder a tu cuenta a menos que te pongas en contacto con el soporte - sin embargo, tus datos no serán eliminados."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "No podrás volver a entrar a menos que te inviten de nuevo."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "¡Tu cuenta ha sido verificada!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Tus códigos de recuperación"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/es_419/messages.js b/components/i18n/catalogs/es_419/messages.js
new file mode 100644
index 0000000..f408e19
--- /dev/null
+++ b/components/i18n/catalogs/es_419/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Insignias\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como leído\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crear un nuevo rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Cerrar sesión en las demás sesiones\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Elige un nombre de usuario con el que quieras que te encuentren. Esto se puede cambiar más adelante en los ajustes.\"],\"/qQDwm\":[\"Generando invitación…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Reportar mensaje\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Enviar comentarios\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID del mensaje\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Salir del grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Puedes reportar problemas y comentarnos tus sugerencias directamente aquí.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueado\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"No podrás reingresar a menos que recibas una invitación nueva.\"],\"3QuNUr\":[\"Varias personas están escribiendo…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ya eres amigo/a de este/a usuario/a.\"],\"3T8ziB\":[\"Crear una cuenta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesiones\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Apodo\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Escoge un idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Descubre una comunidad que comparta tus aficiones o gustos.\"],\"572q5a\":[\"Reportar usuario\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como no leído\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cambiar apodo\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"General\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Desconectado\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuario\"],\"7SU2U9\":[\"Copiar ID del servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevancia\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nombre de usuario\"],\"7vhWI8\":[\"Nueva contraseña\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gestionar servidor\"],\"8FE4JE\":[\"Habilitar aplicación de autenticación\"],\"8VGnad\":[\"Generar códigos de recuperación\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Contraseña\"],\"8aTiea\":[\"Personalización\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ingresa tu nombre de usuario.\"],\"9D85wC\":[\"Copiar ID de usuario\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Restablecer Clave de acceso\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisos\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Banear\"],\"9nffag\":[\"Estás viendo mensajes antiguos\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crear un grupo\"],\"A9Rhec\":[\"Nombre del canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Ingresa una nueva contraseña.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Invitaciones\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"El mensaje ha sido enviado en otra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Eliminar tu estado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descripción del canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensajes\"],\"CkIs/i\":[\"Silenciar miembros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Contraseña actual\"],\"DDpDsO\":[\"Código de invitación\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hecho\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"El mensaje no ha cargado, haz clic para saltar\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Sugerir nuevas características\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Ninguno\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversaciones\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Envió un archivo adjunto\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crear categoría\"],\"F1uGNS\":[\"Gestionar apodos\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eliminar avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Habilitar notificaciones de escritorio\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Enfoque\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID del canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos en común\"],\"GhCPk1\":[\"Una vez eliminado, no hay vuelta atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ingresa tu contraseña actual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, selecciona un método para autenticar tu solicitud.\"],\"HAKBY9\":[\"Subir archivos\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas guardadas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificación\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover miembros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Envió múltiples archivos adjuntos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"No se puede eliminar la cuenta hasta que los servidores sean eliminados o transferidos\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar acción\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ver actualizaciones anteriores\"],\"JUJmXm\":[\"Por favor, confirma esta acción utilizando el método seleccionado.\"],\"JW8mxK\":[\"Guardar en tus notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Te damos la bienvenida a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"También puedes hacer clic derecho en el icono de usuario que está en la esquina superior izquierda, o hacer clic izquierdo si ya estás en el inicio.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar mensaje\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"El contenido viola una o más leyes\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonidos\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eliminar amigo\"],\"LcET2C\":[\"Política de privacidad\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Te hemos enviado un correo de verificación. Sé paciente, podría demorar hasta 10 minutos en llegar a tu bandeja de entrada.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nombre del servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Salir\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Mira reportes de errores activos aquí.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Tu opinión es importante para nosotros. Ayúdanos a mejorar nuestra aplicación compartiendo tus sugerencias y comentarios.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"¡Tu cuenta ha sido verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Correo electrónico\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"No tienes permiso para enviar mensajes en este canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reiniciar\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rechazar petición de amistad\"],\"PSP1MZ\":[\"Nombre del rol\"],\"PWOA0E\":[\"Solo menciones\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar embeds\"],\"PnzsrT\":[\"Código fuente\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Ver lo más reciente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensaje\"],\"QqoBlW\":[\"¡Revisa tu correo electrónico!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restablecer contraseña\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de errores\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Por favor, escanea o utiliza el código a continuación en tu aplicación de autenticación.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Eliminar autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gestionar mensajes\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gestionar roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ajustes\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invita a todos tus amigos, algunos bots divertidos, y organiza una fiesta inolvidable.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cambiar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensaje enviado\"],\"VJScHU\":[\"Razón\"],\"VKsaTi\":[\"Respondiendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ensordecer miembros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando tu cuenta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"¡Los enlaces externos pueden ser peligrosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ajustes del cliente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicación de autenticación\"],\"YcVBkL\":[\"Mensaje recibido\"],\"YirHq7\":[\"Comentarios\"],\"YlFpiA\":[\"¡Error al verificar!\"],\"Yp+Hi/\":[\"Abrir ajustes\"],\"Z5HWHd\":[\"Activado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Tus códigos de recuperación\"],\"aAIQg2\":[\"Apariencia\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"No puedes deshacer esta acción.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desactivado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deshabilitar cuenta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Leer historial de mensajes\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banear miembro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestionar permisos\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitador\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crear un nuevo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitar a otros\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Ajustes del usuario\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestionar personalización\"],\"fTMMeD\":[\"Crear invitación\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrarse\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar solicitud\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Asignar roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Denunciar\"],\"gkBHk/\":[\"Crear canal\"],\"gkmjYT\":[\"Salir del servidor\"],\"go1IWB\":[\"Este usuario te bloqueó.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ingresa tu correo electrónico.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crear\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Inicio\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Regresar al inicio de sesión\"],\"jpJ5AL\":[\"Código de recuperación\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"¡Te damos la bienvenida!\"],\"knjY+b\":[\"Puedes volver a abrirlo más tarde, pero desaparecerá en ambos lados.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Añadir amigo\"],\"lSGjX7\":[\"Un usuario se ha unido a la llamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canales\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nombre del grupo\"],\"mAYvqA\":[\"¡Hola!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Editar tu identidad\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"No podrás acceder a tu cuenta a menos que te pongas en contacto con el soporte; sin embargo, tus datos no serán eliminados.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Estado personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos en común\"],\"nbzz1A\":[\"Ingresa el código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Este es el comienzo de tus notas.\"],\"o+XJ9D\":[\"Cambiar\"],\"oB4OOq\":[\"Banear miembros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"En línea\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar miembros\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Por defecto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Cerrar sesión\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Ver el principio\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un usuario se ha ido de la llamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mi cuenta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todos los mensajes\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Una persona ha reaccionado\"],\"rxaY+5\":[\"No molestar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanzado\"],\"t43mBk\":[\"Reportar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gestionar webhooks\"],\"tdTuUv\":[\"Bloquear\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuario bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Servidor de pruebas\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar miembro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Eliminar rol\"],\"utrCh2\":[\"Suspender miembros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Acerca de\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descripción del servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoya el proyecto con tu donación. ¡Gracias!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identidad\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Por favor, guardarlos en un lugar seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensajes\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar al canal\"],\"wL3cK8\":[\"Último\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Miembros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Camuflarse\"],\"xDAtGP\":[\"Enviar mensaje\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Baneos\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Términos de servicio\"],\"xpgPPI\":[\"Mis bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceptar petición de amistad\"],\"y1eoq1\":[\"Copiar enlace\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirmo que tengo al menos 18 años.\"],\"yDOdwQ\":[\"Gestión de usuarios\"],\"yIBLq8\":[\"Hablar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Cerrar\"],\"z0hW8A\":[\"Ver códigos de recuperación\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Aceptar\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Aquí empieza el canal.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Más antiguo\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/es_419/messages.mjs b/components/i18n/catalogs/es_419/messages.mjs
new file mode 100644
index 0000000..b57fdee
--- /dev/null
+++ b/components/i18n/catalogs/es_419/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Insignias\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como leído\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crear un nuevo rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Cerrar sesión en las demás sesiones\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Elige un nombre de usuario con el que quieras que te encuentren. Esto se puede cambiar más adelante en los ajustes.\"],\"/qQDwm\":[\"Generando invitación…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Reportar mensaje\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Enviar comentarios\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID del mensaje\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Salir del grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Puedes reportar problemas y comentarnos tus sugerencias directamente aquí.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueado\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"No podrás reingresar a menos que recibas una invitación nueva.\"],\"3QuNUr\":[\"Varias personas están escribiendo…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ya eres amigo/a de este/a usuario/a.\"],\"3T8ziB\":[\"Crear una cuenta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesiones\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Apodo\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Escoge un idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Descubre una comunidad que comparta tus aficiones o gustos.\"],\"572q5a\":[\"Reportar usuario\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como no leído\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cambiar apodo\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"General\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Desconectado\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuario\"],\"7SU2U9\":[\"Copiar ID del servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevancia\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nombre de usuario\"],\"7vhWI8\":[\"Nueva contraseña\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gestionar servidor\"],\"8FE4JE\":[\"Habilitar aplicación de autenticación\"],\"8VGnad\":[\"Generar códigos de recuperación\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Contraseña\"],\"8aTiea\":[\"Personalización\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ingresa tu nombre de usuario.\"],\"9D85wC\":[\"Copiar ID de usuario\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Restablecer Clave de acceso\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisos\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Banear\"],\"9nffag\":[\"Estás viendo mensajes antiguos\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crear un grupo\"],\"A9Rhec\":[\"Nombre del canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Ingresa una nueva contraseña.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Invitaciones\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"El mensaje ha sido enviado en otra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Eliminar tu estado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descripción del canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensajes\"],\"CkIs/i\":[\"Silenciar miembros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Contraseña actual\"],\"DDpDsO\":[\"Código de invitación\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hecho\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"El mensaje no ha cargado, haz clic para saltar\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Sugerir nuevas características\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Ninguno\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversaciones\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Envió un archivo adjunto\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crear categoría\"],\"F1uGNS\":[\"Gestionar apodos\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eliminar avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Habilitar notificaciones de escritorio\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Enfoque\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID del canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos en común\"],\"GhCPk1\":[\"Una vez eliminado, no hay vuelta atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ingresa tu contraseña actual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, selecciona un método para autenticar tu solicitud.\"],\"HAKBY9\":[\"Subir archivos\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas guardadas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificación\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover miembros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Envió múltiples archivos adjuntos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"No se puede eliminar la cuenta hasta que los servidores sean eliminados o transferidos\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar acción\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ver actualizaciones anteriores\"],\"JUJmXm\":[\"Por favor, confirma esta acción utilizando el método seleccionado.\"],\"JW8mxK\":[\"Guardar en tus notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Te damos la bienvenida a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"También puedes hacer clic derecho en el icono de usuario que está en la esquina superior izquierda, o hacer clic izquierdo si ya estás en el inicio.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar mensaje\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"El contenido viola una o más leyes\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sonidos\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eliminar amigo\"],\"LcET2C\":[\"Política de privacidad\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Te hemos enviado un correo de verificación. Sé paciente, podría demorar hasta 10 minutos en llegar a tu bandeja de entrada.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nombre del servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Salir\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Mira reportes de errores activos aquí.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Tu opinión es importante para nosotros. Ayúdanos a mejorar nuestra aplicación compartiendo tus sugerencias y comentarios.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"¡Tu cuenta ha sido verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Correo electrónico\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"No tienes permiso para enviar mensajes en este canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reiniciar\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rechazar petición de amistad\"],\"PSP1MZ\":[\"Nombre del rol\"],\"PWOA0E\":[\"Solo menciones\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar embeds\"],\"PnzsrT\":[\"Código fuente\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Ver lo más reciente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensaje\"],\"QqoBlW\":[\"¡Revisa tu correo electrónico!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Restablecer contraseña\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de errores\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Por favor, escanea o utiliza el código a continuación en tu aplicación de autenticación.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Eliminar autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gestionar mensajes\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gestionar roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ajustes\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invita a todos tus amigos, algunos bots divertidos, y organiza una fiesta inolvidable.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cambiar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensaje enviado\"],\"VJScHU\":[\"Razón\"],\"VKsaTi\":[\"Respondiendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ensordecer miembros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando tu cuenta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"¡Los enlaces externos pueden ser peligrosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ajustes del cliente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicación de autenticación\"],\"YcVBkL\":[\"Mensaje recibido\"],\"YirHq7\":[\"Comentarios\"],\"YlFpiA\":[\"¡Error al verificar!\"],\"Yp+Hi/\":[\"Abrir ajustes\"],\"Z5HWHd\":[\"Activado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Tus códigos de recuperación\"],\"aAIQg2\":[\"Apariencia\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"No puedes deshacer esta acción.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desactivado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deshabilitar cuenta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Leer historial de mensajes\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banear miembro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestionar permisos\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitador\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crear un nuevo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitar a otros\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Ajustes del usuario\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestionar personalización\"],\"fTMMeD\":[\"Crear invitación\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrarse\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar solicitud\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Asignar roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Denunciar\"],\"gkBHk/\":[\"Crear canal\"],\"gkmjYT\":[\"Salir del servidor\"],\"go1IWB\":[\"Este usuario te bloqueó.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ingresa tu correo electrónico.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crear\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Inicio\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Regresar al inicio de sesión\"],\"jpJ5AL\":[\"Código de recuperación\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"¡Te damos la bienvenida!\"],\"knjY+b\":[\"Puedes volver a abrirlo más tarde, pero desaparecerá en ambos lados.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Añadir amigo\"],\"lSGjX7\":[\"Un usuario se ha unido a la llamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canales\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nombre del grupo\"],\"mAYvqA\":[\"¡Hola!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Editar tu identidad\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"No podrás acceder a tu cuenta a menos que te pongas en contacto con el soporte; sin embargo, tus datos no serán eliminados.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Estado personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos en común\"],\"nbzz1A\":[\"Ingresa el código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Este es el comienzo de tus notas.\"],\"o+XJ9D\":[\"Cambiar\"],\"oB4OOq\":[\"Banear miembros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"En línea\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar miembros\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Por defecto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Cerrar sesión\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Ver el principio\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un usuario se ha ido de la llamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mi cuenta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todos los mensajes\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Una persona ha reaccionado\"],\"rxaY+5\":[\"No molestar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanzado\"],\"t43mBk\":[\"Reportar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gestionar webhooks\"],\"tdTuUv\":[\"Bloquear\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuario bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Servidor de pruebas\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar miembro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Eliminar rol\"],\"utrCh2\":[\"Suspender miembros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Acerca de\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descripción del servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoya el proyecto con tu donación. ¡Gracias!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identidad\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Por favor, guardarlos en un lugar seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensajes\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar al canal\"],\"wL3cK8\":[\"Último\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Miembros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Camuflarse\"],\"xDAtGP\":[\"Enviar mensaje\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Baneos\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Términos de servicio\"],\"xpgPPI\":[\"Mis bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceptar petición de amistad\"],\"y1eoq1\":[\"Copiar enlace\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirmo que tengo al menos 18 años.\"],\"yDOdwQ\":[\"Gestión de usuarios\"],\"yIBLq8\":[\"Hablar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Cerrar\"],\"z0hW8A\":[\"Ver códigos de recuperación\"],\"z0t9bb\":[\"Iniciar sesión\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Aceptar\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Aquí empieza el canal.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Más antiguo\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/es_419/messages.po b/components/i18n/catalogs/es_419/messages.po
new file mode 100644
index 0000000..def5721
--- /dev/null
+++ b/components/i18n/catalogs/es_419/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: es_419\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "Una persona ha reaccionado"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Acerca de"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Aceptar petición de amistad"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Añadir amigo"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avanzado"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Todos los mensajes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Ya eres amigo/a de este/a usuario/a."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Apariencia"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Asignar roles"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplicación de autenticación"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Insignias"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Banear"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Banear miembro"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Banear miembros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Baneos"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloquear"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloqueado"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Usuario bloqueado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Rastreador de errores"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancelar solicitud"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "No se puede eliminar la cuenta hasta que los servidores sean eliminados o transferidos"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Cambiar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Cambiar avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Cambiar apodo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Descripción del canal"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nombre del canal"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Canales"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "¡Revisa tu correo electrónico!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Eliminar tu estado"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Ajustes del cliente"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Cerrar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirmar acción"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Conectar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "El contenido viola una o más leyes"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuar"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversaciones"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copiar ID del canal"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copiar ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copiar enlace"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copiar ID del mensaje"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copiar ID del servidor"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copiar texto"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copiar ID de usuario"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Crear"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Crear un grupo"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Crear un nuevo bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Crear un nuevo rol"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Crear una cuenta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Crear categoría"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Crear canal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Crear invitación"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Contraseña actual"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Estado personalizado"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalización"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Ensordecer miembros"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Por defecto"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Eliminar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Eliminar canal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Eliminar mensaje"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Eliminar rol"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Deshabilitar cuenta"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "No molestar"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Hecho"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Editar identidad"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Editar mensaje"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Editar tu identidad"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Correo electrónico"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Habilitar aplicación de autenticación"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Habilitar notificaciones de escritorio"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Ingresa una nueva contraseña."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entrar al canal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Ingresa el código"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Ingresa tu contraseña actual."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Ingresa tu nombre de usuario."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "¡Los enlaces externos pueden ser peligrosos!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "¡Error al verificar!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Comentarios"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Descubre una comunidad que comparta tus aficiones o gustos."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Enfoque"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amigos"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generar códigos de recuperación"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generando invitación…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Regresar al inicio de sesión"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Servidor de pruebas"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nombre del grupo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "¡Hola!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Inicio"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Confirmo que tengo al menos 18 años."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Ausente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisible"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invita a todos tus amigos, algunos bots divertidos, y organiza una fiesta inolvidable."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Código de invitación"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invitar a otros"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Invitador"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitaciones"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Ver lo más reciente"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Ver el principio"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Expulsar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Expulsar miembro"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Expulsar miembros"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Idioma"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Último"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Salir"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Salir del grupo"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Salir del servidor"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Tu opinión es importante para nosotros. Ayúdanos a mejorar nuestra aplicación compartiendo tus sugerencias y comentarios."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Cerrar sesión"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Cerrar sesión en las demás sesiones"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Iniciar sesión"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Gestionar personalización"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Gestionar mensajes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Gestionar apodos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Gestionar permisos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Gestionar roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Gestionar servidor"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Gestionar webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marcar como leído"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marcar como no leído"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Camuflarse"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Miembros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mencionar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Solo menciones"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Enviar mensaje"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "El mensaje no ha cargado, haz clic para saltar"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Mensaje recibido"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mensaje enviado"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "El mensaje ha sido enviado en otra plataforma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Mensajes"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Mover miembros"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Silenciar miembros"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Silenciado"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Amigos en común"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grupos en común"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mi cuenta"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mis bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nueva contraseña"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Apodo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ninguno"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notificaciones"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Desactivado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Comunicado oficial"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Servidor oficial"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Desconectado"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Aceptar"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Más antiguo"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Activado"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Una vez eliminado, no hay vuelta atrás."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "En línea"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Abrir ajustes"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "General"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Contraseña"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permisos"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Elige un nombre de usuario con el que quieras que te encuentren. Esto se puede cambiar más adelante en los ajustes."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Por favor, confirma esta acción utilizando el método seleccionado."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Ingresa tu correo electrónico."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Por favor, guardarlos en un lugar seguro."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Por favor, escanea o utiliza el código a continuación en tu aplicación de autenticación."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Por favor, selecciona un método para autenticar tu solicitud."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Política de privacidad"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Perfil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Leer historial de mensajes"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Razón"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Código de recuperación"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrarse"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rechazar petición de amistad"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevancia"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Eliminar autenticador"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Eliminar avatares"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Eliminar amigo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Responder"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Respondiendo a"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Denunciar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Reportar mensaje"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Reportar servidor"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Reportar usuario"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Reenviar verificación"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reiniciar"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Restablecer contraseña"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Restablecer Clave de acceso"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nombre del rol"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roles"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Guardar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Guardar en tus notas"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notas guardadas"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Escoge un idioma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Enviar embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Enviar mensajes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Envió un archivo adjunto"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Envió múltiples archivos adjuntos"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Descripción del servidor"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nombre del servidor"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesiones"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Ajustes"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Varias personas están escribiendo…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sonidos"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Código fuente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Hablar"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Sugerir nuevas características"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Enviar comentarios"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Apoya el proyecto con tu donación. ¡Gracias!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Términos de servicio"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Canal de texto"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Aquí empieza el canal."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Este es el comienzo de tus notas."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Este usuario te bloqueó."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Suspender miembros"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Desbloquear"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Subir archivos"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Usuario"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Un usuario se ha unido a la llamada"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Un usuario se ha ido de la llamada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gestión de usuarios"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Ajustes del usuario"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nombre de usuario"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verificando tu cuenta…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Ver canal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Mira reportes de errores activos aquí."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Ver actualizaciones anteriores"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Ver códigos de recuperación"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Estás viendo mensajes antiguos"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Canal de voz"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Te hemos enviado un correo de verificación. Sé paciente, podría demorar hasta 10 minutos en llegar a tu bandeja de entrada."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Te damos la bienvenida a"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "¡Te damos la bienvenida!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "También puedes hacer clic derecho en el icono de usuario que está en la esquina superior izquierda, o hacer clic izquierdo si ya estás en el inicio."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Puedes volver a abrirlo más tarde, pero desaparecerá en ambos lados."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Puedes reportar problemas y comentarnos tus sugerencias directamente aquí."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "No puedes deshacer esta acción."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "No tienes permiso para enviar mensajes en este canal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "No podrás acceder a tu cuenta a menos que te pongas en contacto con el soporte; sin embargo, tus datos no serán eliminados."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "No podrás reingresar a menos que recibas una invitación nueva."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "¡Tu cuenta ha sido verificada!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Tus códigos de recuperación"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/et/messages.js b/components/i18n/catalogs/et/messages.js
new file mode 100644
index 0000000..50d63c1
--- /dev/null
+++ b/components/i18n/catalogs/et/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Vaigistatud\"],\"+YFgJi\":[\"Tunnustused\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Märgi loetuks\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Loo uus roll\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logi välja kõikidest teistest sessioonidest\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vali kasutajanimi, millega inimesed saavad sind leida. Seda saab hiljem muuta sinu kasutaja seadetest.\"],\"/qQDwm\":[\"Loon kutset…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Teata sõnumist\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Tagasiside edastamine\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopeeri sõnumi ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Lahku grupist\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Te võite teatada probleemidest ja arutada parandusi meiega otse siin.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokeeritud\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Te ei saa uuesti ühineda kui teid pole uuesti kutsutud.\"],\"3QuNUr\":[\"Mitu inimest trükivad…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Kasutaja on teie sõbralistis.\"],\"3T8ziB\":[\"Loo kont\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioonid\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Hüüdnimi\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Valige oma keel\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Leia kogukond, mis põhineb teie hobidel või huvidel.\"],\"572q5a\":[\"Aruande user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Märgi mitteloetuks\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Muuda hüüdnime\"],\"5dJK4M\":[\"Rollid\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Ülevaade\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Võrgust väljas\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Kasutaja\"],\"7SU2U9\":[\"Kopeeri serveri ID\"],\"7VpPHA\":[\"Kinnita\"],\"7dZnmw\":[\"Asjakohasus\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Kasutajanimi\"],\"7vhWI8\":[\"Uus parool\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Halda serverit\"],\"8FE4JE\":[\"Luba autentimisrakendus\"],\"8VGnad\":[\"Loo taastekoodid\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Parool\"],\"8aTiea\":[\"Kohandamine\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Sisestage oma eelistatud kasutajanimi.\"],\"9D85wC\":[\"Kopeeri kasutaja ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Õigused\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Keela\"],\"9nffag\":[\"Vaata vanemaid sõnumeid\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblokeeri kasutaja\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Loo grupp\"],\"A9Rhec\":[\"Kanali nimi\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Sisestage uus parool.\"],\"AU7IRi\":[\"Tekstikanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Helikanal\"],\"BHsrDx\":[\"Kutsed\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Sõnum saadeti teisele platvormile\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vaata kanaleid\"],\"CK7kdd\":[\"Eemalda staatus\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanali kirjeldus\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Saada sõnumeid\"],\"CkIs/i\":[\"Vaigista liikmeid\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Praegune parool\"],\"DDpDsO\":[\"Kutsekood\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Ametlik teatis\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Valmis\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Sõnumit ei laaditud, klõpsa hüppamiseks\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Saada soovitus\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Viska välja\"],\"EdQY6l\":[\"Mitte ükski\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Vestlused\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Saatis manuse\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Loo kategooria\"],\"F1uGNS\":[\"Halda hüüdnimesid\"],\"FEr96N\":[\"Teema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eemalda avatare/kehastusi\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Luba töölaua teavitused\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fookus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopeeri kanali ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Ühised grupid\"],\"GhCPk1\":[\"Peale kustutamist tagasiteed kahjuks pole.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Sisesta oma praegune parool.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Valige oma taotluse autentimise meetod.\"],\"HAKBY9\":[\"Lae faile\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Salvestatud märkmed\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Saada kinnituskood uuesti\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Liiguta liikmeid\"],\"ImOQa9\":[\"Vasta\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Saatis mitu manust\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kontot ei saa kustutada enne, kui serverid on kustutatud või üle antud\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Kinnita tegevus\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vaadake vanemaid värskendusi\"],\"JUJmXm\":[\"Palun kinnita see toiming valitud meetodi abil.\"],\"JW8mxK\":[\"Salvesta oma märkmete hulka\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Tere tulemast\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Samuti on võimalik ekraani üleval vasakus nurgas vajutada paremat hiireklahvi kasutaja ikoonil või vasakut hiireklahvi kui koduvaade on ees.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Kustuta sõnum\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Sisu rikub ühte või mitut seadust\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Helid\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Ametlik server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eemalda sõber\"],\"LcET2C\":[\"Privaatsuspoliitika\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Oleme sulle saatnud kinnituskirja e-posti teel. Palun oota kuni 10 minutit, et see kohale jõuaks.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Serveri nimi\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Lahku\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Vaata hetkel aktiivsete vigade listi siit.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Anna meile teada, kuidas me saame oma rakendust parandada, andes meile tagasisidet.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Teie konto on kinnitatud!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-post\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Teil puudub õigus saata sõnumeid selles kanalis.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Lähtesta\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Lükka sõbrakutse tagasi\"],\"PSP1MZ\":[\"Rolli nimi\"],\"PWOA0E\":[\"Ainult mainitused\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Saada manused\"],\"PnzsrT\":[\"Lähtekood (source)\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Liigu praeguste juurde\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Eemal\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Muuda sõnumit\"],\"QqoBlW\":[\"Kontrolli oma postkasti!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Muuda parool\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Vigade jälgija\"],\"S3bIKF\":[\"Kopeeri ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Palun skaneeri allolev kood või sisesta see autentimisrakendusse.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Eemalda autentikaator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Halda sõnumeid\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Halda rolle\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Sätted\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Kutsu kõik oma sõbrad, mõned lahedad robotid, ja viska suur pidu.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Muuda avatari/kehastust\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Saadetud sõnum\"],\"VJScHU\":[\"Põhjus\"],\"VKsaTi\":[\"Vastamine\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Summuta liikmeid\"],\"VsHxv+\":[\"Kopeeri tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Teie konto kontrollimine…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Välised lingid võivad olla pahatahtlikud!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Kliendisätted\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentimise rakendus\"],\"YcVBkL\":[\"Saabuv sõnum\"],\"YirHq7\":[\"Tagasiside\"],\"YlFpiA\":[\"Kinnitamine nurjus!\"],\"Yp+Hi/\":[\"Ava sätted\"],\"Z5HWHd\":[\"Lülita sisse\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Teie taastekoodid\"],\"aAIQg2\":[\"Välimus\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Seda toimingut ei saa tagasi võtta.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Lülita välja\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Keela konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Loe sõnumi ajalugu\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Keela liige\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Õiguste haldamine\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Kutsuja\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Kustuta\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Tühista\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Loo uus bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Kutsu teisi\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nähtamatu\"],\"ekfzWq\":[\"Kasutajasätted\"],\"etgedT\":[\"Emodžid\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Kohanduste haldamine\"],\"fTMMeD\":[\"Loo kutse\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registreeru\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Tühista sõbrakutse\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Rollide määramine\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Aruanne\"],\"gkBHk/\":[\"Loo kanal\"],\"gkmjYT\":[\"Lahku serverist\"],\"go1IWB\":[\"See kasutaja on teid blokeerinud.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Kustuta kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Palun sisestage oma e-post.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Loo\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Kodu\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Teated\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Ühendage\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mainitus\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Mine tagasi sisse logima\"],\"jpJ5AL\":[\"Taastamiskood\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Tere tulemast!\"],\"knjY+b\":[\"Sa saad selle hiljem uuesti avada, kuid see kaob mõlemalt poolt.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Lisa sõber\"],\"lSGjX7\":[\"Kasutaja ühines helikõnega\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalid\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupi nimi\"],\"mAYvqA\":[\"Tere!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Muuda oma identiteeti\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Sa ei saa oma kontole juurde pääseda, kui sa ei kontakteeru toeosakonnaga - siiski, sinu andmed ei kustutata.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Kohandatud staatus\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Ühised sõbrad\"],\"nbzz1A\":[\"Sisestage kood\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Siin on teie märkmete alguspunkt.\"],\"o+XJ9D\":[\"Muuda\"],\"oB4OOq\":[\"Keela liikmeid\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Kättesaadav\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Eemalda liikmeid\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Vaikimisi\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logi välja\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hüppa tagasi algusesse\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Kasutaja lahkus helikõnest\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minu kasutaja\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Kõik sõnumid\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 inimene reageeris\"],\"rxaY+5\":[\"Mitte segada\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Edasijõudnud\"],\"t43mBk\":[\"Aruandeserver\"],\"tBmnPU\":[\"Sõbrad\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Veebikonksude haldamine\"],\"tdTuUv\":[\"Blokeeri kasutaja\"],\"tfDRzk\":[\"Salvesta\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokeeritud kasutaja\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mine testijate serverisse\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Eemalda liige\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Kustuta roll\"],\"utrCh2\":[\"Timeout liikmed\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Umbes\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serveri kirjeldus\"],\"v1kQyJ\":[\"Veebihookid\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profiil\"],\"vJum3e\":[\"Toetage projekti annetusega - aitäh!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Muuda identiteeti\"],\"vXIe7J\":[\"Keel\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Palun salvestage need turvalisse asukohta.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Sõnumite saatmine\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Sisene kanalisse\"],\"wL3cK8\":[\"Viimane\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Liikmed\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskeraad\"],\"xDAtGP\":[\"Sõnum\"],\"xGVfLh\":[\"Jätka\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Keelud\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Teenuse tingimused\"],\"xpgPPI\":[\"Minu botid\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aktsepteeri sõbrakutse\"],\"y1eoq1\":[\"Kopeeri link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ma kinnitan, et olen vähemalt 18 aastane.\"],\"yDOdwQ\":[\"Kasutajahaldus\"],\"yIBLq8\":[\"Räägi\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Sulge\"],\"z0hW8A\":[\"Taastekoodide Kuvamine\"],\"z0t9bb\":[\"Logi sisse\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Siit algab teie vestlus.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vanim\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/et/messages.mjs b/components/i18n/catalogs/et/messages.mjs
new file mode 100644
index 0000000..49f1c03
--- /dev/null
+++ b/components/i18n/catalogs/et/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Vaigistatud\"],\"+YFgJi\":[\"Tunnustused\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Märgi loetuks\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Loo uus roll\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logi välja kõikidest teistest sessioonidest\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vali kasutajanimi, millega inimesed saavad sind leida. Seda saab hiljem muuta sinu kasutaja seadetest.\"],\"/qQDwm\":[\"Loon kutset…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Teata sõnumist\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Tagasiside edastamine\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopeeri sõnumi ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Lahku grupist\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Te võite teatada probleemidest ja arutada parandusi meiega otse siin.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokeeritud\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Te ei saa uuesti ühineda kui teid pole uuesti kutsutud.\"],\"3QuNUr\":[\"Mitu inimest trükivad…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Kasutaja on teie sõbralistis.\"],\"3T8ziB\":[\"Loo kont\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioonid\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Hüüdnimi\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Valige oma keel\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Leia kogukond, mis põhineb teie hobidel või huvidel.\"],\"572q5a\":[\"Aruande user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Märgi mitteloetuks\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Muuda hüüdnime\"],\"5dJK4M\":[\"Rollid\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Ülevaade\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Võrgust väljas\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Kasutaja\"],\"7SU2U9\":[\"Kopeeri serveri ID\"],\"7VpPHA\":[\"Kinnita\"],\"7dZnmw\":[\"Asjakohasus\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Kasutajanimi\"],\"7vhWI8\":[\"Uus parool\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Halda serverit\"],\"8FE4JE\":[\"Luba autentimisrakendus\"],\"8VGnad\":[\"Loo taastekoodid\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Parool\"],\"8aTiea\":[\"Kohandamine\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Sisestage oma eelistatud kasutajanimi.\"],\"9D85wC\":[\"Kopeeri kasutaja ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Õigused\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Keela\"],\"9nffag\":[\"Vaata vanemaid sõnumeid\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblokeeri kasutaja\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Loo grupp\"],\"A9Rhec\":[\"Kanali nimi\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Sisestage uus parool.\"],\"AU7IRi\":[\"Tekstikanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Helikanal\"],\"BHsrDx\":[\"Kutsed\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Sõnum saadeti teisele platvormile\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vaata kanaleid\"],\"CK7kdd\":[\"Eemalda staatus\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanali kirjeldus\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Saada sõnumeid\"],\"CkIs/i\":[\"Vaigista liikmeid\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Praegune parool\"],\"DDpDsO\":[\"Kutsekood\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Ametlik teatis\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Valmis\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Sõnumit ei laaditud, klõpsa hüppamiseks\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Saada soovitus\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Viska välja\"],\"EdQY6l\":[\"Mitte ükski\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Vestlused\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Saatis manuse\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Loo kategooria\"],\"F1uGNS\":[\"Halda hüüdnimesid\"],\"FEr96N\":[\"Teema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Eemalda avatare/kehastusi\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Luba töölaua teavitused\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fookus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopeeri kanali ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Ühised grupid\"],\"GhCPk1\":[\"Peale kustutamist tagasiteed kahjuks pole.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Sisesta oma praegune parool.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Valige oma taotluse autentimise meetod.\"],\"HAKBY9\":[\"Lae faile\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Salvestatud märkmed\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Saada kinnituskood uuesti\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Liiguta liikmeid\"],\"ImOQa9\":[\"Vasta\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Saatis mitu manust\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kontot ei saa kustutada enne, kui serverid on kustutatud või üle antud\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Kinnita tegevus\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vaadake vanemaid värskendusi\"],\"JUJmXm\":[\"Palun kinnita see toiming valitud meetodi abil.\"],\"JW8mxK\":[\"Salvesta oma märkmete hulka\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Tere tulemast\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Samuti on võimalik ekraani üleval vasakus nurgas vajutada paremat hiireklahvi kasutaja ikoonil või vasakut hiireklahvi kui koduvaade on ees.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Kustuta sõnum\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Sisu rikub ühte või mitut seadust\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Helid\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Ametlik server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Eemalda sõber\"],\"LcET2C\":[\"Privaatsuspoliitika\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Oleme sulle saatnud kinnituskirja e-posti teel. Palun oota kuni 10 minutit, et see kohale jõuaks.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Serveri nimi\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Lahku\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Vaata hetkel aktiivsete vigade listi siit.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Anna meile teada, kuidas me saame oma rakendust parandada, andes meile tagasisidet.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Teie konto on kinnitatud!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-post\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Teil puudub õigus saata sõnumeid selles kanalis.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Lähtesta\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Lükka sõbrakutse tagasi\"],\"PSP1MZ\":[\"Rolli nimi\"],\"PWOA0E\":[\"Ainult mainitused\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Saada manused\"],\"PnzsrT\":[\"Lähtekood (source)\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Liigu praeguste juurde\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Eemal\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Muuda sõnumit\"],\"QqoBlW\":[\"Kontrolli oma postkasti!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Muuda parool\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Vigade jälgija\"],\"S3bIKF\":[\"Kopeeri ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Palun skaneeri allolev kood või sisesta see autentimisrakendusse.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Eemalda autentikaator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Halda sõnumeid\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Halda rolle\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Sätted\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Kutsu kõik oma sõbrad, mõned lahedad robotid, ja viska suur pidu.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Muuda avatari/kehastust\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Saadetud sõnum\"],\"VJScHU\":[\"Põhjus\"],\"VKsaTi\":[\"Vastamine\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Summuta liikmeid\"],\"VsHxv+\":[\"Kopeeri tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Teie konto kontrollimine…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Välised lingid võivad olla pahatahtlikud!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Kliendisätted\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentimise rakendus\"],\"YcVBkL\":[\"Saabuv sõnum\"],\"YirHq7\":[\"Tagasiside\"],\"YlFpiA\":[\"Kinnitamine nurjus!\"],\"Yp+Hi/\":[\"Ava sätted\"],\"Z5HWHd\":[\"Lülita sisse\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Teie taastekoodid\"],\"aAIQg2\":[\"Välimus\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Seda toimingut ei saa tagasi võtta.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Lülita välja\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Keela konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Loe sõnumi ajalugu\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Keela liige\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Õiguste haldamine\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Kutsuja\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Kustuta\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Tühista\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Loo uus bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Kutsu teisi\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nähtamatu\"],\"ekfzWq\":[\"Kasutajasätted\"],\"etgedT\":[\"Emodžid\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Kohanduste haldamine\"],\"fTMMeD\":[\"Loo kutse\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registreeru\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Tühista sõbrakutse\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Rollide määramine\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Aruanne\"],\"gkBHk/\":[\"Loo kanal\"],\"gkmjYT\":[\"Lahku serverist\"],\"go1IWB\":[\"See kasutaja on teid blokeerinud.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Kustuta kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Palun sisestage oma e-post.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Loo\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Kodu\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Teated\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Ühendage\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mainitus\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Mine tagasi sisse logima\"],\"jpJ5AL\":[\"Taastamiskood\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Tere tulemast!\"],\"knjY+b\":[\"Sa saad selle hiljem uuesti avada, kuid see kaob mõlemalt poolt.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Lisa sõber\"],\"lSGjX7\":[\"Kasutaja ühines helikõnega\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalid\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupi nimi\"],\"mAYvqA\":[\"Tere!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Muuda oma identiteeti\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Sa ei saa oma kontole juurde pääseda, kui sa ei kontakteeru toeosakonnaga - siiski, sinu andmed ei kustutata.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Kohandatud staatus\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Ühised sõbrad\"],\"nbzz1A\":[\"Sisestage kood\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Siin on teie märkmete alguspunkt.\"],\"o+XJ9D\":[\"Muuda\"],\"oB4OOq\":[\"Keela liikmeid\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Kättesaadav\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Eemalda liikmeid\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Vaikimisi\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logi välja\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hüppa tagasi algusesse\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Kasutaja lahkus helikõnest\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minu kasutaja\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Kõik sõnumid\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 inimene reageeris\"],\"rxaY+5\":[\"Mitte segada\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Edasijõudnud\"],\"t43mBk\":[\"Aruandeserver\"],\"tBmnPU\":[\"Sõbrad\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Veebikonksude haldamine\"],\"tdTuUv\":[\"Blokeeri kasutaja\"],\"tfDRzk\":[\"Salvesta\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokeeritud kasutaja\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mine testijate serverisse\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Eemalda liige\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Kustuta roll\"],\"utrCh2\":[\"Timeout liikmed\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Umbes\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serveri kirjeldus\"],\"v1kQyJ\":[\"Veebihookid\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profiil\"],\"vJum3e\":[\"Toetage projekti annetusega - aitäh!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Muuda identiteeti\"],\"vXIe7J\":[\"Keel\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Palun salvestage need turvalisse asukohta.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Sõnumite saatmine\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Sisene kanalisse\"],\"wL3cK8\":[\"Viimane\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Liikmed\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskeraad\"],\"xDAtGP\":[\"Sõnum\"],\"xGVfLh\":[\"Jätka\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Keelud\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Teenuse tingimused\"],\"xpgPPI\":[\"Minu botid\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aktsepteeri sõbrakutse\"],\"y1eoq1\":[\"Kopeeri link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ma kinnitan, et olen vähemalt 18 aastane.\"],\"yDOdwQ\":[\"Kasutajahaldus\"],\"yIBLq8\":[\"Räägi\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Sulge\"],\"z0hW8A\":[\"Taastekoodide Kuvamine\"],\"z0t9bb\":[\"Logi sisse\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Siit algab teie vestlus.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vanim\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/et/messages.po b/components/i18n/catalogs/et/messages.po
new file mode 100644
index 0000000..0e901ba
--- /dev/null
+++ b/components/i18n/catalogs/et/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: et\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 inimene reageeris"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Umbes"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Aktsepteeri sõbrakutse"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Lisa sõber"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Edasijõudnud"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Kõik sõnumid"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Kasutaja on teie sõbralistis."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Välimus"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Rollide määramine"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Autentimise rakendus"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Tunnustused"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Keela"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Keela liige"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Keela liikmeid"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Keelud"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blokeeri kasutaja"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blokeeritud"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blokeeritud kasutaja"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Vigade jälgija"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Tühista"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Tühista sõbrakutse"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Kontot ei saa kustutada enne, kui serverid on kustutatud või üle antud"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Muuda"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Muuda avatari/kehastust"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Muuda hüüdnime"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanali kirjeldus"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanali nimi"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanalid"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Kontrolli oma postkasti!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Eemalda staatus"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Kliendisätted"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Sulge"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Kinnita"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Kinnita tegevus"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Ühendage"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Sisu rikub ühte või mitut seadust"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Jätka"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Vestlused"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopeeri kanali ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopeeri ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopeeri link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopeeri sõnumi ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopeeri serveri ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopeeri tekst"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopeeri kasutaja ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Loo"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Loo grupp"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Loo uus bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Loo uus roll"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Loo kont"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Loo kategooria"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Loo kanal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Loo kutse"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Praegune parool"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Kohandatud staatus"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Kohandamine"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Summuta liikmeid"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Vaikimisi"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Kustuta"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Kustuta kanal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Kustuta sõnum"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Kustuta roll"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Keela konto"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Mitte segada"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Valmis"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Muuda identiteeti"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Muuda sõnumit"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Muuda oma identiteeti"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-post"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emodžid"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Luba autentimisrakendus"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Luba töölaua teavitused"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Sisestage uus parool."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Sisene kanalisse"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Sisestage kood"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Sisesta oma praegune parool."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Sisestage oma eelistatud kasutajanimi."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Välised lingid võivad olla pahatahtlikud!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Kinnitamine nurjus!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Tagasiside"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Leia kogukond, mis põhineb teie hobidel või huvidel."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fookus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Sõbrad"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Loo taastekoodid"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Loon kutset…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Mine tagasi sisse logima"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Mine testijate serverisse"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Grupi nimi"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Tere!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Kodu"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Ma kinnitan, et olen vähemalt 18 aastane."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Eemal"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Nähtamatu"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Kutsu kõik oma sõbrad, mõned lahedad robotid, ja viska suur pidu."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kutsekood"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Kutsu teisi"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Kutsuja"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Kutsed"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Liigu praeguste juurde"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Hüppa tagasi algusesse"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Viska välja"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Eemalda liige"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Eemalda liikmeid"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Keel"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Viimane"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Lahku"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Lahku grupist"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Lahku serverist"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Anna meile teada, kuidas me saame oma rakendust parandada, andes meile tagasisidet."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Logi välja"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Logi välja kõikidest teistest sessioonidest"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Logi sisse"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Kohanduste haldamine"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Halda sõnumeid"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Halda hüüdnimesid"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Õiguste haldamine"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Halda rolle"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Halda serverit"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Veebikonksude haldamine"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Märgi loetuks"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Märgi mitteloetuks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskeraad"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Liikmed"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mainitus"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Ainult mainitused"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Sõnum"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Sõnumit ei laaditud, klõpsa hüppamiseks"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Saabuv sõnum"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Saadetud sõnum"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Sõnum saadeti teisele platvormile"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Sõnumite saatmine"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Liiguta liikmeid"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Vaigista liikmeid"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Vaigistatud"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Ühised sõbrad"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Ühised grupid"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Minu kasutaja"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Minu botid"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Uus parool"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Hüüdnimi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Mitte ükski"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Teated"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Lülita välja"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Ametlik teatis"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Ametlik server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Võrgust väljas"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Vanim"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Lülita sisse"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Peale kustutamist tagasiteed kahjuks pole."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Kättesaadav"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Ava sätted"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Ülevaade"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Parool"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Õigused"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Vali kasutajanimi, millega inimesed saavad sind leida. Seda saab hiljem muuta sinu kasutaja seadetest."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Palun kinnita see toiming valitud meetodi abil."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Palun sisestage oma e-post."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Palun salvestage need turvalisse asukohta."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Palun skaneeri allolev kood või sisesta see autentimisrakendusse."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Valige oma taotluse autentimise meetod."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privaatsuspoliitika"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profiil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Loe sõnumi ajalugu"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Põhjus"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Taastamiskood"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registreeru"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Lükka sõbrakutse tagasi"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Asjakohasus"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Eemalda autentikaator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Eemalda avatare/kehastusi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Eemalda sõber"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Vasta"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Vastamine"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Aruanne"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Teata sõnumist"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Aruandeserver"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Aruande user"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Saada kinnituskood uuesti"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Lähtesta"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Muuda parool"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rolli nimi"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Rollid"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Salvesta"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Salvesta oma märkmete hulka"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Salvestatud märkmed"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Valige oma keel"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Saada manused"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Saada sõnumeid"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Saatis manuse"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Saatis mitu manust"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Serveri kirjeldus"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Serveri nimi"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessioonid"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Sätted"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Mitu inimest trükivad…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Helid"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Lähtekood (source)"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Räägi"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Saada soovitus"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Tagasiside edastamine"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Toetage projekti annetusega - aitäh!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Teenuse tingimused"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Tekstikanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Teema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Siit algab teie vestlus."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Siin on teie märkmete alguspunkt."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "See kasutaja on teid blokeerinud."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout liikmed"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Deblokeeri kasutaja"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Lae faile"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Kasutaja"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Kasutaja ühines helikõnega"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Kasutaja lahkus helikõnest"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Kasutajahaldus"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Kasutajasätted"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Kasutajanimi"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Teie konto kontrollimine…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Vaata kanaleid"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Vaata hetkel aktiivsete vigade listi siit."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Vaadake vanemaid värskendusi"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Taastekoodide Kuvamine"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Vaata vanemaid sõnumeid"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Helikanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Oleme sulle saatnud kinnituskirja e-posti teel. Palun oota kuni 10 minutit, et see kohale jõuaks."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Veebihookid"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Tere tulemast"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Tere tulemast!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Samuti on võimalik ekraani üleval vasakus nurgas vajutada paremat hiireklahvi kasutaja ikoonil või vasakut hiireklahvi kui koduvaade on ees."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Sa saad selle hiljem uuesti avada, kuid see kaob mõlemalt poolt."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Te võite teatada probleemidest ja arutada parandusi meiega otse siin."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Seda toimingut ei saa tagasi võtta."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Teil puudub õigus saata sõnumeid selles kanalis."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Sa ei saa oma kontole juurde pääseda, kui sa ei kontakteeru toeosakonnaga - siiski, sinu andmed ei kustutata."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Te ei saa uuesti ühineda kui teid pole uuesti kutsutud."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Teie konto on kinnitatud!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Teie taastekoodid"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/fa/messages.js b/components/i18n/catalogs/fa/messages.js
new file mode 100644
index 0000000..32ecbe9
--- /dev/null
+++ b/components/i18n/catalogs/fa/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"بی صدا شده\"],\"+YFgJi\":[\"مدالها\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"به عنوان خوانده شده علامت بزن\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"ایجاد یک نقش جدید\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"خروج از تمامی نشست های دیگر\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"نام کاربری را انتخاب کنید که میخواهید افراد بتوانند شما را با آن پیدا کنند. این می تواند بعداً در تنظیمات کاربر شما تغییر کند.\"],\"/qQDwm\":[\"در حال ایجاد دعوت…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"گزارش پیام\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"بازخورد ارائه دهید\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"کپی شناسه پیام\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"خروج از گروه\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"شما در اینجا می توانید مشکلات را گزارش دهید و با ما برای بهبود عملکرد به طور مستقیم ارتباط کنید.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"مسدود شده ها\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"شما قادر به عضویت مجدد نیستید مگر اینکه مجدداً دعوت شوید.\"],\"3QuNUr\":[\"چند نفر درحال نوشتن هستند.…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"شما در حال حاضر با این فرد دوست هستید.\"],\"3T8ziB\":[\"یک حساب کاربری ایجاد کنید\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"نشست ها\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"لقب\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"زبان خود را انتخاب کنید\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"یک گروه را برحسب علایق خود بیابید.\"],\"572q5a\":[\"گزارش کاربر\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"به عنوان خوانده نشده علامت گذاری کنید\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"تغییر لقب\"],\"5dJK4M\":[\"نقش ها\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"مرور\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"آفلاین\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"کاربر\"],\"7SU2U9\":[\"کپی شناسه سرور\"],\"7VpPHA\":[\"تایید\"],\"7dZnmw\":[\"ارتباط\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"نام کاربری\"],\"7vhWI8\":[\"رمز عبور جدید\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"مدیریت سرور\"],\"8FE4JE\":[\"فعال کردن برنامه احراز هویت\"],\"8VGnad\":[\"ایجاد کدهای بازیابی\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"کلمه عبور\"],\"8aTiea\":[\"سفارشی سازی\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"نام کاربری دلخواه خود را وارد کنید.\"],\"9D85wC\":[\"کپی شناسه کاربر\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"بازنشانی توکن\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"دسترسی ها\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"ممنوع کردن\"],\"9nffag\":[\"مشاهده پیام های قدیمی تر\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"رفع انسداد کاربر\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"ایجاد یک گروه\"],\"A9Rhec\":[\"نام کانال\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"رمز عبور جدیدی وارد کنید.\"],\"AU7IRi\":[\"کانال متنی\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"کانال صوتی\"],\"BHsrDx\":[\"دعوت ها\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"پیام در پلتفرم دیگری ارسال شد\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"مشاهده کانال\"],\"CK7kdd\":[\"حذف وضعیت\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"توضیحات کانال\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ارسال پیام ها\"],\"CkIs/i\":[\"بی صدا کردن اعضا\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"کلمه عبور فعلی\"],\"DDpDsO\":[\"کد دعوت\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"ارتباط رسمی\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"انجام شده\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"پیام بارگیری نشد، برای پرش کلیک کنید\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ارائه پیشنهاد ویژگی\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"بیرون کردن\"],\"EdQY6l\":[\"هیچ\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"مکالمه ها\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ارسال یک ضمیمه\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"ایجاد دسته\"],\"F1uGNS\":[\"مدیریت لقب ها\"],\"FEr96N\":[\"تم\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"حذف آواتار ها\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"فعال کردن اعلانات دسکتاپ\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"تمرکز\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"کپی شناسه کانال\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"گروه های مشترک\"],\"GhCPk1\":[\"زمانی که حذف شود، دیگر هیچ بازگشتی نیست.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"کلمه عبور فعلی خود را وارد کنید.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"لطفاً روشی را برای تأیید اعتبار درخواست خود انتخاب کنید.\"],\"HAKBY9\":[\"بارگذاری فایل ها\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"یادداشت های ذخیره شده\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"ارسال مجدد لینک تایید\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"جابجایی اعضا\"],\"ImOQa9\":[\"پاسخ\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ارسال چند ضمیمه\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"تا زمانی که سرورها حذف یا منتقل نشده باشند، نمی توان حساب را حذف کرد\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"اقدام را تایید کنید\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"مشاهده به روز رسانی های قدیمی تر\"],\"JUJmXm\":[\"لطفاً این عمل را با استفاده از روش انتخاب شده تأیید کنید.\"],\"JW8mxK\":[\"ذخیره در یادداشت ها\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"خوش آمدید به\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"شما همچنین میتوانید روی تصویر بالا سمت چپ کلیک راست کنید یا اگر در حال حاضر در قسمت خانه هستید، کلیک چپ کنید.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"حذف پیام\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"محتوا یک یا چند قانون را نقض میکند\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"صداها\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"سرور رسمی\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"حذف دوست\"],\"LcET2C\":[\"سیاست حفظ حریم خصوصی\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"ما یک ایمیل تأیید برای شما ارسال کرده ایم. لطفا حداکثر 10 دقیقه فرصت دهید تا برسد.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"نام سرور\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"خروج\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"گزارشهای اشکال فعال فعلی را اینجا مشاهده کنید.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"با ارسال بازخورد به ما اطلاع دهید چگونه می توانیم اپلیکیشن خود را ارتقا دهیم.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"حساب شما تایید شد!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ایمیل\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"شما مجوز ارسال پیام در این کانال را ندارید.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"بازنشانی کنید\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"رد درخواست دوستی\"],\"PSP1MZ\":[\"نام نقش\"],\"PWOA0E\":[\"فقط ذکر شده ها\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ارسال جاسازی ها\"],\"PnzsrT\":[\"کد منبع\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"مشاهده پیام های حال\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"بیکار\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"ویرایش پیام\"],\"QqoBlW\":[\"ایمیل خود را چک کنید!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"بازنشانی رمز عبور\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"ردیاب باگ\"],\"S3bIKF\":[\"کپی شناسه\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"لطفاً رمز زیر را در برنامه احراز هویت خود اسکن یا استفاده کنید.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"حذف روش احراز هویت\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"مدیریت پیام ها\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"مدیریت نقش ها\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"تنظیمات\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"همه دوستان خود و بات های باحال را دعوت کنید و جشن تشکیل دهید.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"تغییر آواتار\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"پیام ارسال شد\"],\"VJScHU\":[\"دلیل\"],\"VKsaTi\":[\"در حال پاسخ دادن به\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"ناشنوا کردن اعضا\"],\"VsHxv+\":[\"کپی متن\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"در حال تأیید حساب شما…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"لینک های خارجی میتوانند خطرناک باشند!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"تنظیمات کلاینت\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"برنامه احراز هویت\"],\"YcVBkL\":[\"پیام دریافت شد\"],\"YirHq7\":[\"بازخورد\"],\"YlFpiA\":[\"تأیید نشد!\"],\"Yp+Hi/\":[\"تنظیمات را باز کنید\"],\"Z5HWHd\":[\"روشن\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"کدهای بازیابی شما\"],\"aAIQg2\":[\"ظاهر\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"شما نمی توانید این عمل را واگرد کنید.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"خاموش\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"غیر فعال کردن حساب کاربری\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"خواندن تاریخچه پیام\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"ممنوع کردن عضو\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"مدیریت مجوزها\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"دعوت کننده\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"حذف\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"لغو\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"ایجاد یک ربات جدید\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"دعوت کردن دیگران\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"مخفی\"],\"ekfzWq\":[\"تنظیمات کاربری\"],\"etgedT\":[\"ایموجی ها\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"مدیریت سفارشی سازی\"],\"fTMMeD\":[\"ایجاد دعوت\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"ثبت نام\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"لغو درخواست دوستی\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"نقش ها را اختصاص دهید\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"گزارش دادن\"],\"gkBHk/\":[\"ایجاد کانال\"],\"gkmjYT\":[\"خروج از سرور\"],\"go1IWB\":[\"این کاربر شما را مسدود کرده است.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"حذف کانال\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"لطفا ایمیل خود را وارد کنید.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"ایجاد\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"خانه\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"اعلانات\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"اتصال\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"اشاره کردن\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ربات\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"به صفحه ورود برگردید\"],\"jpJ5AL\":[\"کد بازیابی\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"آواتار\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"خوش آمدید!\"],\"knjY+b\":[\"می توانید بعداً دوباره آن را باز کنید اما از برای هر دو طرف ناپدید می شود.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"دوست اضافه کن\"],\"lSGjX7\":[\"کاربر به تماس پیوست\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"کانال ها\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"نام گروه\"],\"mAYvqA\":[\"سلام!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"هویت خود را ویرایش کنید\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"شما نمی توانید به حساب خود دسترسی پیدا کنید مگر اینکه با پشتیبانی تماس بگیرید - با این حال، داده های شما حذف نمی شوند.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"وضعیت سفارشی\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"دوستان مشترک\"],\"nbzz1A\":[\"کد را وارد کنید\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"این شروع یادداشت شماست.\"],\"o+XJ9D\":[\"تغییر دادن\"],\"oB4OOq\":[\"ممنوع کردن اعضا\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"آنلاین\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"اخراج کردن اعضا\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"پیشفرض\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"خروج\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"برگشت به آغاز\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"کاربر از تماس خارج شد\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"حساب کاربری من\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"تمامی پیام ها\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"۱ نفر واکنش نشان داد\"],\"rxaY+5\":[\"مزاحم نشوید\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"پیشرفته\"],\"t43mBk\":[\"گزارش سرور\"],\"tBmnPU\":[\"دوستان\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"مدیریت وب هوک ها\"],\"tdTuUv\":[\"مسدود کردن کاربر\"],\"tfDRzk\":[\"ذخیره\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"کاربرمسدود شده\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"به گروه امتحان کننده ها بروید\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"بیرون کردن عضو\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"حذف نقش\"],\"utrCh2\":[\"گرفتن دسترسی اعضا\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"درباره\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"توضیحات سرور\"],\"v1kQyJ\":[\"وب هوک ها\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"پروفایل\"],\"vJum3e\":[\"با اهدای پول از ما حمایت کنید - با تشکر!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ویدیو\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"ویرایش هویت\"],\"vXIe7J\":[\"زبان\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"لطفاً اینها را در مکانی امن ذخیره کنید.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"پیام رسانی\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"ورود به کانال\"],\"wL3cK8\":[\"جدید ترین ها\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"اعضا\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"تغییر هویت\"],\"xDAtGP\":[\"پیام\"],\"xGVfLh\":[\"ادامه\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"اخراج شده ها\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"شرایط خدمات\"],\"xpgPPI\":[\"ربات های من\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"درخواست دوستی را قبول کنید\"],\"y1eoq1\":[\"کپی لینک\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"من تایید می کنم که حداقل 18 سال دارم.\"],\"yDOdwQ\":[\"مدیریت کاربر\"],\"yIBLq8\":[\"صحبت\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"بستن\"],\"z0hW8A\":[\"مشاهده کدهای بازیابی\"],\"z0t9bb\":[\"ورود\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"باشه\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"این آغاز مکالمه شماست.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"قدیمی ترین ها\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/fa/messages.mjs b/components/i18n/catalogs/fa/messages.mjs
new file mode 100644
index 0000000..35973f2
--- /dev/null
+++ b/components/i18n/catalogs/fa/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"بی صدا شده\"],\"+YFgJi\":[\"مدالها\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"به عنوان خوانده شده علامت بزن\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"ایجاد یک نقش جدید\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"خروج از تمامی نشست های دیگر\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"نام کاربری را انتخاب کنید که میخواهید افراد بتوانند شما را با آن پیدا کنند. این می تواند بعداً در تنظیمات کاربر شما تغییر کند.\"],\"/qQDwm\":[\"در حال ایجاد دعوت…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"گزارش پیام\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"بازخورد ارائه دهید\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"کپی شناسه پیام\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"خروج از گروه\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"شما در اینجا می توانید مشکلات را گزارش دهید و با ما برای بهبود عملکرد به طور مستقیم ارتباط کنید.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"مسدود شده ها\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"شما قادر به عضویت مجدد نیستید مگر اینکه مجدداً دعوت شوید.\"],\"3QuNUr\":[\"چند نفر درحال نوشتن هستند.…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"شما در حال حاضر با این فرد دوست هستید.\"],\"3T8ziB\":[\"یک حساب کاربری ایجاد کنید\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"نشست ها\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"لقب\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"زبان خود را انتخاب کنید\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"یک گروه را برحسب علایق خود بیابید.\"],\"572q5a\":[\"گزارش کاربر\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"به عنوان خوانده نشده علامت گذاری کنید\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"تغییر لقب\"],\"5dJK4M\":[\"نقش ها\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"مرور\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"آفلاین\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"کاربر\"],\"7SU2U9\":[\"کپی شناسه سرور\"],\"7VpPHA\":[\"تایید\"],\"7dZnmw\":[\"ارتباط\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"نام کاربری\"],\"7vhWI8\":[\"رمز عبور جدید\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"مدیریت سرور\"],\"8FE4JE\":[\"فعال کردن برنامه احراز هویت\"],\"8VGnad\":[\"ایجاد کدهای بازیابی\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"کلمه عبور\"],\"8aTiea\":[\"سفارشی سازی\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"نام کاربری دلخواه خود را وارد کنید.\"],\"9D85wC\":[\"کپی شناسه کاربر\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"بازنشانی توکن\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"دسترسی ها\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"ممنوع کردن\"],\"9nffag\":[\"مشاهده پیام های قدیمی تر\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"رفع انسداد کاربر\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"ایجاد یک گروه\"],\"A9Rhec\":[\"نام کانال\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"رمز عبور جدیدی وارد کنید.\"],\"AU7IRi\":[\"کانال متنی\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"کانال صوتی\"],\"BHsrDx\":[\"دعوت ها\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"پیام در پلتفرم دیگری ارسال شد\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"مشاهده کانال\"],\"CK7kdd\":[\"حذف وضعیت\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"توضیحات کانال\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ارسال پیام ها\"],\"CkIs/i\":[\"بی صدا کردن اعضا\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"کلمه عبور فعلی\"],\"DDpDsO\":[\"کد دعوت\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"ارتباط رسمی\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"انجام شده\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"پیام بارگیری نشد، برای پرش کلیک کنید\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ارائه پیشنهاد ویژگی\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"بیرون کردن\"],\"EdQY6l\":[\"هیچ\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"مکالمه ها\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ارسال یک ضمیمه\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"ایجاد دسته\"],\"F1uGNS\":[\"مدیریت لقب ها\"],\"FEr96N\":[\"تم\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"حذف آواتار ها\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"فعال کردن اعلانات دسکتاپ\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"تمرکز\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"کپی شناسه کانال\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"گروه های مشترک\"],\"GhCPk1\":[\"زمانی که حذف شود، دیگر هیچ بازگشتی نیست.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"کلمه عبور فعلی خود را وارد کنید.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"لطفاً روشی را برای تأیید اعتبار درخواست خود انتخاب کنید.\"],\"HAKBY9\":[\"بارگذاری فایل ها\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"یادداشت های ذخیره شده\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"ارسال مجدد لینک تایید\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"جابجایی اعضا\"],\"ImOQa9\":[\"پاسخ\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ارسال چند ضمیمه\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"تا زمانی که سرورها حذف یا منتقل نشده باشند، نمی توان حساب را حذف کرد\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"اقدام را تایید کنید\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"مشاهده به روز رسانی های قدیمی تر\"],\"JUJmXm\":[\"لطفاً این عمل را با استفاده از روش انتخاب شده تأیید کنید.\"],\"JW8mxK\":[\"ذخیره در یادداشت ها\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"خوش آمدید به\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"شما همچنین میتوانید روی تصویر بالا سمت چپ کلیک راست کنید یا اگر در حال حاضر در قسمت خانه هستید، کلیک چپ کنید.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"حذف پیام\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"محتوا یک یا چند قانون را نقض میکند\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"صداها\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"سرور رسمی\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"حذف دوست\"],\"LcET2C\":[\"سیاست حفظ حریم خصوصی\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"ما یک ایمیل تأیید برای شما ارسال کرده ایم. لطفا حداکثر 10 دقیقه فرصت دهید تا برسد.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"نام سرور\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"خروج\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"گزارشهای اشکال فعال فعلی را اینجا مشاهده کنید.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"با ارسال بازخورد به ما اطلاع دهید چگونه می توانیم اپلیکیشن خود را ارتقا دهیم.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"حساب شما تایید شد!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ایمیل\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"شما مجوز ارسال پیام در این کانال را ندارید.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"بازنشانی کنید\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"رد درخواست دوستی\"],\"PSP1MZ\":[\"نام نقش\"],\"PWOA0E\":[\"فقط ذکر شده ها\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ارسال جاسازی ها\"],\"PnzsrT\":[\"کد منبع\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"مشاهده پیام های حال\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"بیکار\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"ویرایش پیام\"],\"QqoBlW\":[\"ایمیل خود را چک کنید!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"بازنشانی رمز عبور\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"ردیاب باگ\"],\"S3bIKF\":[\"کپی شناسه\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"لطفاً رمز زیر را در برنامه احراز هویت خود اسکن یا استفاده کنید.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"حذف روش احراز هویت\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"مدیریت پیام ها\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"مدیریت نقش ها\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"تنظیمات\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"همه دوستان خود و بات های باحال را دعوت کنید و جشن تشکیل دهید.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"تغییر آواتار\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"پیام ارسال شد\"],\"VJScHU\":[\"دلیل\"],\"VKsaTi\":[\"در حال پاسخ دادن به\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"ناشنوا کردن اعضا\"],\"VsHxv+\":[\"کپی متن\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"در حال تأیید حساب شما…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"لینک های خارجی میتوانند خطرناک باشند!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"تنظیمات کلاینت\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"برنامه احراز هویت\"],\"YcVBkL\":[\"پیام دریافت شد\"],\"YirHq7\":[\"بازخورد\"],\"YlFpiA\":[\"تأیید نشد!\"],\"Yp+Hi/\":[\"تنظیمات را باز کنید\"],\"Z5HWHd\":[\"روشن\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"کدهای بازیابی شما\"],\"aAIQg2\":[\"ظاهر\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"شما نمی توانید این عمل را واگرد کنید.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"خاموش\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"غیر فعال کردن حساب کاربری\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"خواندن تاریخچه پیام\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"ممنوع کردن عضو\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"مدیریت مجوزها\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"دعوت کننده\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"حذف\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"لغو\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"ایجاد یک ربات جدید\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"دعوت کردن دیگران\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"مخفی\"],\"ekfzWq\":[\"تنظیمات کاربری\"],\"etgedT\":[\"ایموجی ها\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"مدیریت سفارشی سازی\"],\"fTMMeD\":[\"ایجاد دعوت\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"ثبت نام\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"لغو درخواست دوستی\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"نقش ها را اختصاص دهید\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"گزارش دادن\"],\"gkBHk/\":[\"ایجاد کانال\"],\"gkmjYT\":[\"خروج از سرور\"],\"go1IWB\":[\"این کاربر شما را مسدود کرده است.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"حذف کانال\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"لطفا ایمیل خود را وارد کنید.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"ایجاد\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"خانه\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"اعلانات\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"اتصال\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"اشاره کردن\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ربات\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"به صفحه ورود برگردید\"],\"jpJ5AL\":[\"کد بازیابی\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"آواتار\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"خوش آمدید!\"],\"knjY+b\":[\"می توانید بعداً دوباره آن را باز کنید اما از برای هر دو طرف ناپدید می شود.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"دوست اضافه کن\"],\"lSGjX7\":[\"کاربر به تماس پیوست\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"کانال ها\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"نام گروه\"],\"mAYvqA\":[\"سلام!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"هویت خود را ویرایش کنید\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"شما نمی توانید به حساب خود دسترسی پیدا کنید مگر اینکه با پشتیبانی تماس بگیرید - با این حال، داده های شما حذف نمی شوند.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"وضعیت سفارشی\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"دوستان مشترک\"],\"nbzz1A\":[\"کد را وارد کنید\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"این شروع یادداشت شماست.\"],\"o+XJ9D\":[\"تغییر دادن\"],\"oB4OOq\":[\"ممنوع کردن اعضا\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"آنلاین\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"اخراج کردن اعضا\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"پیشفرض\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"خروج\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"برگشت به آغاز\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"کاربر از تماس خارج شد\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"حساب کاربری من\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"تمامی پیام ها\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"۱ نفر واکنش نشان داد\"],\"rxaY+5\":[\"مزاحم نشوید\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"پیشرفته\"],\"t43mBk\":[\"گزارش سرور\"],\"tBmnPU\":[\"دوستان\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"مدیریت وب هوک ها\"],\"tdTuUv\":[\"مسدود کردن کاربر\"],\"tfDRzk\":[\"ذخیره\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"کاربرمسدود شده\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"به گروه امتحان کننده ها بروید\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"بیرون کردن عضو\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"حذف نقش\"],\"utrCh2\":[\"گرفتن دسترسی اعضا\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"درباره\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"توضیحات سرور\"],\"v1kQyJ\":[\"وب هوک ها\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"پروفایل\"],\"vJum3e\":[\"با اهدای پول از ما حمایت کنید - با تشکر!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ویدیو\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"ویرایش هویت\"],\"vXIe7J\":[\"زبان\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"لطفاً اینها را در مکانی امن ذخیره کنید.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"پیام رسانی\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"ورود به کانال\"],\"wL3cK8\":[\"جدید ترین ها\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"اعضا\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"تغییر هویت\"],\"xDAtGP\":[\"پیام\"],\"xGVfLh\":[\"ادامه\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"اخراج شده ها\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"شرایط خدمات\"],\"xpgPPI\":[\"ربات های من\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"درخواست دوستی را قبول کنید\"],\"y1eoq1\":[\"کپی لینک\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"من تایید می کنم که حداقل 18 سال دارم.\"],\"yDOdwQ\":[\"مدیریت کاربر\"],\"yIBLq8\":[\"صحبت\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"بستن\"],\"z0hW8A\":[\"مشاهده کدهای بازیابی\"],\"z0t9bb\":[\"ورود\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"باشه\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"این آغاز مکالمه شماست.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"قدیمی ترین ها\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/fa/messages.po b/components/i18n/catalogs/fa/messages.po
new file mode 100644
index 0000000..fed4e73
--- /dev/null
+++ b/components/i18n/catalogs/fa/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: fa\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "۱ نفر واکنش نشان داد"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "درباره"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "درخواست دوستی را قبول کنید"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "دوست اضافه کن"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "پیشرفته"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "تمامی پیام ها"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "شما در حال حاضر با این فرد دوست هستید."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "ظاهر"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "نقش ها را اختصاص دهید"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "برنامه احراز هویت"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "آواتار"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "مدالها"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "ممنوع کردن"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "ممنوع کردن عضو"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "ممنوع کردن اعضا"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "اخراج شده ها"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "مسدود کردن کاربر"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "مسدود شده ها"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "کاربرمسدود شده"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "ربات"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "ردیاب باگ"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "لغو"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "لغو درخواست دوستی"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "تا زمانی که سرورها حذف یا منتقل نشده باشند، نمی توان حساب را حذف کرد"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "تغییر دادن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "تغییر آواتار"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "تغییر لقب"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "توضیحات کانال"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "نام کانال"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "کانال ها"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "ایمیل خود را چک کنید!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "حذف وضعیت"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "تنظیمات کلاینت"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "بستن"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "تایید"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "اقدام را تایید کنید"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "اتصال"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "محتوا یک یا چند قانون را نقض میکند"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "ادامه"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "مکالمه ها"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "کپی شناسه کانال"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "کپی شناسه"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "کپی لینک"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "کپی شناسه پیام"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "کپی شناسه سرور"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "کپی متن"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "کپی شناسه کاربر"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "ایجاد"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "ایجاد یک گروه"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "ایجاد یک ربات جدید"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "ایجاد یک نقش جدید"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "یک حساب کاربری ایجاد کنید"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "ایجاد دسته"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "ایجاد کانال"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "ایجاد دعوت"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "کلمه عبور فعلی"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "وضعیت سفارشی"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "سفارشی سازی"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "ناشنوا کردن اعضا"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "پیشفرض"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "حذف"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "حذف کانال"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "حذف پیام"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "حذف نقش"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "غیر فعال کردن حساب کاربری"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "مزاحم نشوید"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "انجام شده"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "ویرایش هویت"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "ویرایش پیام"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "هویت خود را ویرایش کنید"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "ایمیل"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "ایموجی ها"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "فعال کردن برنامه احراز هویت"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "فعال کردن اعلانات دسکتاپ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "رمز عبور جدیدی وارد کنید."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "ورود به کانال"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "کد را وارد کنید"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "کلمه عبور فعلی خود را وارد کنید."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "نام کاربری دلخواه خود را وارد کنید."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "لینک های خارجی میتوانند خطرناک باشند!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "تأیید نشد!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "بازخورد"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "یک گروه را برحسب علایق خود بیابید."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "تمرکز"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "دوستان"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "ایجاد کدهای بازیابی"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "در حال ایجاد دعوت…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "به صفحه ورود برگردید"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "به گروه امتحان کننده ها بروید"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "نام گروه"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "سلام!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "خانه"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "من تایید می کنم که حداقل 18 سال دارم."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "بیکار"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "مخفی"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "همه دوستان خود و بات های باحال را دعوت کنید و جشن تشکیل دهید."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "کد دعوت"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "دعوت کردن دیگران"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "دعوت کننده"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "دعوت ها"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "مشاهده پیام های حال"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "برگشت به آغاز"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "بیرون کردن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "بیرون کردن عضو"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "اخراج کردن اعضا"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "زبان"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "جدید ترین ها"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "خروج"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "خروج از گروه"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "خروج از سرور"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "با ارسال بازخورد به ما اطلاع دهید چگونه می توانیم اپلیکیشن خود را ارتقا دهیم."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "خروج"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "خروج از تمامی نشست های دیگر"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "ورود"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "مدیریت سفارشی سازی"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "مدیریت پیام ها"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "مدیریت لقب ها"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "مدیریت مجوزها"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "مدیریت نقش ها"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "مدیریت سرور"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "مدیریت وب هوک ها"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "به عنوان خوانده شده علامت بزن"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "به عنوان خوانده نشده علامت گذاری کنید"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "تغییر هویت"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "اعضا"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "اشاره کردن"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "فقط ذکر شده ها"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "پیام"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "پیام بارگیری نشد، برای پرش کلیک کنید"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "پیام دریافت شد"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "پیام ارسال شد"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "پیام در پلتفرم دیگری ارسال شد"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "پیام رسانی"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "جابجایی اعضا"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "بی صدا کردن اعضا"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "بی صدا شده"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "دوستان مشترک"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "گروه های مشترک"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "حساب کاربری من"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "ربات های من"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "رمز عبور جدید"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "لقب"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "هیچ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "اعلانات"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "خاموش"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "ارتباط رسمی"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "سرور رسمی"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "آفلاین"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "باشه"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "قدیمی ترین ها"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "روشن"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "زمانی که حذف شود، دیگر هیچ بازگشتی نیست."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "آنلاین"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "تنظیمات را باز کنید"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "مرور"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "کلمه عبور"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "دسترسی ها"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "نام کاربری را انتخاب کنید که میخواهید افراد بتوانند شما را با آن پیدا کنند. این می تواند بعداً در تنظیمات کاربر شما تغییر کند."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "لطفاً این عمل را با استفاده از روش انتخاب شده تأیید کنید."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "لطفا ایمیل خود را وارد کنید."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "لطفاً اینها را در مکانی امن ذخیره کنید."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "لطفاً رمز زیر را در برنامه احراز هویت خود اسکن یا استفاده کنید."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "لطفاً روشی را برای تأیید اعتبار درخواست خود انتخاب کنید."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "سیاست حفظ حریم خصوصی"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "پروفایل"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "خواندن تاریخچه پیام"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "دلیل"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "کد بازیابی"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "ثبت نام"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "رد درخواست دوستی"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "ارتباط"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "حذف روش احراز هویت"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "حذف آواتار ها"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "حذف دوست"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "پاسخ"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "در حال پاسخ دادن به"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "گزارش دادن"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "گزارش پیام"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "گزارش سرور"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "گزارش کاربر"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "ارسال مجدد لینک تایید"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "بازنشانی کنید"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "بازنشانی رمز عبور"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "بازنشانی توکن"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "نام نقش"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "نقش ها"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "ذخیره"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "ذخیره در یادداشت ها"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "یادداشت های ذخیره شده"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "زبان خود را انتخاب کنید"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "ارسال جاسازی ها"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "ارسال پیام ها"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "ارسال یک ضمیمه"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "ارسال چند ضمیمه"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "توضیحات سرور"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "نام سرور"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "نشست ها"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "تنظیمات"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "چند نفر درحال نوشتن هستند.…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "صداها"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "کد منبع"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "صحبت"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "ارائه پیشنهاد ویژگی"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "بازخورد ارائه دهید"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "با اهدای پول از ما حمایت کنید - با تشکر!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "شرایط خدمات"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "کانال متنی"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "تم"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "این آغاز مکالمه شماست."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "این شروع یادداشت شماست."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "این کاربر شما را مسدود کرده است."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "گرفتن دسترسی اعضا"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "رفع انسداد کاربر"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "بارگذاری فایل ها"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "کاربر"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "کاربر به تماس پیوست"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "کاربر از تماس خارج شد"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "مدیریت کاربر"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "تنظیمات کاربری"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "نام کاربری"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "در حال تأیید حساب شما…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "ویدیو"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "مشاهده کانال"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "گزارشهای اشکال فعال فعلی را اینجا مشاهده کنید."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "مشاهده به روز رسانی های قدیمی تر"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "مشاهده کدهای بازیابی"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "مشاهده پیام های قدیمی تر"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "کانال صوتی"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "ما یک ایمیل تأیید برای شما ارسال کرده ایم. لطفا حداکثر 10 دقیقه فرصت دهید تا برسد."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "وب هوک ها"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "خوش آمدید به"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "خوش آمدید!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "شما همچنین میتوانید روی تصویر بالا سمت چپ کلیک راست کنید یا اگر در حال حاضر در قسمت خانه هستید، کلیک چپ کنید."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "می توانید بعداً دوباره آن را باز کنید اما از برای هر دو طرف ناپدید می شود."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "شما در اینجا می توانید مشکلات را گزارش دهید و با ما برای بهبود عملکرد به طور مستقیم ارتباط کنید."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "شما نمی توانید این عمل را واگرد کنید."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "شما مجوز ارسال پیام در این کانال را ندارید."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "شما نمی توانید به حساب خود دسترسی پیدا کنید مگر اینکه با پشتیبانی تماس بگیرید - با این حال، داده های شما حذف نمی شوند."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "شما قادر به عضویت مجدد نیستید مگر اینکه مجدداً دعوت شوید."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "حساب شما تایید شد!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "کدهای بازیابی شما"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/fi/messages.js b/components/i18n/catalogs/fi/messages.js
new file mode 100644
index 0000000..f42053a
--- /dev/null
+++ b/components/i18n/catalogs/fi/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Mykistetty\"],\"+YFgJi\":[\"Merkit\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Merkitse luetuksi\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Luo uusi rooli\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Kirjaudu ulos kaikista muista istunnoista\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Valitse käyttäjätunnus, jolla haluat ihmisten löytävän sinut. Tätä voi muuttaa myöhemmin asetuksissa.\"],\"/qQDwm\":[\"Luodaan kutsua…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Ilmoita viesti\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Lähetä palautetta\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopioi viestin tunniste\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Poistu ryhmästä\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Voit ilmoittaa ongelmia ja keskustella kanssamme parannuksista täällä.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Estetty\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Et voi liittyä uudelleen, ellet ole kutsuttu uudelleen.\"],\"3QuNUr\":[\"Useat ihmiset kirjoittavat…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Olet jo ystäviä tämän käyttäjän kanssa.\"],\"3T8ziB\":[\"Luo tili\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Istunnot\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nimimerkki\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Valitse kieli\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Löydä harrastuksiisi tai kiinnostuksen kohteisiisi pohjautuva yhteisö.\"],\"572q5a\":[\"Ilmoita käyttäjä\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Merkkaa lukemattomaksi\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Vaihda nimimerkkiä\"],\"5dJK4M\":[\"Roolit\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Yleiskatsaus\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Ei paikalla\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Käyttäjä\"],\"7SU2U9\":[\"Kopioi palvelimen tunniste\"],\"7VpPHA\":[\"Vahvista\"],\"7dZnmw\":[\"Relevanssi\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Käyttäjätunnus\"],\"7vhWI8\":[\"Uusi salasana\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Hallitse Palvelinta\"],\"8FE4JE\":[\"Ota valtuutussovellus käyttöön\"],\"8VGnad\":[\"Luo palautuskoodit\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Salasana\"],\"8aTiea\":[\"Kustomointi\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Anna haluamasi käyttäjätunnuksesi.\"],\"9D85wC\":[\"Kopioi käyttäjän tunniste\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Nollaa todennustunnus\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Oikeudet\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Anna porttikielto\"],\"9nffag\":[\"Katselet vanhempia viestejä\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Poista käyttäjän esto\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Luo ryhmä\"],\"A9Rhec\":[\"Kanavan nimi\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Anna uusi salasana.\"],\"AU7IRi\":[\"Tekstikanava\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Puhekanava\"],\"BHsrDx\":[\"Kutsut\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Viesti on lähetetty toisella alustalla\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Näytä kanavat\"],\"CK7kdd\":[\"Tyhjennä tila\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanavan kuvaus\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Lähetä viestejä\"],\"CkIs/i\":[\"Hiljennä jäseniä\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nykyinen salasana\"],\"DDpDsO\":[\"Kutsukoodi\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Virallinen viestintä\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Valmis\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Viestiä ei ole ladattu, klikkaa hypätäksesi\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Lähetä ominaisuusehdotus\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Erota\"],\"EdQY6l\":[\"Ei mitään\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Keskustelut\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Liitä tiedosto\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Luo luokka\"],\"F1uGNS\":[\"Hallinnoi käyttäjänimiä\"],\"FEr96N\":[\"Teema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Poista Profiilikuva\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ota työpöytäilmoitukset käyttöön\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Keskity\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopioi kanavan tunniste\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Yhteiset ryhmät\"],\"GhCPk1\":[\"Kun se on poistettu, ei ole paluuta.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Anna nykyinen salasanasi.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Valitse menetelmä pyyntösi valtuuttamiseksi.\"],\"HAKBY9\":[\"Lähetä tiedostoja\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Tallennetut muistiinpanot\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Lähetä vahvistus uudelleen\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Siirrä jäseniä\"],\"ImOQa9\":[\"Vastaa\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Liitä monta tiedostoa\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Ei voi poistaa tiliä ellei palvelimia poisteta tai siirretä\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Vahvista toimenpide\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Näytä vanhemmat päivitykset\"],\"JUJmXm\":[\"Vahvista tämä toimenpide valitulla menetelmällä.\"],\"JW8mxK\":[\"Tallenna muistiinpanoihisi\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Tervetuloa\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Voit myös napsauttaa oikealla klikkauksella vasemmassa yläkulmassa olevaa käyttäjäkuvaketta, tai napsauttaa sitä vasemmalla klikkauksella, jos olet jo kotona.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Poista viesti\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Sisältö rikkoo yhtä tai useampaa lakia\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Äänet\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Virallinen Palvelin\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Poista kaveri\"],\"LcET2C\":[\"Tietosuojakäytäntö\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lähetimme vahvistussähköpostin. Joudut odottamaan jopa 10 minuuttia sen saapumista.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Palvelimen nimi\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Poistu\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Katso tällä hetkellä aktiivisia bugireportteja täällä.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Kerro meille, miten voimme parantaa sovellustamme antamalla palautetta.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Tilisi on vahvistettu!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Sähköpostiosoite\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Sinulla ei ole oikeuksia lähettää viestejä tähän kanavaan.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Nollaa\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Hylkää kaveripyyntö\"],\"PSP1MZ\":[\"Roolin nimi\"],\"PWOA0E\":[\"Vain maininnat\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Lähetä upotteita\"],\"PnzsrT\":[\"Lähdekoodi\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Siirry nykyisiin\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Toimeton\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Muokkaa viestiä\"],\"QqoBlW\":[\"Tarkista sähköpostisi!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Nollaa salasana\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bugiseuranta\"],\"S3bIKF\":[\"Kopioi tunniste\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Skannaa tai käytä alla olevaa tokenia todennussovelluksessasi.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Poista Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Hallitse viestejä\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Hallitse rooleja\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Asetukset\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Kutsu kaikki ystäväsi, muutama botti, ja aloita juhlat.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Vaihda Profiilikuva\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Viesti lähetetty\"],\"VJScHU\":[\"Syy\"],\"VKsaTi\":[\"Vastataan käyttäjälle\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Kuurouta jäseniä\"],\"VsHxv+\":[\"Kopioi teksti\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Vahvistetaan tiliäsi…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Ulkoiset linkit voivat olla vaarallisia!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Asiakasohjelman asetukset\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Valtuutussovellus\"],\"YcVBkL\":[\"Viesti vastaanotettu\"],\"YirHq7\":[\"Palaute\"],\"YlFpiA\":[\"Vahistus epäonnistui!\"],\"Yp+Hi/\":[\"Avaa asetukset\"],\"Z5HWHd\":[\"Päällä\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Palautuskoodisi\"],\"aAIQg2\":[\"Ulkoasu\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Et voi peruuttaa tätä toimenpidettä.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Pois päällä\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Poista tili käytöstä\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lue viestihistoriaa\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Anna porttikielto käyttäjälle\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Hallinnoi oikeuksia\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Kutsuja\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Poista\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Peruuta\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Luo uusi botti\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Kutsu muita\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Näkymätön\"],\"ekfzWq\":[\"Käyttäjäasetukset\"],\"etgedT\":[\"Emojit\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Hallinnoi mukautusta\"],\"fTMMeD\":[\"Luo kutsu\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Rekisteröidy\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Peru ystäväpyyntö\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Aseta rooleja\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Ilmoita\"],\"gkBHk/\":[\"Luo kanava\"],\"gkmjYT\":[\"Poistu palvelimelta\"],\"go1IWB\":[\"Tämä käyttäjä on estänyt sinut.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Poista kanava\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Anna sähköpostiosoitteesi.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Luo\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Koti\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Yhdistä\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mainitse\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Botti\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Palaa kirjautumiseen\"],\"jpJ5AL\":[\"Palautuskoodi\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Kuva\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Tervetuloa!\"],\"knjY+b\":[\"Voit avata sen myöhemmin uudelleen, mutta se katoaa molemmin puolin.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Lisää kaveri\"],\"lSGjX7\":[\"Käyttäjä liittyi puheluun\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanavat\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ryhmän nimi\"],\"mAYvqA\":[\"Hei!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Muokkaa tunnistettasi\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Et voi käyttää tiliäsi ellet ota yhteyttä tukeen - mutta tietojasi ei poisteta.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Mukautettu tila\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Yhteiset kaverit\"],\"nbzz1A\":[\"Syötä koodi\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Tämä on muistiinpanojesi alku.\"],\"o+XJ9D\":[\"Muuta\"],\"oB4OOq\":[\"Anna porttikieltoja jäsenille\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Paikalla\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Erota jäseniä\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Oletus\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Kirjaudu ulos\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hyppää alkuun\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Käyttäjä poistui puhelusta\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minun tilini\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Kaikki viestit\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 käyttäjä reagoi\"],\"rxaY+5\":[\"Älä häiritse\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Edistynyt\"],\"t43mBk\":[\"Ilmoita palvelin\"],\"tBmnPU\":[\"Kaverit\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Hallinnoi webhookeja\"],\"tdTuUv\":[\"Estä käyttäjä\"],\"tfDRzk\":[\"Tallenna\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Estetty käyttäjä\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mene testaajien palvelimeen\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Erota jäsen\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Poista rooli\"],\"utrCh2\":[\"Mykistä jäseniä\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Tietoa\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Palvelimen kuvaus\"],\"v1kQyJ\":[\"Webhookit\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profiili\"],\"vJum3e\":[\"Tue projektia lahjoittamalla - kiitos!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Muokkaa identiteettiä\"],\"vXIe7J\":[\"Kieli\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Talleta nämä turvalliseen paikkaan.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Viestintä\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Liity kanavalle\"],\"wL3cK8\":[\"Viimeisin\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Jäsenet\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Naamio\"],\"xDAtGP\":[\"Viesti\"],\"xGVfLh\":[\"Jatka\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Porttikiellot\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Käyttöehdot\"],\"xpgPPI\":[\"Omat bottini\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Hyväksy kaverippyyntö\"],\"y1eoq1\":[\"Kopioi linkki\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Vahvistan olevani vähintään 18 vuotta vanha.\"],\"yDOdwQ\":[\"Käyttäjien hallinta\"],\"yIBLq8\":[\"Puhu\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Sulje\"],\"z0hW8A\":[\"Näytä palautuskoodit\"],\"z0t9bb\":[\"Kirjaudu sisään\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Tämä on keskustelusi alku.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vanhin\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/fi/messages.mjs b/components/i18n/catalogs/fi/messages.mjs
new file mode 100644
index 0000000..848a0e2
--- /dev/null
+++ b/components/i18n/catalogs/fi/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Mykistetty\"],\"+YFgJi\":[\"Merkit\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Merkitse luetuksi\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Luo uusi rooli\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Kirjaudu ulos kaikista muista istunnoista\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Valitse käyttäjätunnus, jolla haluat ihmisten löytävän sinut. Tätä voi muuttaa myöhemmin asetuksissa.\"],\"/qQDwm\":[\"Luodaan kutsua…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Ilmoita viesti\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Lähetä palautetta\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopioi viestin tunniste\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Poistu ryhmästä\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Voit ilmoittaa ongelmia ja keskustella kanssamme parannuksista täällä.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Estetty\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Et voi liittyä uudelleen, ellet ole kutsuttu uudelleen.\"],\"3QuNUr\":[\"Useat ihmiset kirjoittavat…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Olet jo ystäviä tämän käyttäjän kanssa.\"],\"3T8ziB\":[\"Luo tili\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Istunnot\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nimimerkki\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Valitse kieli\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Löydä harrastuksiisi tai kiinnostuksen kohteisiisi pohjautuva yhteisö.\"],\"572q5a\":[\"Ilmoita käyttäjä\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Merkkaa lukemattomaksi\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Vaihda nimimerkkiä\"],\"5dJK4M\":[\"Roolit\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Yleiskatsaus\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Ei paikalla\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Käyttäjä\"],\"7SU2U9\":[\"Kopioi palvelimen tunniste\"],\"7VpPHA\":[\"Vahvista\"],\"7dZnmw\":[\"Relevanssi\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Käyttäjätunnus\"],\"7vhWI8\":[\"Uusi salasana\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Hallitse Palvelinta\"],\"8FE4JE\":[\"Ota valtuutussovellus käyttöön\"],\"8VGnad\":[\"Luo palautuskoodit\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Salasana\"],\"8aTiea\":[\"Kustomointi\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Anna haluamasi käyttäjätunnuksesi.\"],\"9D85wC\":[\"Kopioi käyttäjän tunniste\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Nollaa todennustunnus\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Oikeudet\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Anna porttikielto\"],\"9nffag\":[\"Katselet vanhempia viestejä\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Poista käyttäjän esto\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Luo ryhmä\"],\"A9Rhec\":[\"Kanavan nimi\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Anna uusi salasana.\"],\"AU7IRi\":[\"Tekstikanava\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Puhekanava\"],\"BHsrDx\":[\"Kutsut\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Viesti on lähetetty toisella alustalla\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Näytä kanavat\"],\"CK7kdd\":[\"Tyhjennä tila\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanavan kuvaus\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Lähetä viestejä\"],\"CkIs/i\":[\"Hiljennä jäseniä\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nykyinen salasana\"],\"DDpDsO\":[\"Kutsukoodi\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Virallinen viestintä\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Valmis\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Viestiä ei ole ladattu, klikkaa hypätäksesi\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Lähetä ominaisuusehdotus\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Erota\"],\"EdQY6l\":[\"Ei mitään\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Keskustelut\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Liitä tiedosto\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Luo luokka\"],\"F1uGNS\":[\"Hallinnoi käyttäjänimiä\"],\"FEr96N\":[\"Teema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Poista Profiilikuva\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ota työpöytäilmoitukset käyttöön\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Keskity\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopioi kanavan tunniste\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Yhteiset ryhmät\"],\"GhCPk1\":[\"Kun se on poistettu, ei ole paluuta.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Anna nykyinen salasanasi.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Valitse menetelmä pyyntösi valtuuttamiseksi.\"],\"HAKBY9\":[\"Lähetä tiedostoja\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Tallennetut muistiinpanot\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Lähetä vahvistus uudelleen\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Siirrä jäseniä\"],\"ImOQa9\":[\"Vastaa\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Liitä monta tiedostoa\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Ei voi poistaa tiliä ellei palvelimia poisteta tai siirretä\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Vahvista toimenpide\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Näytä vanhemmat päivitykset\"],\"JUJmXm\":[\"Vahvista tämä toimenpide valitulla menetelmällä.\"],\"JW8mxK\":[\"Tallenna muistiinpanoihisi\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Tervetuloa\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Voit myös napsauttaa oikealla klikkauksella vasemmassa yläkulmassa olevaa käyttäjäkuvaketta, tai napsauttaa sitä vasemmalla klikkauksella, jos olet jo kotona.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Poista viesti\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Sisältö rikkoo yhtä tai useampaa lakia\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Äänet\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Virallinen Palvelin\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Poista kaveri\"],\"LcET2C\":[\"Tietosuojakäytäntö\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lähetimme vahvistussähköpostin. Joudut odottamaan jopa 10 minuuttia sen saapumista.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Palvelimen nimi\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Poistu\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Katso tällä hetkellä aktiivisia bugireportteja täällä.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Kerro meille, miten voimme parantaa sovellustamme antamalla palautetta.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Tilisi on vahvistettu!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Sähköpostiosoite\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Sinulla ei ole oikeuksia lähettää viestejä tähän kanavaan.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Nollaa\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Hylkää kaveripyyntö\"],\"PSP1MZ\":[\"Roolin nimi\"],\"PWOA0E\":[\"Vain maininnat\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Lähetä upotteita\"],\"PnzsrT\":[\"Lähdekoodi\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Siirry nykyisiin\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Toimeton\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Muokkaa viestiä\"],\"QqoBlW\":[\"Tarkista sähköpostisi!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Nollaa salasana\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bugiseuranta\"],\"S3bIKF\":[\"Kopioi tunniste\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Skannaa tai käytä alla olevaa tokenia todennussovelluksessasi.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Poista Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Hallitse viestejä\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Hallitse rooleja\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Asetukset\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Kutsu kaikki ystäväsi, muutama botti, ja aloita juhlat.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Vaihda Profiilikuva\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Viesti lähetetty\"],\"VJScHU\":[\"Syy\"],\"VKsaTi\":[\"Vastataan käyttäjälle\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Kuurouta jäseniä\"],\"VsHxv+\":[\"Kopioi teksti\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Vahvistetaan tiliäsi…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Ulkoiset linkit voivat olla vaarallisia!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Asiakasohjelman asetukset\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Valtuutussovellus\"],\"YcVBkL\":[\"Viesti vastaanotettu\"],\"YirHq7\":[\"Palaute\"],\"YlFpiA\":[\"Vahistus epäonnistui!\"],\"Yp+Hi/\":[\"Avaa asetukset\"],\"Z5HWHd\":[\"Päällä\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Palautuskoodisi\"],\"aAIQg2\":[\"Ulkoasu\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Et voi peruuttaa tätä toimenpidettä.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Pois päällä\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Poista tili käytöstä\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lue viestihistoriaa\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Anna porttikielto käyttäjälle\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Hallinnoi oikeuksia\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Kutsuja\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Poista\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Peruuta\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Luo uusi botti\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Kutsu muita\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Näkymätön\"],\"ekfzWq\":[\"Käyttäjäasetukset\"],\"etgedT\":[\"Emojit\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Hallinnoi mukautusta\"],\"fTMMeD\":[\"Luo kutsu\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Rekisteröidy\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Peru ystäväpyyntö\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Aseta rooleja\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Ilmoita\"],\"gkBHk/\":[\"Luo kanava\"],\"gkmjYT\":[\"Poistu palvelimelta\"],\"go1IWB\":[\"Tämä käyttäjä on estänyt sinut.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Poista kanava\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Anna sähköpostiosoitteesi.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Luo\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Koti\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Yhdistä\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mainitse\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Botti\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Palaa kirjautumiseen\"],\"jpJ5AL\":[\"Palautuskoodi\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Kuva\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Tervetuloa!\"],\"knjY+b\":[\"Voit avata sen myöhemmin uudelleen, mutta se katoaa molemmin puolin.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Lisää kaveri\"],\"lSGjX7\":[\"Käyttäjä liittyi puheluun\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanavat\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ryhmän nimi\"],\"mAYvqA\":[\"Hei!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Muokkaa tunnistettasi\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Et voi käyttää tiliäsi ellet ota yhteyttä tukeen - mutta tietojasi ei poisteta.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Mukautettu tila\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Yhteiset kaverit\"],\"nbzz1A\":[\"Syötä koodi\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Tämä on muistiinpanojesi alku.\"],\"o+XJ9D\":[\"Muuta\"],\"oB4OOq\":[\"Anna porttikieltoja jäsenille\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Paikalla\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Erota jäseniä\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Oletus\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Kirjaudu ulos\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hyppää alkuun\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Käyttäjä poistui puhelusta\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minun tilini\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Kaikki viestit\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 käyttäjä reagoi\"],\"rxaY+5\":[\"Älä häiritse\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Edistynyt\"],\"t43mBk\":[\"Ilmoita palvelin\"],\"tBmnPU\":[\"Kaverit\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Hallinnoi webhookeja\"],\"tdTuUv\":[\"Estä käyttäjä\"],\"tfDRzk\":[\"Tallenna\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Estetty käyttäjä\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mene testaajien palvelimeen\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Erota jäsen\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Poista rooli\"],\"utrCh2\":[\"Mykistä jäseniä\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Tietoa\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Palvelimen kuvaus\"],\"v1kQyJ\":[\"Webhookit\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profiili\"],\"vJum3e\":[\"Tue projektia lahjoittamalla - kiitos!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Muokkaa identiteettiä\"],\"vXIe7J\":[\"Kieli\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Talleta nämä turvalliseen paikkaan.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Viestintä\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Liity kanavalle\"],\"wL3cK8\":[\"Viimeisin\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Jäsenet\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Naamio\"],\"xDAtGP\":[\"Viesti\"],\"xGVfLh\":[\"Jatka\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Porttikiellot\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Käyttöehdot\"],\"xpgPPI\":[\"Omat bottini\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Hyväksy kaverippyyntö\"],\"y1eoq1\":[\"Kopioi linkki\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Vahvistan olevani vähintään 18 vuotta vanha.\"],\"yDOdwQ\":[\"Käyttäjien hallinta\"],\"yIBLq8\":[\"Puhu\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Sulje\"],\"z0hW8A\":[\"Näytä palautuskoodit\"],\"z0t9bb\":[\"Kirjaudu sisään\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Tämä on keskustelusi alku.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vanhin\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/fi/messages.po b/components/i18n/catalogs/fi/messages.po
new file mode 100644
index 0000000..4d56a59
--- /dev/null
+++ b/components/i18n/catalogs/fi/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: fi\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 käyttäjä reagoi"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Tietoa"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Hyväksy kaverippyyntö"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Lisää kaveri"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Edistynyt"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Kaikki viestit"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Olet jo ystäviä tämän käyttäjän kanssa."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Ulkoasu"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Aseta rooleja"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Valtuutussovellus"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Kuva"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Merkit"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Anna porttikielto"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Anna porttikielto käyttäjälle"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Anna porttikieltoja jäsenille"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Porttikiellot"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Estä käyttäjä"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Estetty"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Estetty käyttäjä"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Botti"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bugiseuranta"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Peru ystäväpyyntö"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Ei voi poistaa tiliä ellei palvelimia poisteta tai siirretä"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Muuta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Vaihda Profiilikuva"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Vaihda nimimerkkiä"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanavan kuvaus"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanavan nimi"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanavat"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Tarkista sähköpostisi!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Tyhjennä tila"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Asiakasohjelman asetukset"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Sulje"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Vahvista"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Vahvista toimenpide"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Yhdistä"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Sisältö rikkoo yhtä tai useampaa lakia"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Jatka"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Keskustelut"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopioi kanavan tunniste"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopioi tunniste"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopioi linkki"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopioi viestin tunniste"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopioi palvelimen tunniste"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopioi teksti"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopioi käyttäjän tunniste"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Luo"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Luo ryhmä"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Luo uusi botti"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Luo uusi rooli"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Luo tili"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Luo luokka"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Luo kanava"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Luo kutsu"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Nykyinen salasana"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Mukautettu tila"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Kustomointi"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Kuurouta jäseniä"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Oletus"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Poista"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Poista kanava"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Poista viesti"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Poista rooli"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Poista tili käytöstä"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Älä häiritse"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Valmis"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Muokkaa identiteettiä"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Muokkaa viestiä"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Muokkaa tunnistettasi"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Sähköpostiosoite"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojit"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Ota valtuutussovellus käyttöön"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Ota työpöytäilmoitukset käyttöön"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Anna uusi salasana."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Liity kanavalle"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Syötä koodi"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Anna nykyinen salasanasi."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Anna haluamasi käyttäjätunnuksesi."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Ulkoiset linkit voivat olla vaarallisia!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Vahistus epäonnistui!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Palaute"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Löydä harrastuksiisi tai kiinnostuksen kohteisiisi pohjautuva yhteisö."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Keskity"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Kaverit"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Luo palautuskoodit"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Luodaan kutsua…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Palaa kirjautumiseen"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Mene testaajien palvelimeen"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Ryhmän nimi"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hei!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Koti"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Vahvistan olevani vähintään 18 vuotta vanha."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Toimeton"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Näkymätön"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Kutsu kaikki ystäväsi, muutama botti, ja aloita juhlat."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kutsukoodi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Kutsu muita"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Kutsuja"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Kutsut"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Siirry nykyisiin"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Hyppää alkuun"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Erota"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Erota jäsen"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Erota jäseniä"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Kieli"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Viimeisin"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Poistu"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Poistu ryhmästä"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Poistu palvelimelta"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Kerro meille, miten voimme parantaa sovellustamme antamalla palautetta."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Kirjaudu ulos"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Kirjaudu ulos kaikista muista istunnoista"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Kirjaudu sisään"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Hallinnoi mukautusta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Hallitse viestejä"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Hallinnoi käyttäjänimiä"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Hallinnoi oikeuksia"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Hallitse rooleja"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Hallitse Palvelinta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Hallinnoi webhookeja"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Merkitse luetuksi"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Merkkaa lukemattomaksi"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Naamio"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Jäsenet"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mainitse"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Vain maininnat"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Viesti"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Viestiä ei ole ladattu, klikkaa hypätäksesi"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Viesti vastaanotettu"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Viesti lähetetty"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Viesti on lähetetty toisella alustalla"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Viestintä"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Siirrä jäseniä"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Hiljennä jäseniä"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Mykistetty"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Yhteiset kaverit"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Yhteiset ryhmät"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Minun tilini"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Omat bottini"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Uusi salasana"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Nimimerkki"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ei mitään"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Ilmoitukset"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Pois päällä"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Virallinen viestintä"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Virallinen Palvelin"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Ei paikalla"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Vanhin"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Päällä"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Kun se on poistettu, ei ole paluuta."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Paikalla"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Avaa asetukset"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Yleiskatsaus"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Salasana"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Oikeudet"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Valitse käyttäjätunnus, jolla haluat ihmisten löytävän sinut. Tätä voi muuttaa myöhemmin asetuksissa."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Vahvista tämä toimenpide valitulla menetelmällä."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Anna sähköpostiosoitteesi."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Talleta nämä turvalliseen paikkaan."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Skannaa tai käytä alla olevaa tokenia todennussovelluksessasi."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Valitse menetelmä pyyntösi valtuuttamiseksi."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Tietosuojakäytäntö"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profiili"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Lue viestihistoriaa"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Syy"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Palautuskoodi"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Rekisteröidy"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Hylkää kaveripyyntö"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevanssi"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Poista Authenticator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Poista Profiilikuva"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Poista kaveri"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Vastaa"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Vastataan käyttäjälle"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Ilmoita"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Ilmoita viesti"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Ilmoita palvelin"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Ilmoita käyttäjä"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Lähetä vahvistus uudelleen"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Nollaa"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Nollaa salasana"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Nollaa todennustunnus"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Roolin nimi"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roolit"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Tallenna"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Tallenna muistiinpanoihisi"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Tallennetut muistiinpanot"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Valitse kieli"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Lähetä upotteita"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Lähetä viestejä"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Liitä tiedosto"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Liitä monta tiedostoa"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Palvelimen kuvaus"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Palvelimen nimi"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Istunnot"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Asetukset"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Useat ihmiset kirjoittavat…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Äänet"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Lähdekoodi"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Puhu"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Lähetä ominaisuusehdotus"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Lähetä palautetta"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Tue projektia lahjoittamalla - kiitos!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Käyttöehdot"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Tekstikanava"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Teema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Tämä on keskustelusi alku."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Tämä on muistiinpanojesi alku."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Tämä käyttäjä on estänyt sinut."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Mykistä jäseniä"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Poista käyttäjän esto"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Lähetä tiedostoja"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Käyttäjä"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Käyttäjä liittyi puheluun"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Käyttäjä poistui puhelusta"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Käyttäjien hallinta"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Käyttäjäasetukset"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Käyttäjätunnus"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Vahvistetaan tiliäsi…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Näytä kanavat"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Katso tällä hetkellä aktiivisia bugireportteja täällä."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Näytä vanhemmat päivitykset"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Näytä palautuskoodit"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Katselet vanhempia viestejä"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Puhekanava"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Lähetimme vahvistussähköpostin. Joudut odottamaan jopa 10 minuuttia sen saapumista."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhookit"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Tervetuloa"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Tervetuloa!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Voit myös napsauttaa oikealla klikkauksella vasemmassa yläkulmassa olevaa käyttäjäkuvaketta, tai napsauttaa sitä vasemmalla klikkauksella, jos olet jo kotona."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Voit avata sen myöhemmin uudelleen, mutta se katoaa molemmin puolin."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Voit ilmoittaa ongelmia ja keskustella kanssamme parannuksista täällä."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Et voi peruuttaa tätä toimenpidettä."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Sinulla ei ole oikeuksia lähettää viestejä tähän kanavaan."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Et voi käyttää tiliäsi ellet ota yhteyttä tukeen - mutta tietojasi ei poisteta."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Et voi liittyä uudelleen, ellet ole kutsuttu uudelleen."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Tilisi on vahvistettu!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Palautuskoodisi"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/fil/messages.js b/components/i18n/catalogs/fil/messages.js
new file mode 100644
index 0000000..49f9d0f
--- /dev/null
+++ b/components/i18n/catalogs/fil/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Naka-silensyo\"],\"+YFgJi\":[\"Mga Sagisag\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markahan bilang nabasa\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Gumawa ng bagong role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"I-logout ang lahat ng iyong ibang sesyon\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pumili ng bansag kung saan madali kang makikilala ng tao. Pwede mong baguhin ito mamaya sa mga opsyon ng user.\"],\"/qQDwm\":[\"Gumagawa ng pang-imbita…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Iulat ang mensahe\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Magsumite ng ulat o puna\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopyahin itong message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Umalis sa grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Maari mong i-ulat sa amin ang mga problemang nakaharap at ang iyong mga suhesiyon dito.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Mga Binara\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Hindi ka pwedeng sumali maliban kung ika'y na-imbita ulit.\"],\"3QuNUr\":[\"Marami ang may gustong sabihin…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Magkaibigan na kayo ng user na ito.\"],\"3T8ziB\":[\"Gumawa ng account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Mga Sesyon\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Palayaw\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Piliin ang iyong wika\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Humanap ng mga komunidad base sa iyong mga libangan o kagustuhan.\"],\"572q5a\":[\"I-report ang user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markahan bilang hindi nabasa\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Palitan ang palayaw\"],\"5dJK4M\":[\"Mga Role\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Bista ng Server\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Di-konektado\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Kopyahin ang server ID\"],\"7VpPHA\":[\"Ikumpirma\"],\"7dZnmw\":[\"Kaugnayan\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Pangalan\"],\"7vhWI8\":[\"Bagong Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Makapagmanage sa server\"],\"8FE4JE\":[\"I-konekta ang autentikador\"],\"8VGnad\":[\"Magsagawa ng Mga Kodigo ng Pagbawi\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Personalisasyon\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ilagay ang gusto mong pangalan.\"],\"9D85wC\":[\"Kopyahin itong user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"I-reset ang Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Mga Permiso\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Tinitingnan ang mga lumang message\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Huwag nang barahin ang user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Gumawa ng grupo\"],\"A9Rhec\":[\"Pangalan ng Channel\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Maglagay ng bagong password.\"],\"AU7IRi\":[\"Channel na pan-texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Channel na pamboses\"],\"BHsrDx\":[\"Mga Imbitasyon\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Ipinadala ang mensahe sa ibang platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Tignan ang channel\"],\"CK7kdd\":[\"Tanggalin ang estado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Deskripsyon ng Channel\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Magsend ng messages\"],\"CkIs/i\":[\"I-Mute ang mga miyembro\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Kasalukuyang Password\"],\"DDpDsO\":[\"Kodigo ng Imbitasyon\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Opisyal na Komunikasyon\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Tapos na\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Hindi na-load ang mensahe, i-click para tumalon\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Magsumite ng suhestiyon sa features\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Alisin\"],\"EdQY6l\":[\"Walang abiso\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Mga usapan\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Naipadala ang lakip\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Gumawa ng kategoriya\"],\"F1uGNS\":[\"Mabago ang mga palayaw\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Tanggalin ang mga avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Paganahin ang mga Abisong Pang-desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Nakatutok\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopyahin itong channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Parehong Grupo\"],\"GhCPk1\":[\"Kapag ito ay natanggal na, hindi mo na pwede ito ma-balik.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ilagay ang iyong kasalukuyang password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pumili ng paraan para i-autentika ang iyong hiling.\"],\"HAKBY9\":[\"Mag-upload ng mga file\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Personal na talaan\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Muling ipadala ang beripikasyon\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Ilipat ang Mga Miyembro\"],\"ImOQa9\":[\"Tumugon\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Naipadala ang mga lakip\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Hindi maaaring burahin ang account hanggang hindi na-delete o na-transfer ang mga server\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Kumpirmahin ang aksyon\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Basahin ang mga lumang updates\"],\"JUJmXm\":[\"Paki-kumpirma ang aksyon na ito gamit ang napiling paraan.\"],\"JW8mxK\":[\"Ilagay sa personal na talaan\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Maligayang Pagdating sa\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Pwede mo ring i-right-click sa user icon sa kaliwang itaas, o i-left-click doon kung nasa pahina ng panimula ka na.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Alisin ang mensahe\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Ang content ay lumalabag sa isa o higit pang mga batas\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Mga tunog\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Opisyal na Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Tanggalin ang kaibigan\"],\"LcET2C\":[\"Patakaran sa Pagkapribado\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nagpadala kami ng verification email. Maari lamang maghintay ng 10 minuto upang dumating.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Pangalan ng Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Umalis\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Tignan and mga aktibong ulat ng mga peste rito.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Pakisabi kung paano namin mapagaganda ang aming app.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Na-verify na ang iyong account!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Wala kang pahintulot para magpadala ng mga mensahe sa channel na ito.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Tanggihan ang friend request\"],\"PSP1MZ\":[\"Pangalan ng Papel\"],\"PWOA0E\":[\"Mga pagbanggit lang\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Magpadala ng Mga Embed\"],\"PnzsrT\":[\"Pinagmulan ng Kodigo\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Bumalik sa kasalukuyan\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Bakante\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"I-edit ang mensahe\"],\"QqoBlW\":[\"Tignan ang iyong mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Palitan ang password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Tagasubaybay ng mga Peste\"],\"S3bIKF\":[\"Kopyahin ang ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Paki-scan o gamitin ang token sa ibaba sa iyong autenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Tanggalin ang Autentikador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Makapagmanage ng messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"I-manage ang mga roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Mga Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Magsagawa ng engrandeng party kasama ang iyong mga kaibigan, at mga mahuhusay na bots.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Palitan ang avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Na-ipadala na ang Mensahe\"],\"VJScHU\":[\"Dahilan\"],\"VKsaTi\":[\"Tumutugon kay\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"I-deafen ang Miyembro\"],\"VsHxv+\":[\"Kopyahin itong text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Vine-verify ang iyong account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Maaaring peligroso ang mga panlabas na link!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Settings sa Kliyente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Taga-authenticate na app\"],\"YcVBkL\":[\"Natanggap ang Mensahe\"],\"YirHq7\":[\"Magpuna\"],\"YlFpiA\":[\"Nabigong i-verify!\"],\"Yp+Hi/\":[\"Buksan ang mga opsyon\"],\"Z5HWHd\":[\"Nakabukas\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Iyong mga kodigo ng pagbawi\"],\"aAIQg2\":[\"Hitsura\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Hindi mo mababalikan ang itong aksyon.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Nakapatay\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"I-disable ang Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Basahin ang History ng Mensahe\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"I-ban ang miyembro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Pamahalaan ang Mga Pahintulot\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Ang nag-imbita\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Burahin\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Kanselahin\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Gumawa ng bagong bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Imbitahin ang mga iba\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Huwag ipakita\"],\"ekfzWq\":[\"Settings ng User\"],\"etgedT\":[\"Mga Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Pamahalaan ang Customization\"],\"fTMMeD\":[\"Gumawa ng imbitasyon\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Magrehistro\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Kanselahin ang friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Magtalaga ng mga Role\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"I-ulat\"],\"gkBHk/\":[\"Gumawa ng channel\"],\"gkmjYT\":[\"Umalis sa server\"],\"go1IWB\":[\"Binlock ka ng user na ito.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Alisin ang channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ilagay ang iyong email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Gumawa\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Panimula\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Mga Abiso\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Kumonekta\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mensyon\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Bumalik sa pag-login\"],\"jpJ5AL\":[\"Kodigo ng Pagbawi\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Maligayang Pagdating!\"],\"knjY+b\":[\"Pwede mo ulit itong buksan mamaya, pero mawawala ito sa magkabilang panig.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Kaibiganin\"],\"lSGjX7\":[\"Sumali si User sa Tawag\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Mga channel\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Pangalan ng Grupo\"],\"mAYvqA\":[\"Kumusta!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Baguhin ang iyong pagkakakilanlan\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Hindi mo maa-access ang iyong account maliban kung makipag-ugnayan sa support - gayumpaman, hindi mabubura ang iyong data.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Estado mo\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Parehong Kaibigan\"],\"nbzz1A\":[\"Ilagay Ang Kodigo\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ito ang simula ng iyong mga tala.\"],\"o+XJ9D\":[\"Baguhin\"],\"oB4OOq\":[\"Makapag-ban ng mga miyembro\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Nasa linya\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Paalisin ang mga miyembro\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Mag-log out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Bumalik sa simula\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Umalis ang User sa Tawag\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Aking Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Lahat ng mga mensahe\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Isang tao ang may reaksiyon dito\"],\"rxaY+5\":[\"Huwag abalahin\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Iulat ang server\"],\"tBmnPU\":[\"Kaibigan\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Pamahalaan ang mga webhook\"],\"tdTuUv\":[\"Barahin ang user na ito\"],\"tfDRzk\":[\"I-Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Binarang User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pumunta sa testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Paalisin ang miyembro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Tanggalin ang Role\"],\"utrCh2\":[\"I-timeout ang Mga Miyembro\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Tungkol\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskripsyon ng Server\"],\"v1kQyJ\":[\"Mga Webhook\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Suportahan itong proyekto sa pamamagitan ng pagbigay ng donasyon - salamat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Bidyo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"I-edit ang identidad\"],\"vXIe7J\":[\"Wika\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Itago ito sa isang ligtas na lokasyon.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Pagmemensahe\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Pumasok sa Channel\"],\"wL3cK8\":[\"Pinakabago\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Mga Miyembro\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Magbalatkayo\"],\"xDAtGP\":[\"I-mensahe\"],\"xGVfLh\":[\"Ipagpatuloy\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Mga Banned na User\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Mga Tuntunin ng Serbisyo\"],\"xpgPPI\":[\"Aking mga Bot\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Tanggapin ang friend request\"],\"y1eoq1\":[\"Kopyahin ang link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Kinukumpirma ko na ako ay hindi bababa sa 18 na taong gulang.\"],\"yDOdwQ\":[\"Pamamahala sa Mga User\"],\"yIBLq8\":[\"Magsalita\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Isara\"],\"z0hW8A\":[\"Tignan Ang Mga Kodigo ng Pagbawi\"],\"z0t9bb\":[\"Mag-login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Sige\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ito ang simula ng iyong usapan.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Pinakaluma\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/fil/messages.mjs b/components/i18n/catalogs/fil/messages.mjs
new file mode 100644
index 0000000..87a7911
--- /dev/null
+++ b/components/i18n/catalogs/fil/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Naka-silensyo\"],\"+YFgJi\":[\"Mga Sagisag\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markahan bilang nabasa\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Gumawa ng bagong role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"I-logout ang lahat ng iyong ibang sesyon\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pumili ng bansag kung saan madali kang makikilala ng tao. Pwede mong baguhin ito mamaya sa mga opsyon ng user.\"],\"/qQDwm\":[\"Gumagawa ng pang-imbita…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Iulat ang mensahe\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Magsumite ng ulat o puna\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopyahin itong message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Umalis sa grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Maari mong i-ulat sa amin ang mga problemang nakaharap at ang iyong mga suhesiyon dito.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Mga Binara\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Hindi ka pwedeng sumali maliban kung ika'y na-imbita ulit.\"],\"3QuNUr\":[\"Marami ang may gustong sabihin…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Magkaibigan na kayo ng user na ito.\"],\"3T8ziB\":[\"Gumawa ng account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Mga Sesyon\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Palayaw\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Piliin ang iyong wika\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Humanap ng mga komunidad base sa iyong mga libangan o kagustuhan.\"],\"572q5a\":[\"I-report ang user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markahan bilang hindi nabasa\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Palitan ang palayaw\"],\"5dJK4M\":[\"Mga Role\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Bista ng Server\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Di-konektado\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Kopyahin ang server ID\"],\"7VpPHA\":[\"Ikumpirma\"],\"7dZnmw\":[\"Kaugnayan\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Pangalan\"],\"7vhWI8\":[\"Bagong Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Makapagmanage sa server\"],\"8FE4JE\":[\"I-konekta ang autentikador\"],\"8VGnad\":[\"Magsagawa ng Mga Kodigo ng Pagbawi\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Personalisasyon\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ilagay ang gusto mong pangalan.\"],\"9D85wC\":[\"Kopyahin itong user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"I-reset ang Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Mga Permiso\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Tinitingnan ang mga lumang message\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Huwag nang barahin ang user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Gumawa ng grupo\"],\"A9Rhec\":[\"Pangalan ng Channel\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Maglagay ng bagong password.\"],\"AU7IRi\":[\"Channel na pan-texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Channel na pamboses\"],\"BHsrDx\":[\"Mga Imbitasyon\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Ipinadala ang mensahe sa ibang platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Tignan ang channel\"],\"CK7kdd\":[\"Tanggalin ang estado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Deskripsyon ng Channel\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Magsend ng messages\"],\"CkIs/i\":[\"I-Mute ang mga miyembro\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Kasalukuyang Password\"],\"DDpDsO\":[\"Kodigo ng Imbitasyon\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Opisyal na Komunikasyon\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Tapos na\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Hindi na-load ang mensahe, i-click para tumalon\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Magsumite ng suhestiyon sa features\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Alisin\"],\"EdQY6l\":[\"Walang abiso\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Mga usapan\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Naipadala ang lakip\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Gumawa ng kategoriya\"],\"F1uGNS\":[\"Mabago ang mga palayaw\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Tanggalin ang mga avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Paganahin ang mga Abisong Pang-desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Nakatutok\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopyahin itong channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Parehong Grupo\"],\"GhCPk1\":[\"Kapag ito ay natanggal na, hindi mo na pwede ito ma-balik.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ilagay ang iyong kasalukuyang password.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pumili ng paraan para i-autentika ang iyong hiling.\"],\"HAKBY9\":[\"Mag-upload ng mga file\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Personal na talaan\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Muling ipadala ang beripikasyon\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Ilipat ang Mga Miyembro\"],\"ImOQa9\":[\"Tumugon\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Naipadala ang mga lakip\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Hindi maaaring burahin ang account hanggang hindi na-delete o na-transfer ang mga server\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Kumpirmahin ang aksyon\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Basahin ang mga lumang updates\"],\"JUJmXm\":[\"Paki-kumpirma ang aksyon na ito gamit ang napiling paraan.\"],\"JW8mxK\":[\"Ilagay sa personal na talaan\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Maligayang Pagdating sa\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Pwede mo ring i-right-click sa user icon sa kaliwang itaas, o i-left-click doon kung nasa pahina ng panimula ka na.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Alisin ang mensahe\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Ang content ay lumalabag sa isa o higit pang mga batas\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Mga tunog\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Opisyal na Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Tanggalin ang kaibigan\"],\"LcET2C\":[\"Patakaran sa Pagkapribado\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nagpadala kami ng verification email. Maari lamang maghintay ng 10 minuto upang dumating.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Pangalan ng Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Umalis\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Tignan and mga aktibong ulat ng mga peste rito.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Pakisabi kung paano namin mapagaganda ang aming app.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Na-verify na ang iyong account!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Wala kang pahintulot para magpadala ng mga mensahe sa channel na ito.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Tanggihan ang friend request\"],\"PSP1MZ\":[\"Pangalan ng Papel\"],\"PWOA0E\":[\"Mga pagbanggit lang\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Magpadala ng Mga Embed\"],\"PnzsrT\":[\"Pinagmulan ng Kodigo\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Bumalik sa kasalukuyan\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Bakante\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"I-edit ang mensahe\"],\"QqoBlW\":[\"Tignan ang iyong mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Palitan ang password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Tagasubaybay ng mga Peste\"],\"S3bIKF\":[\"Kopyahin ang ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Paki-scan o gamitin ang token sa ibaba sa iyong autenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Tanggalin ang Autentikador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Makapagmanage ng messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"I-manage ang mga roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Mga Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Magsagawa ng engrandeng party kasama ang iyong mga kaibigan, at mga mahuhusay na bots.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Palitan ang avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Na-ipadala na ang Mensahe\"],\"VJScHU\":[\"Dahilan\"],\"VKsaTi\":[\"Tumutugon kay\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"I-deafen ang Miyembro\"],\"VsHxv+\":[\"Kopyahin itong text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Vine-verify ang iyong account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Maaaring peligroso ang mga panlabas na link!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Settings sa Kliyente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Taga-authenticate na app\"],\"YcVBkL\":[\"Natanggap ang Mensahe\"],\"YirHq7\":[\"Magpuna\"],\"YlFpiA\":[\"Nabigong i-verify!\"],\"Yp+Hi/\":[\"Buksan ang mga opsyon\"],\"Z5HWHd\":[\"Nakabukas\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Iyong mga kodigo ng pagbawi\"],\"aAIQg2\":[\"Hitsura\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Hindi mo mababalikan ang itong aksyon.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Nakapatay\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"I-disable ang Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Basahin ang History ng Mensahe\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"I-ban ang miyembro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Pamahalaan ang Mga Pahintulot\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Ang nag-imbita\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Burahin\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Kanselahin\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Gumawa ng bagong bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Imbitahin ang mga iba\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Huwag ipakita\"],\"ekfzWq\":[\"Settings ng User\"],\"etgedT\":[\"Mga Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Pamahalaan ang Customization\"],\"fTMMeD\":[\"Gumawa ng imbitasyon\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Magrehistro\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Kanselahin ang friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Magtalaga ng mga Role\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"I-ulat\"],\"gkBHk/\":[\"Gumawa ng channel\"],\"gkmjYT\":[\"Umalis sa server\"],\"go1IWB\":[\"Binlock ka ng user na ito.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Alisin ang channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ilagay ang iyong email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Gumawa\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Panimula\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Mga Abiso\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Kumonekta\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mensyon\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Bumalik sa pag-login\"],\"jpJ5AL\":[\"Kodigo ng Pagbawi\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Maligayang Pagdating!\"],\"knjY+b\":[\"Pwede mo ulit itong buksan mamaya, pero mawawala ito sa magkabilang panig.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Kaibiganin\"],\"lSGjX7\":[\"Sumali si User sa Tawag\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Mga channel\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Pangalan ng Grupo\"],\"mAYvqA\":[\"Kumusta!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Baguhin ang iyong pagkakakilanlan\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Hindi mo maa-access ang iyong account maliban kung makipag-ugnayan sa support - gayumpaman, hindi mabubura ang iyong data.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Estado mo\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Parehong Kaibigan\"],\"nbzz1A\":[\"Ilagay Ang Kodigo\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ito ang simula ng iyong mga tala.\"],\"o+XJ9D\":[\"Baguhin\"],\"oB4OOq\":[\"Makapag-ban ng mga miyembro\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Nasa linya\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Paalisin ang mga miyembro\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Mag-log out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Bumalik sa simula\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Umalis ang User sa Tawag\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Aking Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Lahat ng mga mensahe\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Isang tao ang may reaksiyon dito\"],\"rxaY+5\":[\"Huwag abalahin\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Iulat ang server\"],\"tBmnPU\":[\"Kaibigan\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Pamahalaan ang mga webhook\"],\"tdTuUv\":[\"Barahin ang user na ito\"],\"tfDRzk\":[\"I-Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Binarang User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pumunta sa testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Paalisin ang miyembro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Tanggalin ang Role\"],\"utrCh2\":[\"I-timeout ang Mga Miyembro\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Tungkol\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskripsyon ng Server\"],\"v1kQyJ\":[\"Mga Webhook\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Suportahan itong proyekto sa pamamagitan ng pagbigay ng donasyon - salamat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Bidyo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"I-edit ang identidad\"],\"vXIe7J\":[\"Wika\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Itago ito sa isang ligtas na lokasyon.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Pagmemensahe\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Pumasok sa Channel\"],\"wL3cK8\":[\"Pinakabago\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Mga Miyembro\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Magbalatkayo\"],\"xDAtGP\":[\"I-mensahe\"],\"xGVfLh\":[\"Ipagpatuloy\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Mga Banned na User\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Mga Tuntunin ng Serbisyo\"],\"xpgPPI\":[\"Aking mga Bot\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Tanggapin ang friend request\"],\"y1eoq1\":[\"Kopyahin ang link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Kinukumpirma ko na ako ay hindi bababa sa 18 na taong gulang.\"],\"yDOdwQ\":[\"Pamamahala sa Mga User\"],\"yIBLq8\":[\"Magsalita\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Isara\"],\"z0hW8A\":[\"Tignan Ang Mga Kodigo ng Pagbawi\"],\"z0t9bb\":[\"Mag-login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Sige\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ito ang simula ng iyong usapan.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Pinakaluma\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/fil/messages.po b/components/i18n/catalogs/fil/messages.po
new file mode 100644
index 0000000..4da1aab
--- /dev/null
+++ b/components/i18n/catalogs/fil/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: fil\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "Isang tao ang may reaksiyon dito"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Tungkol"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Tanggapin ang friend request"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Kaibiganin"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Advanced"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Lahat ng mga mensahe"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Magkaibigan na kayo ng user na ito."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Hitsura"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Magtalaga ng mga Role"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Taga-authenticate na app"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Mga Sagisag"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "I-ban ang miyembro"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Makapag-ban ng mga miyembro"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Mga Banned na User"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Barahin ang user na ito"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Mga Binara"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Binarang User"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Tagasubaybay ng mga Peste"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Kanselahin"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Kanselahin ang friend request"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Hindi maaaring burahin ang account hanggang hindi na-delete o na-transfer ang mga server"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Baguhin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Palitan ang avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Palitan ang palayaw"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Deskripsyon ng Channel"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Pangalan ng Channel"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Mga channel"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Tignan ang iyong mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Tanggalin ang estado"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Settings sa Kliyente"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Isara"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Ikumpirma"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Kumpirmahin ang aksyon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Kumonekta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Ang content ay lumalabag sa isa o higit pang mga batas"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Ipagpatuloy"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Mga usapan"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopyahin itong channel ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopyahin ang ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopyahin ang link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopyahin itong message ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopyahin ang server ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopyahin itong text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopyahin itong user ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Gumawa"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Gumawa ng grupo"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Gumawa ng bagong bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Gumawa ng bagong role"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Gumawa ng account"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Gumawa ng kategoriya"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Gumawa ng channel"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Gumawa ng imbitasyon"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Kasalukuyang Password"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Estado mo"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalisasyon"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "I-deafen ang Miyembro"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Default"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Burahin"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Alisin ang channel"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Alisin ang mensahe"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Tanggalin ang Role"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "I-disable ang Account"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Huwag abalahin"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Tapos na"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "I-edit ang identidad"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "I-edit ang mensahe"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Baguhin ang iyong pagkakakilanlan"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Mga Emoji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "I-konekta ang autentikador"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Paganahin ang mga Abisong Pang-desktop"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Maglagay ng bagong password."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Pumasok sa Channel"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Ilagay Ang Kodigo"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Ilagay ang iyong kasalukuyang password."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Ilagay ang gusto mong pangalan."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Maaaring peligroso ang mga panlabas na link!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Nabigong i-verify!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Magpuna"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Humanap ng mga komunidad base sa iyong mga libangan o kagustuhan."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Nakatutok"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Kaibigan"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Magsagawa ng Mga Kodigo ng Pagbawi"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Gumagawa ng pang-imbita…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Bumalik sa pag-login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Pumunta sa testers server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Pangalan ng Grupo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Kumusta!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Panimula"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Kinukumpirma ko na ako ay hindi bababa sa 18 na taong gulang."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Bakante"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Huwag ipakita"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Magsagawa ng engrandeng party kasama ang iyong mga kaibigan, at mga mahuhusay na bots."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kodigo ng Imbitasyon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Imbitahin ang mga iba"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Ang nag-imbita"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Mga Imbitasyon"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Bumalik sa kasalukuyan"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Bumalik sa simula"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Alisin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Paalisin ang miyembro"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Paalisin ang mga miyembro"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Wika"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Pinakabago"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Umalis"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Umalis sa grupo"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Umalis sa server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Pakisabi kung paano namin mapagaganda ang aming app."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Mag-log out"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "I-logout ang lahat ng iyong ibang sesyon"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Mag-login"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Pamahalaan ang Customization"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Makapagmanage ng messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Mabago ang mga palayaw"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Pamahalaan ang Mga Pahintulot"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "I-manage ang mga roles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Makapagmanage sa server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Pamahalaan ang mga webhook"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Markahan bilang nabasa"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Markahan bilang hindi nabasa"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Magbalatkayo"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Mga Miyembro"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mensyon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Mga pagbanggit lang"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "I-mensahe"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Hindi na-load ang mensahe, i-click para tumalon"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Natanggap ang Mensahe"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Na-ipadala na ang Mensahe"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Ipinadala ang mensahe sa ibang platform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Pagmemensahe"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Ilipat ang Mga Miyembro"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "I-Mute ang mga miyembro"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Naka-silensyo"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Parehong Kaibigan"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Parehong Grupo"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Aking Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Aking mga Bot"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Bagong Password"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Palayaw"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Walang abiso"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Mga Abiso"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Nakapatay"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Opisyal na Komunikasyon"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Opisyal na Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Di-konektado"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Sige"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Pinakaluma"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Nakabukas"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Kapag ito ay natanggal na, hindi mo na pwede ito ma-balik."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Nasa linya"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Buksan ang mga opsyon"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Bista ng Server"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Password"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Mga Permiso"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Pumili ng bansag kung saan madali kang makikilala ng tao. Pwede mong baguhin ito mamaya sa mga opsyon ng user."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Paki-kumpirma ang aksyon na ito gamit ang napiling paraan."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Ilagay ang iyong email."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Itago ito sa isang ligtas na lokasyon."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Paki-scan o gamitin ang token sa ibaba sa iyong autenticator app."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Pumili ng paraan para i-autentika ang iyong hiling."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Patakaran sa Pagkapribado"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profile"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Basahin ang History ng Mensahe"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Dahilan"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Kodigo ng Pagbawi"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Magrehistro"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Tanggihan ang friend request"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Kaugnayan"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Tanggalin ang Autentikador"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Tanggalin ang mga avatar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Tanggalin ang kaibigan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Tumugon"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Tumutugon kay"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "I-ulat"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Iulat ang mensahe"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Iulat ang server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "I-report ang user"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Muling ipadala ang beripikasyon"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reset"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Palitan ang password"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "I-reset ang Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Pangalan ng Papel"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Mga Role"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "I-Save"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Ilagay sa personal na talaan"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Personal na talaan"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Piliin ang iyong wika"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Magpadala ng Mga Embed"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Magsend ng messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Naipadala ang lakip"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Naipadala ang mga lakip"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Deskripsyon ng Server"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Pangalan ng Server"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Mga Sesyon"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Mga Settings"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Marami ang may gustong sabihin…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Mga tunog"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Pinagmulan ng Kodigo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Magsalita"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Magsumite ng suhestiyon sa features"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Magsumite ng ulat o puna"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Suportahan itong proyekto sa pamamagitan ng pagbigay ng donasyon - salamat!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Mga Tuntunin ng Serbisyo"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Channel na pan-texto"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Ito ang simula ng iyong usapan."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Ito ang simula ng iyong mga tala."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Binlock ka ng user na ito."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "I-timeout ang Mga Miyembro"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Huwag nang barahin ang user"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Mag-upload ng mga file"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "User"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Sumali si User sa Tawag"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Umalis ang User sa Tawag"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Pamamahala sa Mga User"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Settings ng User"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Pangalan"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Vine-verify ang iyong account…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Bidyo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Tignan ang channel"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Tignan and mga aktibong ulat ng mga peste rito."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Basahin ang mga lumang updates"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Tignan Ang Mga Kodigo ng Pagbawi"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Tinitingnan ang mga lumang message"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Channel na pamboses"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Nagpadala kami ng verification email. Maari lamang maghintay ng 10 minuto upang dumating."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Mga Webhook"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Maligayang Pagdating sa"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Maligayang Pagdating!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Pwede mo ring i-right-click sa user icon sa kaliwang itaas, o i-left-click doon kung nasa pahina ng panimula ka na."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Pwede mo ulit itong buksan mamaya, pero mawawala ito sa magkabilang panig."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Maari mong i-ulat sa amin ang mga problemang nakaharap at ang iyong mga suhesiyon dito."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Hindi mo mababalikan ang itong aksyon."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Wala kang pahintulot para magpadala ng mga mensahe sa channel na ito."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Hindi mo maa-access ang iyong account maliban kung makipag-ugnayan sa support - gayumpaman, hindi mabubura ang iyong data."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Hindi ka pwedeng sumali maliban kung ika'y na-imbita ulit."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Na-verify na ang iyong account!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Iyong mga kodigo ng pagbawi"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/fr/messages.js b/components/i18n/catalogs/fr/messages.js
new file mode 100644
index 0000000..9e1b290
--- /dev/null
+++ b/components/i18n/catalogs/fr/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Muet\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marquer comme lu\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Créer un nouveau rôle\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Se déconnecter de toutes les autres sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Choisissez le nom d'utilisateur par lequel vous souhaitez être trouvé. Il peut être changé plus tard dans les paramètres.\"],\"/qQDwm\":[\"Génération d'une invitation en cours…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Signaler ce message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Donnez votre avis\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copier l'identifiant du message\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Quitter le groupe\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Vous pouvez signaler des problèmes et discuter des améliorations avec nous directement ici.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqué\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Vous ne pourrez pas revenir à moins d'être réinvité.\"],\"3QuNUr\":[\"Plusieurs personnes sont en train d'écrire…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Vous êtes déjà ami avec cet utilisateur.\"],\"3T8ziB\":[\"Créer un compte\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Pseudonyme\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Sélectionnez votre langue\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Trouvez une communauté basée sur vos passe-temps ou sur vos intérêts.\"],\"572q5a\":[\"Signaler cet utilisateur\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marquer comme non-lu\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Modifier le pseudonyme\"],\"5dJK4M\":[\"Rôles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Vue d'ensemble\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Hors ligne\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utilisateur\"],\"7SU2U9\":[\"Copier l'identifiant du serveur\"],\"7VpPHA\":[\"Confirmer\"],\"7dZnmw\":[\"Pertinence\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nom d'utilisateur\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gérer le serveur\"],\"8FE4JE\":[\"Activer l'application d'authentification\"],\"8VGnad\":[\"Générer les codes de récupération\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Mot de passe\"],\"8aTiea\":[\"Personnalisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Entrez un nom d'utilisateur.\"],\"9D85wC\":[\"Copier l'identifiant utilisateur\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Réinitialiser le token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bannir\"],\"9nffag\":[\"Vous consultez d'anciens messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Débloquer l'utilisateur\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Créer un groupe\"],\"A9Rhec\":[\"Nom du salon\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Entrez un nouveau mot de passe.\"],\"AU7IRi\":[\"Salon textuel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Salon vocal\"],\"BHsrDx\":[\"Invitations\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message envoyé depuis une autre plateforme\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Voir le salon\"],\"CK7kdd\":[\"Supprimer le statut\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Description du salon\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Envoyer des messages\"],\"CkIs/i\":[\"Rendre les membres muets\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Mot de passe actuel\"],\"DDpDsO\":[\"Code d'invitation\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Communiqué officiel\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Terminé\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message non chargé, cliquez pour y accéder\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Proposer une fonctionnalité\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulser\"],\"EdQY6l\":[\"Aucun\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"A envoyé une pièce jointe\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Créer une catégorie\"],\"F1uGNS\":[\"Gérer les pseudonymes\"],\"FEr96N\":[\"Thème\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Retirer les avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Activer les notifications de Bureau\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentré\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copier l'identifiant du salon\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Groupes en commun\"],\"GhCPk1\":[\"Après la suppression, vous ne pourrez plus revenir en arrière.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Entrez votre mot de passe actuel.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Sélectionnez une méthode pour vous authentifier.\"],\"HAKBY9\":[\"Téléverser des fichiers\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notes enregistrées\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Renvoyer la vérification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Déplacer les membres\"],\"ImOQa9\":[\"Répondre\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"A envoyé plusieurs pièces jointes\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Impossible de clôturer le compte si les serveurs ne sont pas fermés ou transférés\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmer l'action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Voir les mises à jour précédentes\"],\"JUJmXm\":[\"Confirmez en utilisant la méthode sélectionnée.\"],\"JW8mxK\":[\"Enregistrer dans vos notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bienvenue sur\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Vous pouvez aussi faire un clic droit sur l'icône utilisateur en haut à gauche, ou un clic gauche si vous êtes déjà sur l'accueil.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Supprimer le message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Le contenu enfreint une ou plusieurs lois\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Serveur Officiel\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Retirer l'ami\"],\"LcET2C\":[\"Politique de confidentialité\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nous vous avons envoyé un e-mail de vérification. Merci d'attendre jusqu'à 10 minutes pour qu'il arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nom du serveur\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Quitter\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Visionnez les rapports de bugs actifs ici.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Faites-nous savoir comment améliorer notre application en donnant votre avis.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Votre compte a bien été vérifié\xA0!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Adresse e-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Vous n'avez pas la permission d'envoyer des messages dans ce salon.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Réinitialiser\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejeter demande d'ami\"],\"PSP1MZ\":[\"Nom du rôle\"],\"PWOA0E\":[\"Mentions uniquement\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Envoyer du contenu intégré\"],\"PnzsrT\":[\"Code source\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Revenir aux messages récents\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inactif\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Modifier le message\"],\"QqoBlW\":[\"Vérifiez vos e-mails\xA0!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Réinitialiser le mot de passe\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Traqueur de bugs\"],\"S3bIKF\":[\"Copier l'identifiant\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Veuillez scanner ou utiliser le jeton ci-dessous dans votre application d'authentification.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Supprimer l'authentificateur\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gérer les messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gérer les rôles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Paramètres\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invitez tous vos amis, des bots sympa, et organisez une grande fête.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Modifier l'avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message envoyé\"],\"VJScHU\":[\"Raison\"],\"VKsaTi\":[\"Répondre à\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Rendre les membres sourds\"],\"VsHxv+\":[\"Copier le texte\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Vérification du compte…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Les liens externes peuvent être dangereux\xA0!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Paramètres du client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Application d'authentification\"],\"YcVBkL\":[\"Message reçu\"],\"YirHq7\":[\"Suggestions\"],\"YlFpiA\":[\"Échec de la vérification\xA0!\"],\"Yp+Hi/\":[\"Ouvrir les paramètres\"],\"Z5HWHd\":[\"Activé\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vos codes de récupération\"],\"aAIQg2\":[\"Apparence\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Vous ne pourrez pas annuler cette action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Désactivé\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Désactiver le compte\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lire l'historique des messages\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bannir le membre\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gérer les permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Membre ayant invité\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Supprimer\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annuler\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Créer un nouveau bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviter d'autres personnes\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Paramètres utilisateur\"],\"etgedT\":[\"Émojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gérer les personnalisations\"],\"fTMMeD\":[\"Créer une invitation\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"S'inscrire\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annuler la demande d'ami\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assigner des rôles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Signaler\"],\"gkBHk/\":[\"Créer un salon\"],\"gkmjYT\":[\"Quitter le serveur\"],\"go1IWB\":[\"Cet utilisateur vous a bloqué.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Supprimer le salon\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Entrez votre adresse e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Créer\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Accueil\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connexion\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mentionner\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Retourner à la page de connexion\"],\"jpJ5AL\":[\"Code de récupération\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bienvenue\u202F!\"],\"knjY+b\":[\"Vous pouvez la rouvrir plus tard, mais elle disparaîtra des deux côtés.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ajouter en ami\"],\"lSGjX7\":[\"Appel rejoint par un utilisateur\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Salons\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nom du groupe\"],\"mAYvqA\":[\"Bonjour\xA0!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Modifier votre identité\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Vous ne pourrez plus accéder à votre compte sans contacter le support. Toutefois, vos données ne seront pas supprimées.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Statut personnalisé\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amis en commun\"],\"nbzz1A\":[\"Entrez le code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Voici le début de vos notes.\"],\"o+XJ9D\":[\"Modifier\"],\"oB4OOq\":[\"Bannir les membres\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Connecté\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulser les membres\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Défaut\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Déconnexion\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Aller au début\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Appel quitté par un utilisateur\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mon compte\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tous les messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 personne a réagi\"],\"rxaY+5\":[\"Ne pas déranger\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avancé\"],\"t43mBk\":[\"Signaler ce serveur\"],\"tBmnPU\":[\"Amis\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gérer les webhooks\"],\"tdTuUv\":[\"Bloquer l'utilisateur\"],\"tfDRzk\":[\"Enregistrer\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utilisateur bloqué\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Se rendre sur le serveur des testeurs\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulser le membre\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Supprimer le rôle\"],\"utrCh2\":[\"Mettre des membres en temps mort\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"À propos\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Description du serveur\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Soutenez le projet en faisant un don, merci\xA0!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vidéo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Modifier l'identité\"],\"vXIe7J\":[\"Langue\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Gardez-les dans un endroit sûr.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messagerie\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrer dans le salon\"],\"wL3cK8\":[\"Récents\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membres\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Identité par message\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continuer\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bannissements\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Conditions d’utilisation\"],\"xpgPPI\":[\"Mes bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accepter demande d'ami\"],\"y1eoq1\":[\"Copier le lien\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Je confirme avoir au moins 18 ans.\"],\"yDOdwQ\":[\"Gestion des utilisateurs\"],\"yIBLq8\":[\"Parler\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fermer\"],\"z0hW8A\":[\"Voir les codes de récupération\"],\"z0t9bb\":[\"Connexion\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Voici le début de votre conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Anciens\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/fr/messages.mjs b/components/i18n/catalogs/fr/messages.mjs
new file mode 100644
index 0000000..d16b214
--- /dev/null
+++ b/components/i18n/catalogs/fr/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Muet\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marquer comme lu\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Créer un nouveau rôle\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Se déconnecter de toutes les autres sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Choisissez le nom d'utilisateur par lequel vous souhaitez être trouvé. Il peut être changé plus tard dans les paramètres.\"],\"/qQDwm\":[\"Génération d'une invitation en cours…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Signaler ce message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Donnez votre avis\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copier l'identifiant du message\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Quitter le groupe\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Vous pouvez signaler des problèmes et discuter des améliorations avec nous directement ici.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqué\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Vous ne pourrez pas revenir à moins d'être réinvité.\"],\"3QuNUr\":[\"Plusieurs personnes sont en train d'écrire…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Vous êtes déjà ami avec cet utilisateur.\"],\"3T8ziB\":[\"Créer un compte\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Pseudonyme\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Sélectionnez votre langue\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Trouvez une communauté basée sur vos passe-temps ou sur vos intérêts.\"],\"572q5a\":[\"Signaler cet utilisateur\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marquer comme non-lu\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Modifier le pseudonyme\"],\"5dJK4M\":[\"Rôles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Vue d'ensemble\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Hors ligne\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utilisateur\"],\"7SU2U9\":[\"Copier l'identifiant du serveur\"],\"7VpPHA\":[\"Confirmer\"],\"7dZnmw\":[\"Pertinence\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nom d'utilisateur\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gérer le serveur\"],\"8FE4JE\":[\"Activer l'application d'authentification\"],\"8VGnad\":[\"Générer les codes de récupération\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Mot de passe\"],\"8aTiea\":[\"Personnalisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Entrez un nom d'utilisateur.\"],\"9D85wC\":[\"Copier l'identifiant utilisateur\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Réinitialiser le token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bannir\"],\"9nffag\":[\"Vous consultez d'anciens messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Débloquer l'utilisateur\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Créer un groupe\"],\"A9Rhec\":[\"Nom du salon\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Entrez un nouveau mot de passe.\"],\"AU7IRi\":[\"Salon textuel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Salon vocal\"],\"BHsrDx\":[\"Invitations\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message envoyé depuis une autre plateforme\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Voir le salon\"],\"CK7kdd\":[\"Supprimer le statut\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Description du salon\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Envoyer des messages\"],\"CkIs/i\":[\"Rendre les membres muets\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Mot de passe actuel\"],\"DDpDsO\":[\"Code d'invitation\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Communiqué officiel\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Terminé\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message non chargé, cliquez pour y accéder\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Proposer une fonctionnalité\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulser\"],\"EdQY6l\":[\"Aucun\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"A envoyé une pièce jointe\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Créer une catégorie\"],\"F1uGNS\":[\"Gérer les pseudonymes\"],\"FEr96N\":[\"Thème\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Retirer les avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Activer les notifications de Bureau\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentré\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copier l'identifiant du salon\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Groupes en commun\"],\"GhCPk1\":[\"Après la suppression, vous ne pourrez plus revenir en arrière.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Entrez votre mot de passe actuel.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Sélectionnez une méthode pour vous authentifier.\"],\"HAKBY9\":[\"Téléverser des fichiers\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notes enregistrées\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Renvoyer la vérification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Déplacer les membres\"],\"ImOQa9\":[\"Répondre\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"A envoyé plusieurs pièces jointes\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Impossible de clôturer le compte si les serveurs ne sont pas fermés ou transférés\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmer l'action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Voir les mises à jour précédentes\"],\"JUJmXm\":[\"Confirmez en utilisant la méthode sélectionnée.\"],\"JW8mxK\":[\"Enregistrer dans vos notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bienvenue sur\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Vous pouvez aussi faire un clic droit sur l'icône utilisateur en haut à gauche, ou un clic gauche si vous êtes déjà sur l'accueil.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Supprimer le message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Le contenu enfreint une ou plusieurs lois\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Serveur Officiel\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Retirer l'ami\"],\"LcET2C\":[\"Politique de confidentialité\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nous vous avons envoyé un e-mail de vérification. Merci d'attendre jusqu'à 10 minutes pour qu'il arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nom du serveur\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Quitter\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Visionnez les rapports de bugs actifs ici.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Faites-nous savoir comment améliorer notre application en donnant votre avis.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Votre compte a bien été vérifié\xA0!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Adresse e-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Vous n'avez pas la permission d'envoyer des messages dans ce salon.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Réinitialiser\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejeter demande d'ami\"],\"PSP1MZ\":[\"Nom du rôle\"],\"PWOA0E\":[\"Mentions uniquement\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Envoyer du contenu intégré\"],\"PnzsrT\":[\"Code source\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Revenir aux messages récents\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inactif\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Modifier le message\"],\"QqoBlW\":[\"Vérifiez vos e-mails\xA0!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Réinitialiser le mot de passe\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Traqueur de bugs\"],\"S3bIKF\":[\"Copier l'identifiant\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Veuillez scanner ou utiliser le jeton ci-dessous dans votre application d'authentification.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Supprimer l'authentificateur\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gérer les messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gérer les rôles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Paramètres\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invitez tous vos amis, des bots sympa, et organisez une grande fête.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Modifier l'avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message envoyé\"],\"VJScHU\":[\"Raison\"],\"VKsaTi\":[\"Répondre à\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Rendre les membres sourds\"],\"VsHxv+\":[\"Copier le texte\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Vérification du compte…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Les liens externes peuvent être dangereux\xA0!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Paramètres du client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Application d'authentification\"],\"YcVBkL\":[\"Message reçu\"],\"YirHq7\":[\"Suggestions\"],\"YlFpiA\":[\"Échec de la vérification\xA0!\"],\"Yp+Hi/\":[\"Ouvrir les paramètres\"],\"Z5HWHd\":[\"Activé\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vos codes de récupération\"],\"aAIQg2\":[\"Apparence\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Vous ne pourrez pas annuler cette action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Désactivé\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Désactiver le compte\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lire l'historique des messages\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bannir le membre\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gérer les permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Membre ayant invité\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Supprimer\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annuler\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Créer un nouveau bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviter d'autres personnes\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"Paramètres utilisateur\"],\"etgedT\":[\"Émojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gérer les personnalisations\"],\"fTMMeD\":[\"Créer une invitation\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"S'inscrire\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annuler la demande d'ami\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assigner des rôles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Signaler\"],\"gkBHk/\":[\"Créer un salon\"],\"gkmjYT\":[\"Quitter le serveur\"],\"go1IWB\":[\"Cet utilisateur vous a bloqué.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Supprimer le salon\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Entrez votre adresse e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Créer\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Accueil\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connexion\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mentionner\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Retourner à la page de connexion\"],\"jpJ5AL\":[\"Code de récupération\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bienvenue\u202F!\"],\"knjY+b\":[\"Vous pouvez la rouvrir plus tard, mais elle disparaîtra des deux côtés.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ajouter en ami\"],\"lSGjX7\":[\"Appel rejoint par un utilisateur\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Salons\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nom du groupe\"],\"mAYvqA\":[\"Bonjour\xA0!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Modifier votre identité\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Vous ne pourrez plus accéder à votre compte sans contacter le support. Toutefois, vos données ne seront pas supprimées.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Statut personnalisé\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amis en commun\"],\"nbzz1A\":[\"Entrez le code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Voici le début de vos notes.\"],\"o+XJ9D\":[\"Modifier\"],\"oB4OOq\":[\"Bannir les membres\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Connecté\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulser les membres\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Défaut\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Déconnexion\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Aller au début\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Appel quitté par un utilisateur\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mon compte\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tous les messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 personne a réagi\"],\"rxaY+5\":[\"Ne pas déranger\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avancé\"],\"t43mBk\":[\"Signaler ce serveur\"],\"tBmnPU\":[\"Amis\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gérer les webhooks\"],\"tdTuUv\":[\"Bloquer l'utilisateur\"],\"tfDRzk\":[\"Enregistrer\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utilisateur bloqué\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Se rendre sur le serveur des testeurs\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulser le membre\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Supprimer le rôle\"],\"utrCh2\":[\"Mettre des membres en temps mort\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"À propos\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Description du serveur\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Soutenez le projet en faisant un don, merci\xA0!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vidéo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Modifier l'identité\"],\"vXIe7J\":[\"Langue\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Gardez-les dans un endroit sûr.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messagerie\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrer dans le salon\"],\"wL3cK8\":[\"Récents\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membres\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Identité par message\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continuer\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bannissements\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Conditions d’utilisation\"],\"xpgPPI\":[\"Mes bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accepter demande d'ami\"],\"y1eoq1\":[\"Copier le lien\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Je confirme avoir au moins 18 ans.\"],\"yDOdwQ\":[\"Gestion des utilisateurs\"],\"yIBLq8\":[\"Parler\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fermer\"],\"z0hW8A\":[\"Voir les codes de récupération\"],\"z0t9bb\":[\"Connexion\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Voici le début de votre conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Anciens\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/fr/messages.po b/components/i18n/catalogs/fr/messages.po
new file mode 100644
index 0000000..7ee11da
--- /dev/null
+++ b/components/i18n/catalogs/fr/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: fr\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 personne a réagi"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "À propos"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Accepter demande d'ami"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Ajouter en ami"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avancé"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Tous les messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Vous êtes déjà ami avec cet utilisateur."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Apparence"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Assigner des rôles"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Application d'authentification"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Badges"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Bannir"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Bannir le membre"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Bannir les membres"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bannissements"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloquer l'utilisateur"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloqué"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Utilisateur bloqué"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Traqueur de bugs"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Annuler"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Annuler la demande d'ami"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Impossible de clôturer le compte si les serveurs ne sont pas fermés ou transférés"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Modifier"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Modifier l'avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Modifier le pseudonyme"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Description du salon"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nom du salon"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Salons"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Vérifiez vos e-mails !"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Supprimer le statut"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Paramètres du client"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Fermer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirmer"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirmer l'action"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Connexion"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Le contenu enfreint une ou plusieurs lois"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuer"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversations"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copier l'identifiant du salon"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copier l'identifiant"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copier le lien"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copier l'identifiant du message"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copier l'identifiant du serveur"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copier le texte"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copier l'identifiant utilisateur"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Créer"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Créer un groupe"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Créer un nouveau bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Créer un nouveau rôle"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Créer un compte"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Créer une catégorie"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Créer un salon"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Créer une invitation"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Mot de passe actuel"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Statut personnalisé"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personnalisation"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Rendre les membres sourds"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Défaut"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Supprimer"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Supprimer le salon"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Supprimer le message"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Supprimer le rôle"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Désactiver le compte"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ne pas déranger"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Terminé"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Modifier l'identité"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Modifier le message"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Modifier votre identité"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Adresse e-mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Émojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Activer l'application d'authentification"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Activer les notifications de Bureau"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Entrez un nouveau mot de passe."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entrer dans le salon"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Entrez le code"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Entrez votre mot de passe actuel."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Entrez un nom d'utilisateur."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Les liens externes peuvent être dangereux !"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Échec de la vérification !"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Suggestions"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Trouvez une communauté basée sur vos passe-temps ou sur vos intérêts."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Concentré"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amis"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Générer les codes de récupération"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Génération d'une invitation en cours…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Retourner à la page de connexion"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Se rendre sur le serveur des testeurs"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nom du groupe"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Bonjour !"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Accueil"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Je confirme avoir au moins 18 ans."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inactif"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisible"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invitez tous vos amis, des bots sympa, et organisez une grande fête."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Code d'invitation"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Inviter d'autres personnes"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Membre ayant invité"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitations"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Revenir aux messages récents"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Aller au début"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Expulser"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Expulser le membre"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Expulser les membres"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Langue"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Récents"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Quitter"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Quitter le groupe"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Quitter le serveur"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Faites-nous savoir comment améliorer notre application en donnant votre avis."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Déconnexion"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Se déconnecter de toutes les autres sessions"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Connexion"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Gérer les personnalisations"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Gérer les messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Gérer les pseudonymes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Gérer les permissions"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Gérer les rôles"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Gérer le serveur"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Gérer les webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marquer comme lu"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marquer comme non-lu"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Identité par message"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Membres"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mentionner"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Mentions uniquement"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Message"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Message non chargé, cliquez pour y accéder"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Message reçu"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Message envoyé"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Message envoyé depuis une autre plateforme"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Messagerie"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Déplacer les membres"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Rendre les membres muets"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Muet"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Amis en commun"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Groupes en commun"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mon compte"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mes bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nouveau mot de passe"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Pseudonyme"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Aucun"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifications"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Désactivé"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Communiqué officiel"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Serveur Officiel"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Hors ligne"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Anciens"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Activé"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Après la suppression, vous ne pourrez plus revenir en arrière."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Connecté"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Ouvrir les paramètres"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Vue d'ensemble"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Mot de passe"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permissions"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Choisissez le nom d'utilisateur par lequel vous souhaitez être trouvé. Il peut être changé plus tard dans les paramètres."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Confirmez en utilisant la méthode sélectionnée."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Entrez votre adresse e-mail."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Gardez-les dans un endroit sûr."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Veuillez scanner ou utiliser le jeton ci-dessous dans votre application d'authentification."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Sélectionnez une méthode pour vous authentifier."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Politique de confidentialité"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Lire l'historique des messages"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Raison"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Code de récupération"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "S'inscrire"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rejeter demande d'ami"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Pertinence"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Supprimer l'authentificateur"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Retirer les avatars"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Retirer l'ami"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Répondre"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Répondre à"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Signaler"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Signaler ce message"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Signaler ce serveur"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Signaler cet utilisateur"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Renvoyer la vérification"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Réinitialiser"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Réinitialiser le mot de passe"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Réinitialiser le token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nom du rôle"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Rôles"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Enregistrer"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Enregistrer dans vos notes"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notes enregistrées"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Sélectionnez votre langue"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Envoyer du contenu intégré"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Envoyer des messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "A envoyé une pièce jointe"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "A envoyé plusieurs pièces jointes"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Description du serveur"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nom du serveur"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessions"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Paramètres"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Plusieurs personnes sont en train d'écrire…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sons"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Code source"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Parler"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Proposer une fonctionnalité"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Donnez votre avis"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Soutenez le projet en faisant un don, merci !"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Conditions d’utilisation"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Salon textuel"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Thème"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Voici le début de votre conversation."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Voici le début de vos notes."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Cet utilisateur vous a bloqué."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Mettre des membres en temps mort"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Débloquer l'utilisateur"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Téléverser des fichiers"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Utilisateur"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Appel rejoint par un utilisateur"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Appel quitté par un utilisateur"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gestion des utilisateurs"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Paramètres utilisateur"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nom d'utilisateur"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Vérification du compte…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Vidéo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Voir le salon"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Visionnez les rapports de bugs actifs ici."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Voir les mises à jour précédentes"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Voir les codes de récupération"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Vous consultez d'anciens messages"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Salon vocal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Nous vous avons envoyé un e-mail de vérification. Merci d'attendre jusqu'à 10 minutes pour qu'il arrive."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Bienvenue sur"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Bienvenue !"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Vous pouvez aussi faire un clic droit sur l'icône utilisateur en haut à gauche, ou un clic gauche si vous êtes déjà sur l'accueil."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Vous pouvez la rouvrir plus tard, mais elle disparaîtra des deux côtés."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Vous pouvez signaler des problèmes et discuter des améliorations avec nous directement ici."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Vous ne pourrez pas annuler cette action."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Vous n'avez pas la permission d'envoyer des messages dans ce salon."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Vous ne pourrez plus accéder à votre compte sans contacter le support. Toutefois, vos données ne seront pas supprimées."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Vous ne pourrez pas revenir à moins d'être réinvité."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Votre compte a bien été vérifié !"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Vos codes de récupération"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ga/messages.js b/components/i18n/catalogs/ga/messages.js
new file mode 100644
index 0000000..19a69ef
--- /dev/null
+++ b/components/i18n/catalogs/ga/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Balbhaithe\"],\"+YFgJi\":[\"Suaitheantais\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Máirc as léite\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Cruthaigh ról nua\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logáil amach as gach seisiún eile\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Roghnaigh ainm úsáideora a theastaíonn uait go mbeadh daoine in ann tú a aimsiú, is féidir é seo a athrú níos déanaí i socruithe.\"],\"/qQDwm\":[\"Cuireadh a ghiniúint…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Cuir isteach aiseolas\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Cóipeáil ID teachtaireacht\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Fhagant grúpa\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Is féidir leat saincheisteanna a thuairisciú agus feabhsuithe a phlé linn go díreach anseo.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocáilte\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ní bheidh tú in ann teacht ar ais mura dtugtar cuireadh duit arís.\"],\"3QuNUr\":[\"Tá roinnt daoine ag clóscríobh…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Tá tú cairde leis an úsáideoir seo cheana féin.\"],\"3T8ziB\":[\"Cruthaigh cuntas\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seisiúin\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Leasainm\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Roghnaigh do theanga\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Aimsigh pobal atá bunaithe ar do chaitheamh aimsire nó spéiseanna.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Athraigh Leasainm\"],\"5dJK4M\":[\"Róil\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Forbhreathnú\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"As líne\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Úsáideoir\"],\"7SU2U9\":[\"Cóipeáil ID an fhreastalaí\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Ábharthacht\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Ainm Úsáideora\"],\"7vhWI8\":[\"Focal Faire Nua\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Bainistigh Freastalaí\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Gin Cóid Aisghabhála\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Pasfhocal\"],\"8aTiea\":[\"Saincheapadh\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Cuir isteach d'ainm úsáideora.\"],\"9D85wC\":[\"Cóipeáil ID úsáideora\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Ceadanna\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Cosc\"],\"9nffag\":[\"Ag féachaint ar sheanteachtaireachtaí\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Ban blac de úsáideor\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Cruthaigh grúpa\"],\"A9Rhec\":[\"Ainm Cainéal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Cuir isteach pasfhocal nua.\"],\"AU7IRi\":[\"Cainéal Téacs\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Cainéal Fuaime\"],\"BHsrDx\":[\"Cuireadh\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Seoladh an teachtaireacht chuig ardán eile\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Féach ar Mhuir nIocht\"],\"CK7kdd\":[\"Scrios stádais\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Cur síos ar an gCainéal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Seol Teachtaireachtaí\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Pasfhocal Reatha\"],\"DDpDsO\":[\"Cód Cuireadh\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Cumarsáid Oifigiúil\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Níl an teachtaireacht luchtaithe, cliceáil chun léim\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Tabhair moladh ceannaithe\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Ciceáil\"],\"EdQY6l\":[\"Faic\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Comhráití\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ceangaltán a sheoladh\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Cruthaigh catagóir\"],\"F1uGNS\":[\"Bainistigh Baill\"],\"FEr96N\":[\"Téama\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Bain avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Cuir fógraí córas ar siúl\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fócas\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Cóipeáil ID cainéal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grúpaí Frithpháirteach\"],\"GhCPk1\":[\"Nuair a scriostar é, níl aon dul ar ais.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Iontráil isteach do phasfhocal reatha.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Uaslódáil Comhaid\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Nótaí Sábháilte\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Cuir fíorú arís\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Freagair\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ceangailteáin seolta\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Sábháil go dtí do chuid nótaí\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Fáilte go\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Is féidir leat cliceáil ar dheis freisin ar an deilbhín úsáideora ar thaobh na láimhe clé barr, nó cliceáil ar chlé má tá tú sa bhaile cheana féin.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Scrios teachtaireacht\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Fuaimeanna\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Freastalaí Oifigiúil\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Bain chara\"],\"LcET2C\":[\"Polasaí Príobháideachais\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lig suas go dtí 10 nóiméad chun go dtiocfaidh sé le do thoil.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Ainm an Fhreastalaí\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Fág\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Féach tuairiscí gníomhacha fabht anseo faoi láthair.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Cuir in iúl dúinn conas is féidir linn ár n-aip a fheabhsú trí aiseolas a thabhairt dúinn.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Tá do chuntas fíoraithe!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Ríomhphost\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Níl cead agat teachtaireachtaí a sheoladh sa chainéal seo.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Ainm Róil\"],\"PWOA0E\":[\"Luanna Amháin\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Cód Bunaidh\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Léim go dtí an t-am i láthair\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Díomhaoin\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Eagarthóireacht teachtaireacht\"],\"QqoBlW\":[\"Seiceáil do r-phost!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Athshocraigh Pasfhocal\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rianaithe Bug\"],\"S3bIKF\":[\"Cóipeáil ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Bain Fíordheimhnitheoir\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Bainistigh Teachtaireachtaí\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Bainistigh róil\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Socruithe\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Tabhair cuireadh do chairde go léir, roinnt róbónna fionnuar, agus caith cóisir mhór.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Athraigh avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Teachtaireacht seolta\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Ag freagairt do\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Cóipeáil téacs\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"do chuntas á fhíorú…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Is féidir le naisc sheachtracha a bheith contúirteach!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Socruithe Cliant\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Fíordheimhnitheoir App\"],\"YcVBkL\":[\"Teachtaireacht a fuarthas\"],\"YirHq7\":[\"Aischothú\"],\"YlFpiA\":[\"Theip ar an bhfíorú!\"],\"Yp+Hi/\":[\"Oscail rogha\"],\"Z5HWHd\":[\"Ar Siúl\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Cuma\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"As faidhm\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Cuntas Díchumasaithe\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ball toirmeasc\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Cuireadh\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Scrios\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cealaigh\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Cruthaigh bot nua\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Tabhair cuireadh do dhaoine eile\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Dofheicthe\"],\"ekfzWq\":[\"Socruithe Úsáideora\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Cruthaigh chuireadh\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Cláraigh\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cealaigh iarratas\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Cruthaigh chainéal\"],\"gkmjYT\":[\"Fhagant friothálaí\"],\"go1IWB\":[\"Chuir an t-úsáideoir seo bac ort.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Scrios chainéal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Cuir isteach do ríomhphost.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Cruthaigh\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Baile\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Luaigh\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Róbat\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Téigh ar ais chuig Logáil Isteach\"],\"jpJ5AL\":[\"Cód Aisghabháil\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Fáilte romhat!\"],\"knjY+b\":[\"Is féidir leat é a athoscailt níos déanaí ach beidh sé imithe ar an dá thaobh.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Suimiú chara\"],\"lSGjX7\":[\"Chuaigh Úsáideoir isteach glao\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Cainéil\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ainm an Ghrúpa\"],\"mAYvqA\":[\"Haigh!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Stádais custam\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Cairde i gCoitinne\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Seo tús le do chuid nótaí.\"],\"o+XJ9D\":[\"Athraigh\"],\"oB4OOq\":[\"Ruaig Baill\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Ar líne\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Ciceáil baill\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Réamhshocrú\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logáil Amach\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Léim chuig an tús\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"D'imigh Úsáideoir glao\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mo Chuntas\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Gach Teachtaireacht\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"D'fhreagair 1 duine\"],\"rxaY+5\":[\"Ná Cur As Dom\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Cairde\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Bloc úsáideor\"],\"tfDRzk\":[\"Sábháil\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Úsaideoir Blocáilte\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Téigh chuig freastalaí an tástálaí\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Ball ciceáil\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Scrios Ról\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Faoi\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Cuir síos an bhFreastalaí\"],\"v1kQyJ\":[\"Crúcaí-gréasáin\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Próifíl\"],\"vJum3e\":[\"Tacaigh leis an tionscadal trí bhronnadh - go raibh maith agat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Eagarthóireacht aitheantas\"],\"vXIe7J\":[\"Teanga\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Téigh isteach\"],\"wL3cK8\":[\"Is déanaí\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Baill\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Teachtaireacht\"],\"xGVfLh\":[\"Leanúint ar aghaidh\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Toirmisc\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Tearmaí Seirbhíse\"],\"xpgPPI\":[\"Mo Róbataí\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Coipéal nasc\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Dearbhaím go bhfuil mé ocht mbliana déag d'aois (18) ar a laghad.\"],\"yDOdwQ\":[\"Bainistaíocht Úsáideoir\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Dún\"],\"z0hW8A\":[\"Féach Cóid Aisghabhála\"],\"z0t9bb\":[\"Logáil isteach\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ceart go leor\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Seo tús do chomhrá.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Is sine\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ga/messages.mjs b/components/i18n/catalogs/ga/messages.mjs
new file mode 100644
index 0000000..48e4f13
--- /dev/null
+++ b/components/i18n/catalogs/ga/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Balbhaithe\"],\"+YFgJi\":[\"Suaitheantais\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Máirc as léite\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Cruthaigh ról nua\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logáil amach as gach seisiún eile\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Roghnaigh ainm úsáideora a theastaíonn uait go mbeadh daoine in ann tú a aimsiú, is féidir é seo a athrú níos déanaí i socruithe.\"],\"/qQDwm\":[\"Cuireadh a ghiniúint…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Cuir isteach aiseolas\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Cóipeáil ID teachtaireacht\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Fhagant grúpa\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Is féidir leat saincheisteanna a thuairisciú agus feabhsuithe a phlé linn go díreach anseo.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocáilte\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ní bheidh tú in ann teacht ar ais mura dtugtar cuireadh duit arís.\"],\"3QuNUr\":[\"Tá roinnt daoine ag clóscríobh…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Tá tú cairde leis an úsáideoir seo cheana féin.\"],\"3T8ziB\":[\"Cruthaigh cuntas\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seisiúin\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Leasainm\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Roghnaigh do theanga\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Aimsigh pobal atá bunaithe ar do chaitheamh aimsire nó spéiseanna.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Athraigh Leasainm\"],\"5dJK4M\":[\"Róil\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Forbhreathnú\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"As líne\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Úsáideoir\"],\"7SU2U9\":[\"Cóipeáil ID an fhreastalaí\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Ábharthacht\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Ainm Úsáideora\"],\"7vhWI8\":[\"Focal Faire Nua\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Bainistigh Freastalaí\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Gin Cóid Aisghabhála\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Pasfhocal\"],\"8aTiea\":[\"Saincheapadh\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Cuir isteach d'ainm úsáideora.\"],\"9D85wC\":[\"Cóipeáil ID úsáideora\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Ceadanna\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Cosc\"],\"9nffag\":[\"Ag féachaint ar sheanteachtaireachtaí\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Ban blac de úsáideor\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Cruthaigh grúpa\"],\"A9Rhec\":[\"Ainm Cainéal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Cuir isteach pasfhocal nua.\"],\"AU7IRi\":[\"Cainéal Téacs\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Cainéal Fuaime\"],\"BHsrDx\":[\"Cuireadh\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Seoladh an teachtaireacht chuig ardán eile\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Féach ar Mhuir nIocht\"],\"CK7kdd\":[\"Scrios stádais\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Cur síos ar an gCainéal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Seol Teachtaireachtaí\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Pasfhocal Reatha\"],\"DDpDsO\":[\"Cód Cuireadh\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Cumarsáid Oifigiúil\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Níl an teachtaireacht luchtaithe, cliceáil chun léim\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Tabhair moladh ceannaithe\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Ciceáil\"],\"EdQY6l\":[\"Faic\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Comhráití\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ceangaltán a sheoladh\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Cruthaigh catagóir\"],\"F1uGNS\":[\"Bainistigh Baill\"],\"FEr96N\":[\"Téama\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Bain avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Cuir fógraí córas ar siúl\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fócas\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Cóipeáil ID cainéal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grúpaí Frithpháirteach\"],\"GhCPk1\":[\"Nuair a scriostar é, níl aon dul ar ais.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Iontráil isteach do phasfhocal reatha.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Uaslódáil Comhaid\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Nótaí Sábháilte\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Cuir fíorú arís\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Freagair\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ceangailteáin seolta\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Sábháil go dtí do chuid nótaí\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Fáilte go\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Is féidir leat cliceáil ar dheis freisin ar an deilbhín úsáideora ar thaobh na láimhe clé barr, nó cliceáil ar chlé má tá tú sa bhaile cheana féin.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Scrios teachtaireacht\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Fuaimeanna\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Freastalaí Oifigiúil\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Bain chara\"],\"LcET2C\":[\"Polasaí Príobháideachais\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lig suas go dtí 10 nóiméad chun go dtiocfaidh sé le do thoil.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Ainm an Fhreastalaí\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Fág\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Féach tuairiscí gníomhacha fabht anseo faoi láthair.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Cuir in iúl dúinn conas is féidir linn ár n-aip a fheabhsú trí aiseolas a thabhairt dúinn.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Tá do chuntas fíoraithe!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Ríomhphost\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Níl cead agat teachtaireachtaí a sheoladh sa chainéal seo.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Ainm Róil\"],\"PWOA0E\":[\"Luanna Amháin\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Cód Bunaidh\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Léim go dtí an t-am i láthair\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Díomhaoin\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Eagarthóireacht teachtaireacht\"],\"QqoBlW\":[\"Seiceáil do r-phost!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Athshocraigh Pasfhocal\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rianaithe Bug\"],\"S3bIKF\":[\"Cóipeáil ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Bain Fíordheimhnitheoir\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Bainistigh Teachtaireachtaí\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Bainistigh róil\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Socruithe\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Tabhair cuireadh do chairde go léir, roinnt róbónna fionnuar, agus caith cóisir mhór.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Athraigh avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Teachtaireacht seolta\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Ag freagairt do\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Cóipeáil téacs\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"do chuntas á fhíorú…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Is féidir le naisc sheachtracha a bheith contúirteach!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Socruithe Cliant\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Fíordheimhnitheoir App\"],\"YcVBkL\":[\"Teachtaireacht a fuarthas\"],\"YirHq7\":[\"Aischothú\"],\"YlFpiA\":[\"Theip ar an bhfíorú!\"],\"Yp+Hi/\":[\"Oscail rogha\"],\"Z5HWHd\":[\"Ar Siúl\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Cuma\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"As faidhm\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Cuntas Díchumasaithe\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ball toirmeasc\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Cuireadh\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Scrios\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cealaigh\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Cruthaigh bot nua\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Tabhair cuireadh do dhaoine eile\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Dofheicthe\"],\"ekfzWq\":[\"Socruithe Úsáideora\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Cruthaigh chuireadh\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Cláraigh\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cealaigh iarratas\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Cruthaigh chainéal\"],\"gkmjYT\":[\"Fhagant friothálaí\"],\"go1IWB\":[\"Chuir an t-úsáideoir seo bac ort.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Scrios chainéal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Cuir isteach do ríomhphost.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Cruthaigh\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Baile\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Luaigh\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Róbat\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Téigh ar ais chuig Logáil Isteach\"],\"jpJ5AL\":[\"Cód Aisghabháil\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Fáilte romhat!\"],\"knjY+b\":[\"Is féidir leat é a athoscailt níos déanaí ach beidh sé imithe ar an dá thaobh.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Suimiú chara\"],\"lSGjX7\":[\"Chuaigh Úsáideoir isteach glao\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Cainéil\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ainm an Ghrúpa\"],\"mAYvqA\":[\"Haigh!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Stádais custam\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Cairde i gCoitinne\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Seo tús le do chuid nótaí.\"],\"o+XJ9D\":[\"Athraigh\"],\"oB4OOq\":[\"Ruaig Baill\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Ar líne\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Ciceáil baill\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Réamhshocrú\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logáil Amach\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Léim chuig an tús\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"D'imigh Úsáideoir glao\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mo Chuntas\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Gach Teachtaireacht\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"D'fhreagair 1 duine\"],\"rxaY+5\":[\"Ná Cur As Dom\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Cairde\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Bloc úsáideor\"],\"tfDRzk\":[\"Sábháil\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Úsaideoir Blocáilte\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Téigh chuig freastalaí an tástálaí\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Ball ciceáil\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Scrios Ról\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Faoi\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Cuir síos an bhFreastalaí\"],\"v1kQyJ\":[\"Crúcaí-gréasáin\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Próifíl\"],\"vJum3e\":[\"Tacaigh leis an tionscadal trí bhronnadh - go raibh maith agat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Eagarthóireacht aitheantas\"],\"vXIe7J\":[\"Teanga\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Téigh isteach\"],\"wL3cK8\":[\"Is déanaí\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Baill\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Teachtaireacht\"],\"xGVfLh\":[\"Leanúint ar aghaidh\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Toirmisc\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Tearmaí Seirbhíse\"],\"xpgPPI\":[\"Mo Róbataí\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Coipéal nasc\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Dearbhaím go bhfuil mé ocht mbliana déag d'aois (18) ar a laghad.\"],\"yDOdwQ\":[\"Bainistaíocht Úsáideoir\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Dún\"],\"z0hW8A\":[\"Féach Cóid Aisghabhála\"],\"z0t9bb\":[\"Logáil isteach\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ceart go leor\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Seo tús do chomhrá.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Is sine\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ga/messages.po b/components/i18n/catalogs/ga/messages.po
new file mode 100644
index 0000000..082d932
--- /dev/null
+++ b/components/i18n/catalogs/ga/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ga\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "D'fhreagair 1 duine"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Faoi"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Suimiú chara"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Gach Teachtaireacht"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Tá tú cairde leis an úsáideoir seo cheana féin."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Cuma"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Fíordheimhnitheoir App"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Suaitheantais"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Cosc"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ball toirmeasc"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Ruaig Baill"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Toirmisc"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloc úsáideor"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blocáilte"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Úsaideoir Blocáilte"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Róbat"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Rianaithe Bug"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cealaigh"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cealaigh iarratas"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Athraigh"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Athraigh avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Athraigh Leasainm"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Cur síos ar an gCainéal"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Ainm Cainéal"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Cainéil"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Seiceáil do r-phost!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Scrios stádais"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Socruithe Cliant"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Dún"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Leanúint ar aghaidh"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Comhráití"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Cóipeáil ID cainéal"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Cóipeáil ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Coipéal nasc"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Cóipeáil ID teachtaireacht"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Cóipeáil ID an fhreastalaí"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Cóipeáil téacs"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Cóipeáil ID úsáideora"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Cruthaigh"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Cruthaigh grúpa"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Cruthaigh bot nua"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Cruthaigh ról nua"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Cruthaigh cuntas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Cruthaigh catagóir"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Cruthaigh chainéal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Cruthaigh chuireadh"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Pasfhocal Reatha"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Stádais custam"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Saincheapadh"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Réamhshocrú"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Scrios"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Scrios chainéal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Scrios teachtaireacht"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Scrios Ról"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Cuntas Díchumasaithe"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ná Cur As Dom"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Eagarthóireacht aitheantas"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Eagarthóireacht teachtaireacht"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Ríomhphost"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Cuir fógraí córas ar siúl"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Cuir isteach pasfhocal nua."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Téigh isteach"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Iontráil isteach do phasfhocal reatha."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Cuir isteach d'ainm úsáideora."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Is féidir le naisc sheachtracha a bheith contúirteach!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Theip ar an bhfíorú!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Aischothú"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Aimsigh pobal atá bunaithe ar do chaitheamh aimsire nó spéiseanna."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fócas"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Cairde"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Gin Cóid Aisghabhála"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Cuireadh a ghiniúint…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Téigh ar ais chuig Logáil Isteach"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Téigh chuig freastalaí an tástálaí"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Ainm an Ghrúpa"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Haigh!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Baile"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Dearbhaím go bhfuil mé ocht mbliana déag d'aois (18) ar a laghad."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Díomhaoin"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Dofheicthe"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Tabhair cuireadh do chairde go léir, roinnt róbónna fionnuar, agus caith cóisir mhór."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Cód Cuireadh"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Tabhair cuireadh do dhaoine eile"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Cuireadh"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Cuireadh"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Léim go dtí an t-am i láthair"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Léim chuig an tús"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Ciceáil"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Ball ciceáil"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Ciceáil baill"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Teanga"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Is déanaí"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Fág"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Fhagant grúpa"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Fhagant friothálaí"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Cuir in iúl dúinn conas is féidir linn ár n-aip a fheabhsú trí aiseolas a thabhairt dúinn."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Logáil Amach"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Logáil amach as gach seisiún eile"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Logáil isteach"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Bainistigh Teachtaireachtaí"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Bainistigh Baill"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Bainistigh róil"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Bainistigh Freastalaí"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Máirc as léite"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Masquerade"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Baill"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Luaigh"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Luanna Amháin"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Teachtaireacht"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Níl an teachtaireacht luchtaithe, cliceáil chun léim"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Teachtaireacht a fuarthas"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Teachtaireacht seolta"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Seoladh an teachtaireacht chuig ardán eile"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Balbhaithe"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Cairde i gCoitinne"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grúpaí Frithpháirteach"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mo Chuntas"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mo Róbataí"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Focal Faire Nua"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Leasainm"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Faic"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Fógraí"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "As faidhm"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Cumarsáid Oifigiúil"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Freastalaí Oifigiúil"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "As líne"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ceart go leor"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Is sine"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Ar Siúl"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Nuair a scriostar é, níl aon dul ar ais."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Ar líne"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Oscail rogha"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Forbhreathnú"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Pasfhocal"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Ceadanna"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Roghnaigh ainm úsáideora a theastaíonn uait go mbeadh daoine in ann tú a aimsiú, is féidir é seo a athrú níos déanaí i socruithe."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Cuir isteach do ríomhphost."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Polasaí Príobháideachais"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Próifíl"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Cód Aisghabháil"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Cláraigh"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Ábharthacht"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Bain Fíordheimhnitheoir"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Bain avatars"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Bain chara"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Freagair"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Ag freagairt do"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Cuir fíorú arís"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Athshocraigh Pasfhocal"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Ainm Róil"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Róil"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Sábháil"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Sábháil go dtí do chuid nótaí"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Nótaí Sábháilte"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Roghnaigh do theanga"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Seol Teachtaireachtaí"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Ceangaltán a sheoladh"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Ceangailteáin seolta"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Cuir síos an bhFreastalaí"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Ainm an Fhreastalaí"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Seisiúin"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Socruithe"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Tá roinnt daoine ag clóscríobh…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Fuaimeanna"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Cód Bunaidh"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Tabhair moladh ceannaithe"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Cuir isteach aiseolas"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Tacaigh leis an tionscadal trí bhronnadh - go raibh maith agat!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Tearmaí Seirbhíse"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Cainéal Téacs"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Téama"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Seo tús do chomhrá."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Seo tús le do chuid nótaí."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Chuir an t-úsáideoir seo bac ort."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Ban blac de úsáideor"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Uaslódáil Comhaid"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Úsáideoir"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Chuaigh Úsáideoir isteach glao"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "D'imigh Úsáideoir glao"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Bainistaíocht Úsáideoir"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Socruithe Úsáideora"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Ainm Úsáideora"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "do chuntas á fhíorú…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Féach ar Mhuir nIocht"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Féach tuairiscí gníomhacha fabht anseo faoi láthair."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Féach Cóid Aisghabhála"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Ag féachaint ar sheanteachtaireachtaí"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Cainéal Fuaime"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Lig suas go dtí 10 nóiméad chun go dtiocfaidh sé le do thoil."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Crúcaí-gréasáin"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Fáilte go"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Fáilte romhat!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Is féidir leat cliceáil ar dheis freisin ar an deilbhín úsáideora ar thaobh na láimhe clé barr, nó cliceáil ar chlé má tá tú sa bhaile cheana féin."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Is féidir leat é a athoscailt níos déanaí ach beidh sé imithe ar an dá thaobh."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Is féidir leat saincheisteanna a thuairisciú agus feabhsuithe a phlé linn go díreach anseo."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Níl cead agat teachtaireachtaí a sheoladh sa chainéal seo."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Ní bheidh tú in ann teacht ar ais mura dtugtar cuireadh duit arís."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Tá do chuntas fíoraithe!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/hi/messages.js b/components/i18n/catalogs/hi/messages.js
new file mode 100644
index 0000000..33c5aa9
--- /dev/null
+++ b/components/i18n/catalogs/hi/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"म्यूट किए गए\"],\"+YFgJi\":[\"बैज\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"पढ़े के रूप में चिह्नित करें\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"एक नई भूमिका बनाएं\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"अन्य सभी सत्रों से लॉग आउट करें\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"एक उपयोगकर्ता नाम चुनें जिसे आप चाहते हैं कि लोग आपको ढूंढ सकें, इसे बाद में सेटिंग में बदला जा सकता है।\"],\"/qQDwm\":[\"आमंत्रण जनरेट किया जा रहा है…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"मैसेज रिपोर्ट करो\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"प्रतिपुष्टि दें\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"संदेश आईडी कॉपी करें\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"समूह छोड़ें\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"आप यहाँ सीधे हमें समस्याओं की सूचना दे सकते हैं और हमारे साथ सुधारों पर चर्चा कर सकते हैं।\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"अवरोधित\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"जब तक आपको फिर से आमंत्रित नहीं किया जाता, आप फिर से शामिल नहीं हो पाएंगे।\"],\"3QuNUr\":[\"कई लोग टाइप कर रहे हैं…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"पहले से ही इस उपयोगकर्ता के साथ दोस्त.\"],\"3T8ziB\":[\"खाता बनाएँ\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"सत्र\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"उपनाम\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"अपनी भाषा का चयन करें\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"अपने शौक या रुचियों के आधार पर एक समुदाय खोजें।\"],\"572q5a\":[\"उपयोगकर्ता को रिपोर्ट करें\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"अपठित के रूप में चिह्नित करें\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"उपनाम बदलें\"],\"5dJK4M\":[\"भूमिकाएँ\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"अवलोकन\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ऑफ़लाइन\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"उपयोगकर्ता\"],\"7SU2U9\":[\"सर्वर आईडी कॉपी करें\"],\"7VpPHA\":[\"पुष्टि\"],\"7dZnmw\":[\"प्रासंगिकता\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"उपयोगकर्ता नाम\"],\"7vhWI8\":[\"नया पासवर्ड\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"सर्वर प्रबंधित करें\"],\"8FE4JE\":[\"प्रमाणक अनुप्रयोग सक्षम करें\"],\"8VGnad\":[\"पुनर्प्राप्ति कोड जनरेट करें\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"पासवर्ड\"],\"8aTiea\":[\"कस्टमाइज़ेशन\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"अपना पसंदीदा उपयोगकर्ता नाम डालें।\"],\"9D85wC\":[\"यूजर आईडी कॉपी करें\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"अनुमतियां\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"प्रतिबंध\"],\"9nffag\":[\"पुराने संदेश देखना\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"उपयोगकर्ता को ब्लॉक करें\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"एक समूह बनाएं\"],\"A9Rhec\":[\"चैनल का नाम\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"नया पासवर्ड डालें।\"],\"AU7IRi\":[\"पाठ चैनल\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"आवाज चैनल\"],\"BHsrDx\":[\"आमंत्रण\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"संदेश दूसरे प्लेटफॉर्म पर भेजा गया था\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"चैनल देखें\"],\"CK7kdd\":[\"स्पष्ट स्थिति\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"चैनल विवरण\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"मूक सदस्य\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"वर्तमान पासवर्ड\"],\"DDpDsO\":[\"कोड आमंत्रित\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"आधिकारिक संचार\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"समाज-सम्मत\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"संदेश लोड नहीं हुआ, कूदने के लिए क्लिक करें|\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"सुविधा सुझाव सबमिट करें\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"लात\"],\"EdQY6l\":[\"कोई नहीं\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"बात चिट\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"एक अनुलग्नक भेजा\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"श्रेणी बनाएँ\"],\"F1uGNS\":[\"उपनाम प्रबंधित करें\"],\"FEr96N\":[\"विषय\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"अवतारों को हटाएं\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"डेस्कटॉप सूचनाएं सक्षम करें.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"संकेन्द्रित\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"चैनल आईडी कॉपी करें\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"परस्पर समूह\"],\"GhCPk1\":[\"एक बार इसे हटा दिए जाने के बाद, वापस नहीं जाना है।\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"अपना वर्तमान पासवर्ड डालें।\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"कृपया अपने अनुरोध को प्रमाणित करने के लिए एक विधि का चयन करें.\"],\"HAKBY9\":[\"फ़ाइलें अपलोड करें\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"सहेजे गए नोट\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"सत्यापन पुनः भेजें\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"सदस्यों को स्थानांतरित करें\"],\"ImOQa9\":[\"जवाब दे दो\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"कई अटैचमेंट भेजे\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"कार्रवाई की पुष्टि करें\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"पुराने अद्यतन देखें\"],\"JUJmXm\":[\"कृपया चयनित विधि का उपयोग करके पुष्टि करें.\"],\"JW8mxK\":[\"अपने नोट्स में सहेजें\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"में स्वागत\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"आप ऊपर बाईं ओर उपयोक्ता आइकन पर दायाँ-क्लिक भी कर सकते हैं, अथवा यदि आप पहले से ही गृह पर हैं तो उसपर बायाँ-क्लिक करें।\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"संदेश को हटाएं\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"सामग्री एक या अधिक कानूनों को तोड़ती है\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ध्वनि\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"आधिकारिक सर्वर\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"मित्र को निकालें\"],\"LcET2C\":[\"गोपनीयता नीति\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"हमने आपको एक सत्यापन ईमेल भेजा है । कृपया इसे आने के लिए 10 मिनट तक का समय दें।\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"सर्वर का नाम\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"छोड़ना\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"वर्तमान में सक्रिय बग रिपोर्ट यहां देखें।\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"प्रतिपुष्टि देकर हमें बतायें कि हम अपने ऍप को कैसे सुधार सकते हैं।\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"खाता सत्यापित हुआ!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ईमेल\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"आपको इस चैनल में संदेश भेजने की अनुमति नहीं है।\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"रीसेट\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"भूमिका का नाम\"],\"PWOA0E\":[\"केवल उल्लेख\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"एम्बेड भेजें\"],\"PnzsrT\":[\"सोर्स कोड\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"प्रस्तुत करने के लिए कूदें\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"निष्क्रय\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"संदेश संपादित करें\"],\"QqoBlW\":[\"अपना मेल देखें!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"पासवर्ड रीसेट करें\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"बग ट्रैकर\"],\"S3bIKF\":[\"आईडी कॉपी करें\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"कृपया अपने प्रमाणीकरण ऐप में नीचे दिए गए टोकन को स्कैन या उपयोग करें।\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"प्रमाणक निकालें\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"संदेश प्रबंधित करें\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"भूमिकाएँ प्रबंधित करें\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"समायोजन\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"अपने सभी दोस्तों, कुछ अच्छे बॉट्स को आमंत्रित करें और एक बड़ी पार्टी करें।\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"अवतार बदलें\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"मैसेज बेजा गया\"],\"VJScHU\":[\"कारण\"],\"VKsaTi\":[\"जवाब दे रहे हैं\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"सदस्य को बहरे करे\"],\"VsHxv+\":[\"टेक्स्ट कॉपी करें\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"खाते का सत्यापन जारी है…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"बाहरी लिंक खतरनाक हो सकते हैं!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ग्राहक सेटिंग्स\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"ऑथेंटिकटर ऍप\"],\"YcVBkL\":[\"संदेश मिल गया\"],\"YirHq7\":[\"प्रतिपुष्टि\"],\"YlFpiA\":[\"सत्यापित करने में विफल हुआ!\"],\"Yp+Hi/\":[\"समायोजन\"],\"Z5HWHd\":[\"चालू\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"आपके पुनर्प्राप्ति कोड\"],\"aAIQg2\":[\"दिखावट\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"आप इस क्रिया को पूर्ववत नहीं कर सकते.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"बंद\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"खाता अक्षम करें\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"संदेश का इतिहास पढ़ें\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"सदस्यों को प्रतिबंधित करें\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"अनुमतियाँ प्रबंधित करें\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"निमंत्रणदाता\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"हटाएं\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"रद्द करें\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"एक नया बॉट बनाएं\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"दूसरों को आमंत्रित करें\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"अदृश्य\"],\"ekfzWq\":[\"उपयोगकर्ता सेटिंग\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"कस्टमाइज़ेशन प्रबंधित करें\"],\"fTMMeD\":[\"आमंत्रण बनाएँ\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"पंजीकृत करें\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"अनुरोध रद्द करें\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"भूमिकाएँ असाइन करें\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"रिपोर्ट\"],\"gkBHk/\":[\"चैनल बनाएँ\"],\"gkmjYT\":[\"सर्वर छोड़ दें\"],\"go1IWB\":[\"इस उपयोगकर्ता ने आपको ब्लॉक कर दिया है.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"चैनल हटाएँ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"अपना ईमेल पता डालें।\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"बनाये\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"घर\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"सूचनाएं\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"जोड़ना\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"उल्लेख\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"बौट\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"अपना पासवर्ड भूल गए?\"],\"jpJ5AL\":[\"पुनर्प्राप्ति कोड\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"अवतार\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"आपका स्वागत है!\"],\"knjY+b\":[\"आप इसे बाद में फिर से खोल सकते हैं लेकिन यह दोनों तरफ से गायब हो जाएगा।\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"मित्र जोड़ें\"],\"lSGjX7\":[\"उपयोगकर्ता कॉल में शामिल हुए\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"चैनल\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"समूह नाम\"],\"mAYvqA\":[\"नमस्ते!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"कस्टम स्थिति\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"परस्पर मित्र\"],\"nbzz1A\":[\"कोड दर्ज करें\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"यह आपके नोट्स की शुरुआत है।\"],\"o+XJ9D\":[\"परिवर्तन\"],\"oB4OOq\":[\"सदस्यों को प्रतिबंध करे\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"ऑनलाइन\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"किक सदस्य\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"चूक जाना\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"लॉग आउट\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"शुरुआत में कूदें\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"उपयोगकर्ता वाम कॉल\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"मेरा खाता\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"सभी संदेश\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"एक यूजर ने रियेक्ट किया\"],\"rxaY+5\":[\"परेशान न करें\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"सर्वर को रिपोर्ट करें\"],\"tBmnPU\":[\"मित्र\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks प्रबंधित करें\"],\"tdTuUv\":[\"उपयोगकर्ता को ब्लॉक करें\"],\"tfDRzk\":[\"सहेजें\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"अवरुद्ध उपयोगकर्ता\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"परीक्षक सर्वर पर जायें\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"सदस्यों को हटा दें\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"भूमिका हटाएँ\"],\"utrCh2\":[\"टाइमआउट सदस्य\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"बारे में\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"सर्वर विवरण\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"प्रोफ़ाइल\"],\"vJum3e\":[\"दान करके परियोजना को समर्थन दें - आपका धन्यवाद!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"वीडियो\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"पहचान संपादित करें\"],\"vXIe7J\":[\"भाषा\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"कृपया इन्हें किसी सुरक्षित स्थान पर सहेजें.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"चैनल दर्ज करें\"],\"wL3cK8\":[\"नवीनतम\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"सदस्यों\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"छद्मवेष-समारोह\"],\"xDAtGP\":[\"संदेश\"],\"xGVfLh\":[\"आगे बढ़ें\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"पर रोक लगाई\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"सेवा शर्तें\"],\"xpgPPI\":[\"मेरे बॉट्स\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"लिंक कॉपी करे\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"मैं पुष्टि करता/करती हूं कि मेरी आयु कम से कम 18 वर्ष है।\"],\"yDOdwQ\":[\"उपयोगकर्ता प्रबंधन\"],\"yIBLq8\":[\"बोलना\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"बंद करे\"],\"z0hW8A\":[\"पुनर्प्राप्ति कोड देखें\"],\"z0t9bb\":[\"लॉग इन करें\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"ठीक\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"यह आपकी बातचीत की शुरुआत है।\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"सबसे पुराने\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/hi/messages.mjs b/components/i18n/catalogs/hi/messages.mjs
new file mode 100644
index 0000000..ab19246
--- /dev/null
+++ b/components/i18n/catalogs/hi/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"म्यूट किए गए\"],\"+YFgJi\":[\"बैज\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"पढ़े के रूप में चिह्नित करें\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"एक नई भूमिका बनाएं\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"अन्य सभी सत्रों से लॉग आउट करें\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"एक उपयोगकर्ता नाम चुनें जिसे आप चाहते हैं कि लोग आपको ढूंढ सकें, इसे बाद में सेटिंग में बदला जा सकता है।\"],\"/qQDwm\":[\"आमंत्रण जनरेट किया जा रहा है…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"मैसेज रिपोर्ट करो\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"प्रतिपुष्टि दें\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"संदेश आईडी कॉपी करें\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"समूह छोड़ें\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"आप यहाँ सीधे हमें समस्याओं की सूचना दे सकते हैं और हमारे साथ सुधारों पर चर्चा कर सकते हैं।\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"अवरोधित\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"जब तक आपको फिर से आमंत्रित नहीं किया जाता, आप फिर से शामिल नहीं हो पाएंगे।\"],\"3QuNUr\":[\"कई लोग टाइप कर रहे हैं…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"पहले से ही इस उपयोगकर्ता के साथ दोस्त.\"],\"3T8ziB\":[\"खाता बनाएँ\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"सत्र\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"उपनाम\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"अपनी भाषा का चयन करें\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"अपने शौक या रुचियों के आधार पर एक समुदाय खोजें।\"],\"572q5a\":[\"उपयोगकर्ता को रिपोर्ट करें\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"अपठित के रूप में चिह्नित करें\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"उपनाम बदलें\"],\"5dJK4M\":[\"भूमिकाएँ\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"अवलोकन\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ऑफ़लाइन\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"उपयोगकर्ता\"],\"7SU2U9\":[\"सर्वर आईडी कॉपी करें\"],\"7VpPHA\":[\"पुष्टि\"],\"7dZnmw\":[\"प्रासंगिकता\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"उपयोगकर्ता नाम\"],\"7vhWI8\":[\"नया पासवर्ड\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"सर्वर प्रबंधित करें\"],\"8FE4JE\":[\"प्रमाणक अनुप्रयोग सक्षम करें\"],\"8VGnad\":[\"पुनर्प्राप्ति कोड जनरेट करें\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"पासवर्ड\"],\"8aTiea\":[\"कस्टमाइज़ेशन\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"अपना पसंदीदा उपयोगकर्ता नाम डालें।\"],\"9D85wC\":[\"यूजर आईडी कॉपी करें\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"अनुमतियां\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"प्रतिबंध\"],\"9nffag\":[\"पुराने संदेश देखना\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"उपयोगकर्ता को ब्लॉक करें\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"एक समूह बनाएं\"],\"A9Rhec\":[\"चैनल का नाम\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"नया पासवर्ड डालें।\"],\"AU7IRi\":[\"पाठ चैनल\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"आवाज चैनल\"],\"BHsrDx\":[\"आमंत्रण\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"संदेश दूसरे प्लेटफॉर्म पर भेजा गया था\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"चैनल देखें\"],\"CK7kdd\":[\"स्पष्ट स्थिति\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"चैनल विवरण\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"मूक सदस्य\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"वर्तमान पासवर्ड\"],\"DDpDsO\":[\"कोड आमंत्रित\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"आधिकारिक संचार\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"समाज-सम्मत\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"संदेश लोड नहीं हुआ, कूदने के लिए क्लिक करें|\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"सुविधा सुझाव सबमिट करें\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"लात\"],\"EdQY6l\":[\"कोई नहीं\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"बात चिट\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"एक अनुलग्नक भेजा\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"श्रेणी बनाएँ\"],\"F1uGNS\":[\"उपनाम प्रबंधित करें\"],\"FEr96N\":[\"विषय\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"अवतारों को हटाएं\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"डेस्कटॉप सूचनाएं सक्षम करें.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"संकेन्द्रित\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"चैनल आईडी कॉपी करें\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"परस्पर समूह\"],\"GhCPk1\":[\"एक बार इसे हटा दिए जाने के बाद, वापस नहीं जाना है।\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"अपना वर्तमान पासवर्ड डालें।\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"कृपया अपने अनुरोध को प्रमाणित करने के लिए एक विधि का चयन करें.\"],\"HAKBY9\":[\"फ़ाइलें अपलोड करें\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"सहेजे गए नोट\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"सत्यापन पुनः भेजें\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"सदस्यों को स्थानांतरित करें\"],\"ImOQa9\":[\"जवाब दे दो\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"कई अटैचमेंट भेजे\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"कार्रवाई की पुष्टि करें\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"पुराने अद्यतन देखें\"],\"JUJmXm\":[\"कृपया चयनित विधि का उपयोग करके पुष्टि करें.\"],\"JW8mxK\":[\"अपने नोट्स में सहेजें\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"में स्वागत\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"आप ऊपर बाईं ओर उपयोक्ता आइकन पर दायाँ-क्लिक भी कर सकते हैं, अथवा यदि आप पहले से ही गृह पर हैं तो उसपर बायाँ-क्लिक करें।\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"संदेश को हटाएं\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"सामग्री एक या अधिक कानूनों को तोड़ती है\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ध्वनि\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"आधिकारिक सर्वर\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"मित्र को निकालें\"],\"LcET2C\":[\"गोपनीयता नीति\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"हमने आपको एक सत्यापन ईमेल भेजा है । कृपया इसे आने के लिए 10 मिनट तक का समय दें।\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"सर्वर का नाम\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"छोड़ना\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"वर्तमान में सक्रिय बग रिपोर्ट यहां देखें।\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"प्रतिपुष्टि देकर हमें बतायें कि हम अपने ऍप को कैसे सुधार सकते हैं।\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"खाता सत्यापित हुआ!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ईमेल\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"आपको इस चैनल में संदेश भेजने की अनुमति नहीं है।\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"रीसेट\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"भूमिका का नाम\"],\"PWOA0E\":[\"केवल उल्लेख\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"एम्बेड भेजें\"],\"PnzsrT\":[\"सोर्स कोड\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"प्रस्तुत करने के लिए कूदें\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"निष्क्रय\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"संदेश संपादित करें\"],\"QqoBlW\":[\"अपना मेल देखें!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"पासवर्ड रीसेट करें\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"बग ट्रैकर\"],\"S3bIKF\":[\"आईडी कॉपी करें\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"कृपया अपने प्रमाणीकरण ऐप में नीचे दिए गए टोकन को स्कैन या उपयोग करें।\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"प्रमाणक निकालें\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"संदेश प्रबंधित करें\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"भूमिकाएँ प्रबंधित करें\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"समायोजन\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"अपने सभी दोस्तों, कुछ अच्छे बॉट्स को आमंत्रित करें और एक बड़ी पार्टी करें।\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"अवतार बदलें\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"मैसेज बेजा गया\"],\"VJScHU\":[\"कारण\"],\"VKsaTi\":[\"जवाब दे रहे हैं\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"सदस्य को बहरे करे\"],\"VsHxv+\":[\"टेक्स्ट कॉपी करें\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"खाते का सत्यापन जारी है…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"बाहरी लिंक खतरनाक हो सकते हैं!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"ग्राहक सेटिंग्स\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"ऑथेंटिकटर ऍप\"],\"YcVBkL\":[\"संदेश मिल गया\"],\"YirHq7\":[\"प्रतिपुष्टि\"],\"YlFpiA\":[\"सत्यापित करने में विफल हुआ!\"],\"Yp+Hi/\":[\"समायोजन\"],\"Z5HWHd\":[\"चालू\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"आपके पुनर्प्राप्ति कोड\"],\"aAIQg2\":[\"दिखावट\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"आप इस क्रिया को पूर्ववत नहीं कर सकते.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"बंद\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"खाता अक्षम करें\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"संदेश का इतिहास पढ़ें\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"सदस्यों को प्रतिबंधित करें\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"अनुमतियाँ प्रबंधित करें\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"निमंत्रणदाता\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"हटाएं\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"रद्द करें\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"एक नया बॉट बनाएं\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"दूसरों को आमंत्रित करें\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"अदृश्य\"],\"ekfzWq\":[\"उपयोगकर्ता सेटिंग\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"कस्टमाइज़ेशन प्रबंधित करें\"],\"fTMMeD\":[\"आमंत्रण बनाएँ\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"पंजीकृत करें\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"अनुरोध रद्द करें\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"भूमिकाएँ असाइन करें\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"रिपोर्ट\"],\"gkBHk/\":[\"चैनल बनाएँ\"],\"gkmjYT\":[\"सर्वर छोड़ दें\"],\"go1IWB\":[\"इस उपयोगकर्ता ने आपको ब्लॉक कर दिया है.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"चैनल हटाएँ\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"अपना ईमेल पता डालें।\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"बनाये\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"घर\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"सूचनाएं\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"जोड़ना\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"उल्लेख\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"बौट\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"अपना पासवर्ड भूल गए?\"],\"jpJ5AL\":[\"पुनर्प्राप्ति कोड\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"अवतार\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"आपका स्वागत है!\"],\"knjY+b\":[\"आप इसे बाद में फिर से खोल सकते हैं लेकिन यह दोनों तरफ से गायब हो जाएगा।\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"मित्र जोड़ें\"],\"lSGjX7\":[\"उपयोगकर्ता कॉल में शामिल हुए\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"चैनल\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"समूह नाम\"],\"mAYvqA\":[\"नमस्ते!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"कस्टम स्थिति\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"परस्पर मित्र\"],\"nbzz1A\":[\"कोड दर्ज करें\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"यह आपके नोट्स की शुरुआत है।\"],\"o+XJ9D\":[\"परिवर्तन\"],\"oB4OOq\":[\"सदस्यों को प्रतिबंध करे\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"ऑनलाइन\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"किक सदस्य\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"चूक जाना\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"लॉग आउट\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"शुरुआत में कूदें\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"उपयोगकर्ता वाम कॉल\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"मेरा खाता\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"सभी संदेश\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"एक यूजर ने रियेक्ट किया\"],\"rxaY+5\":[\"परेशान न करें\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"सर्वर को रिपोर्ट करें\"],\"tBmnPU\":[\"मित्र\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks प्रबंधित करें\"],\"tdTuUv\":[\"उपयोगकर्ता को ब्लॉक करें\"],\"tfDRzk\":[\"सहेजें\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"अवरुद्ध उपयोगकर्ता\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"परीक्षक सर्वर पर जायें\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"सदस्यों को हटा दें\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"भूमिका हटाएँ\"],\"utrCh2\":[\"टाइमआउट सदस्य\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"बारे में\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"सर्वर विवरण\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"प्रोफ़ाइल\"],\"vJum3e\":[\"दान करके परियोजना को समर्थन दें - आपका धन्यवाद!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"वीडियो\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"पहचान संपादित करें\"],\"vXIe7J\":[\"भाषा\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"कृपया इन्हें किसी सुरक्षित स्थान पर सहेजें.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"चैनल दर्ज करें\"],\"wL3cK8\":[\"नवीनतम\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"सदस्यों\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"छद्मवेष-समारोह\"],\"xDAtGP\":[\"संदेश\"],\"xGVfLh\":[\"आगे बढ़ें\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"पर रोक लगाई\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"सेवा शर्तें\"],\"xpgPPI\":[\"मेरे बॉट्स\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"लिंक कॉपी करे\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"मैं पुष्टि करता/करती हूं कि मेरी आयु कम से कम 18 वर्ष है।\"],\"yDOdwQ\":[\"उपयोगकर्ता प्रबंधन\"],\"yIBLq8\":[\"बोलना\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"बंद करे\"],\"z0hW8A\":[\"पुनर्प्राप्ति कोड देखें\"],\"z0t9bb\":[\"लॉग इन करें\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"ठीक\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"यह आपकी बातचीत की शुरुआत है।\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"सबसे पुराने\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/hi/messages.po b/components/i18n/catalogs/hi/messages.po
new file mode 100644
index 0000000..b06571d
--- /dev/null
+++ b/components/i18n/catalogs/hi/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: hi\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "एक यूजर ने रियेक्ट किया"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "बारे में"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "मित्र जोड़ें"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "सभी संदेश"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "पहले से ही इस उपयोगकर्ता के साथ दोस्त."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "दिखावट"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "भूमिकाएँ असाइन करें"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "ऑथेंटिकटर ऍप"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "अवतार"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "बैज"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "प्रतिबंध"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "सदस्यों को प्रतिबंधित करें"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "सदस्यों को प्रतिबंध करे"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "पर रोक लगाई"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "उपयोगकर्ता को ब्लॉक करें"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "अवरोधित"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "अवरुद्ध उपयोगकर्ता"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "बौट"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "बग ट्रैकर"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "रद्द करें"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "अनुरोध रद्द करें"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "परिवर्तन"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "अवतार बदलें"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "उपनाम बदलें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "चैनल विवरण"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "चैनल का नाम"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "चैनल"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "अपना मेल देखें!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "स्पष्ट स्थिति"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "ग्राहक सेटिंग्स"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "बंद करे"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "पुष्टि"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "कार्रवाई की पुष्टि करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "जोड़ना"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "सामग्री एक या अधिक कानूनों को तोड़ती है"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "आगे बढ़ें"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "बात चिट"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "चैनल आईडी कॉपी करें"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "आईडी कॉपी करें"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "लिंक कॉपी करे"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "संदेश आईडी कॉपी करें"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "सर्वर आईडी कॉपी करें"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "टेक्स्ट कॉपी करें"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "यूजर आईडी कॉपी करें"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "बनाये"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "एक समूह बनाएं"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "एक नया बॉट बनाएं"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "एक नई भूमिका बनाएं"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "खाता बनाएँ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "श्रेणी बनाएँ"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "चैनल बनाएँ"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "आमंत्रण बनाएँ"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "वर्तमान पासवर्ड"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "कस्टम स्थिति"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "कस्टमाइज़ेशन"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "सदस्य को बहरे करे"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "चूक जाना"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "हटाएं"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "चैनल हटाएँ"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "संदेश को हटाएं"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "भूमिका हटाएँ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "खाता अक्षम करें"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "परेशान न करें"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "समाज-सम्मत"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "पहचान संपादित करें"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "संदेश संपादित करें"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "ईमेल"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "प्रमाणक अनुप्रयोग सक्षम करें"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "डेस्कटॉप सूचनाएं सक्षम करें."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "नया पासवर्ड डालें।"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "चैनल दर्ज करें"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "कोड दर्ज करें"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "अपना वर्तमान पासवर्ड डालें।"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "अपना पसंदीदा उपयोगकर्ता नाम डालें।"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "बाहरी लिंक खतरनाक हो सकते हैं!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "सत्यापित करने में विफल हुआ!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "प्रतिपुष्टि"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "अपने शौक या रुचियों के आधार पर एक समुदाय खोजें।"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "संकेन्द्रित"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "मित्र"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "पुनर्प्राप्ति कोड जनरेट करें"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "आमंत्रण जनरेट किया जा रहा है…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "अपना पासवर्ड भूल गए?"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "परीक्षक सर्वर पर जायें"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "समूह नाम"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "नमस्ते!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "घर"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "मैं पुष्टि करता/करती हूं कि मेरी आयु कम से कम 18 वर्ष है।"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "निष्क्रय"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "अदृश्य"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "अपने सभी दोस्तों, कुछ अच्छे बॉट्स को आमंत्रित करें और एक बड़ी पार्टी करें।"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "कोड आमंत्रित"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "दूसरों को आमंत्रित करें"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "निमंत्रणदाता"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "आमंत्रण"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "प्रस्तुत करने के लिए कूदें"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "शुरुआत में कूदें"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "लात"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "सदस्यों को हटा दें"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "किक सदस्य"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "भाषा"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "नवीनतम"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "छोड़ना"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "समूह छोड़ें"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "सर्वर छोड़ दें"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "प्रतिपुष्टि देकर हमें बतायें कि हम अपने ऍप को कैसे सुधार सकते हैं।"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "लॉग आउट"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "अन्य सभी सत्रों से लॉग आउट करें"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "लॉग इन करें"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "कस्टमाइज़ेशन प्रबंधित करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "संदेश प्रबंधित करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "उपनाम प्रबंधित करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "अनुमतियाँ प्रबंधित करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "भूमिकाएँ प्रबंधित करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "सर्वर प्रबंधित करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Webhooks प्रबंधित करें"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "पढ़े के रूप में चिह्नित करें"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "अपठित के रूप में चिह्नित करें"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "छद्मवेष-समारोह"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "सदस्यों"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "उल्लेख"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "केवल उल्लेख"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "संदेश"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "संदेश लोड नहीं हुआ, कूदने के लिए क्लिक करें|"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "संदेश मिल गया"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "मैसेज बेजा गया"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "संदेश दूसरे प्लेटफॉर्म पर भेजा गया था"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "सदस्यों को स्थानांतरित करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "मूक सदस्य"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "म्यूट किए गए"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "परस्पर मित्र"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "परस्पर समूह"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "मेरा खाता"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "मेरे बॉट्स"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "नया पासवर्ड"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "उपनाम"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "कोई नहीं"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "सूचनाएं"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "बंद"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "आधिकारिक संचार"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "आधिकारिक सर्वर"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "ऑफ़लाइन"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "ठीक"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "सबसे पुराने"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "चालू"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "एक बार इसे हटा दिए जाने के बाद, वापस नहीं जाना है।"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "ऑनलाइन"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "समायोजन"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "अवलोकन"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "पासवर्ड"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "अनुमतियां"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "एक उपयोगकर्ता नाम चुनें जिसे आप चाहते हैं कि लोग आपको ढूंढ सकें, इसे बाद में सेटिंग में बदला जा सकता है।"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "कृपया चयनित विधि का उपयोग करके पुष्टि करें."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "अपना ईमेल पता डालें।"
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "कृपया इन्हें किसी सुरक्षित स्थान पर सहेजें."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "कृपया अपने प्रमाणीकरण ऐप में नीचे दिए गए टोकन को स्कैन या उपयोग करें।"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "कृपया अपने अनुरोध को प्रमाणित करने के लिए एक विधि का चयन करें."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "गोपनीयता नीति"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "प्रोफ़ाइल"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "संदेश का इतिहास पढ़ें"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "कारण"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "पुनर्प्राप्ति कोड"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "पंजीकृत करें"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "प्रासंगिकता"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "प्रमाणक निकालें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "अवतारों को हटाएं"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "मित्र को निकालें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "जवाब दे दो"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "जवाब दे रहे हैं"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "रिपोर्ट"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "मैसेज रिपोर्ट करो"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "सर्वर को रिपोर्ट करें"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "उपयोगकर्ता को रिपोर्ट करें"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "सत्यापन पुनः भेजें"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "रीसेट"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "पासवर्ड रीसेट करें"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "भूमिका का नाम"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "भूमिकाएँ"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "सहेजें"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "अपने नोट्स में सहेजें"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "सहेजे गए नोट"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "अपनी भाषा का चयन करें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "एम्बेड भेजें"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Send Messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "एक अनुलग्नक भेजा"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "कई अटैचमेंट भेजे"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "सर्वर विवरण"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "सर्वर का नाम"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "सत्र"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "समायोजन"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "कई लोग टाइप कर रहे हैं…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "ध्वनि"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "सोर्स कोड"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "बोलना"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "सुविधा सुझाव सबमिट करें"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "प्रतिपुष्टि दें"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "दान करके परियोजना को समर्थन दें - आपका धन्यवाद!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "सेवा शर्तें"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "पाठ चैनल"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "विषय"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "यह आपकी बातचीत की शुरुआत है।"
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "यह आपके नोट्स की शुरुआत है।"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "इस उपयोगकर्ता ने आपको ब्लॉक कर दिया है."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "टाइमआउट सदस्य"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "उपयोगकर्ता को ब्लॉक करें"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "फ़ाइलें अपलोड करें"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "उपयोगकर्ता"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "उपयोगकर्ता कॉल में शामिल हुए"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "उपयोगकर्ता वाम कॉल"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "उपयोगकर्ता प्रबंधन"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "उपयोगकर्ता सेटिंग"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "उपयोगकर्ता नाम"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "खाते का सत्यापन जारी है…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "वीडियो"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "चैनल देखें"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "वर्तमान में सक्रिय बग रिपोर्ट यहां देखें।"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "पुराने अद्यतन देखें"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "पुनर्प्राप्ति कोड देखें"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "पुराने संदेश देखना"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "आवाज चैनल"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "हमने आपको एक सत्यापन ईमेल भेजा है । कृपया इसे आने के लिए 10 मिनट तक का समय दें।"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "में स्वागत"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "आपका स्वागत है!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "आप ऊपर बाईं ओर उपयोक्ता आइकन पर दायाँ-क्लिक भी कर सकते हैं, अथवा यदि आप पहले से ही गृह पर हैं तो उसपर बायाँ-क्लिक करें।"
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "आप इसे बाद में फिर से खोल सकते हैं लेकिन यह दोनों तरफ से गायब हो जाएगा।"
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "आप यहाँ सीधे हमें समस्याओं की सूचना दे सकते हैं और हमारे साथ सुधारों पर चर्चा कर सकते हैं।"
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "आप इस क्रिया को पूर्ववत नहीं कर सकते."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "आपको इस चैनल में संदेश भेजने की अनुमति नहीं है।"
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "जब तक आपको फिर से आमंत्रित नहीं किया जाता, आप फिर से शामिल नहीं हो पाएंगे।"
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "खाता सत्यापित हुआ!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "आपके पुनर्प्राप्ति कोड"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/hr/messages.js b/components/i18n/catalogs/hr/messages.js
new file mode 100644
index 0000000..0bfe52d
--- /dev/null
+++ b/components/i18n/catalogs/hr/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Prigušen\"],\"+YFgJi\":[\"Značke\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označi kao pročitano\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Stvorite novu ulogu\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odjavite se sa svih ostalih sesija\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Odaberi korisničko ime sa kojim će te ostali ljudi prepoznati, ovo možete promjeniti u postavkama.\"],\"/qQDwm\":[\"Pravim invitaciju…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Prijavi poruku\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Pošalji povratne informacije\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiraj ID poruke\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Napusti grupu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Možete prijaviti greške i razgovarati o poboljšanjima s nama izravno ovdje.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokiran\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nećeš se moći ponovno pridružiti serveru osim ako te netko pozove.\"],\"3QuNUr\":[\"Nekoliko ljudi tipka…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Već ste prijatelji sa ovim korisnikom.\"],\"3T8ziB\":[\"Napravi račun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesije\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nadimak\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Odaberi jezik\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Pronađite zajednicu koja se temelji na vašim hobijima ili interesima.\"],\"572q5a\":[\"Prijavi korisnika\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označi kao nepročitano\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Promijeni nadimak\"],\"5dJK4M\":[\"Uloge\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Pregled\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Izvan mreže\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Korisnik\"],\"7SU2U9\":[\"Kopiraj ID servera\"],\"7VpPHA\":[\"Potvrdi\"],\"7dZnmw\":[\"Relevantnost\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Korisničko ime\"],\"7vhWI8\":[\"Nova lozinka\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Upravljanje poslužiteljem\"],\"8FE4JE\":[\"Uključite autenifikator\"],\"8VGnad\":[\"Stvori kôd za oporavak\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Zaporka\"],\"8aTiea\":[\"Prilagodbe\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Unesite vaše korisničko ime.\"],\"9D85wC\":[\"Kopiraj korisnički ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Dopuštenja\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Zabrani\"],\"9nffag\":[\"Pregledavate stare poruke\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokiraj korisnika\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Napravi grupu\"],\"A9Rhec\":[\"Ime kanala\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Unesite novu lozinku.\"],\"AU7IRi\":[\"Tekstualni kanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Glasovni kanal\"],\"BHsrDx\":[\"Pozivnice\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Poruka je poslana na drugoj platformi\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Pogledajte kanal\"],\"CK7kdd\":[\"Ukloni status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Opis kanala\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Slanje poruka\"],\"CkIs/i\":[\"Utišaj korisnike\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Trenutačna zaporka\"],\"DDpDsO\":[\"Pozivni kod\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Službena komunikacija\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Gotovo\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Poruka nije učitana, klikni za prijelaz\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Pošaljite prijedlog značajke\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Izbaci\"],\"EdQY6l\":[\"Nijedan\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Razgovori\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Priloži datoteku\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Izradi kategoriju\"],\"F1uGNS\":[\"Upravljajte nadimcima\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Uklonite avatare\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Uključi obavjesti\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiraj ID kanala\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Zajedničke grupe\"],\"GhCPk1\":[\"Nakon što ga izbrišeš, nema povratka.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Unesite trenutačnu zaporku.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Molimo odaberite metodu za autenifikaciju vašeg zahtjeva.\"],\"HAKBY9\":[\"Učitaj datoteke\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Spremljene bilješke\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ponovno pošalji verifikaciju\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Premjestiti korisnike\"],\"ImOQa9\":[\"Odgovor\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Poslano je više privitaka\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potvrdi akciju\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Pogledaj starije promjene\"],\"JUJmXm\":[\"Molimo potvrdite pomoću odabrane metode.\"],\"JW8mxK\":[\"Spremi u bilješke\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Dobrodošli u\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Također možete kliknuti desnom tipkom miša na ikonu korisnika u gornjem lijevom kutu ili je kliknuti lijevom tipkom ako ste već kod kuće.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Obriši poruku\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Sadržaj krši jedan ili više zakona\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Zvukovi\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Zvanični server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Ukloni prijatelja\"],\"LcET2C\":[\"Pravila o privatnosti\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Pričekajte do 10 minuta da se pojavi.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Ime servera\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Napustiti\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Ovdje pogledajte trenutno aktivna izvješća o programskim pogreškama.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Javite nam kako možemo poboljšati našu aplikaciju ostavljajući nam povratne informacije.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Vaš račun je potvrđen!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-pošta\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nemate dopuštenje za slanje poruka na ovom kanalu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Resetiraj\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Naziv uloge\"],\"PWOA0E\":[\"Samo spominjanja\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Slanje privitaka\"],\"PnzsrT\":[\"Izvorni Kod\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Idi na sadašnjost\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"U mirovanju\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Uredi poruku\"],\"QqoBlW\":[\"Provjerite svoj sandučić!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Promjeni zaporku\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Praćenje Grešaka\"],\"S3bIKF\":[\"Kopiraj ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Molimo skenirajte ili koristite token ispod u vašoj autenfikacijskoj aplikaciji.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Uklonite Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Upravljanje porukama\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Upravljanje ulogama\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Postavke\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pozovite sve svoje prijatelje, neke cool botove i priredite veliku zabavu.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Promijeni avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Poruka je poslana\"],\"VJScHU\":[\"Razlog\"],\"VKsaTi\":[\"Odgovaranje\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Oglušiti korisnike\"],\"VsHxv+\":[\"Kopiraj tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Potvrđujemo vaš račun…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Vanjske veze mogu biti opasne!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Postavke aplikacije\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacija za autentifikaciju\"],\"YcVBkL\":[\"Poruka primljena\"],\"YirHq7\":[\"Povratne informacije\"],\"YlFpiA\":[\"Potvrda neuspješna!\"],\"Yp+Hi/\":[\"Otvori podešavanja\"],\"Z5HWHd\":[\"Uključeno\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaši kodovi za oporavak\"],\"aAIQg2\":[\"Izgled\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ne možeš poništiti ovu radnju.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Isključeno\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Onemogući račun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Pročitaj povijest poruka\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banaj člana\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Upravljaj dozvolama\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pozivatelj\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Izbriši\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Odustani\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Napravi novog bota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pozovite druge\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nevidljiv\"],\"ekfzWq\":[\"Korisničke postavke\"],\"etgedT\":[\"Emotikoni\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Upravljanje prilagodbama\"],\"fTMMeD\":[\"Napravi invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrirajte se\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Otkaži zahtjev\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Dodijeli uloge\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Prijavi\"],\"gkBHk/\":[\"Napravi kanal\"],\"gkmjYT\":[\"Napusti server\"],\"go1IWB\":[\"Ovaj korisnik vas je blokirao (too bad lol).\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Izbriši kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Unesite svoju e-poštu.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Stvoriti\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Početna stranica\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Obavjesti\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Spoji\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Spomen\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Vrati se na prijavu\"],\"jpJ5AL\":[\"Kôd za oporavak\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Slika profila\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Dobro došli!\"],\"knjY+b\":[\"Možeš ju ponovno otvoriti poslije ali će nestati sa obje strane.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dodaj prijatelja\"],\"lSGjX7\":[\"Korisnički pridruženi poziv\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanali\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ime grupe\"],\"mAYvqA\":[\"Bok!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Prilagođeni status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Zajednički prijatelji\"],\"nbzz1A\":[\"Unesite kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ovo je početak vaših bilješki.\"],\"o+XJ9D\":[\"Promjeni\"],\"oB4OOq\":[\"Zabrani članove\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Na vezi\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Udarite članove\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Zadano\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Odjavi se\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Idi na početak\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Lijevi poziv korisnika\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Moj račun\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Sve poruke\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Jedna osoba je reagirala\"],\"rxaY+5\":[\"Ne uznemiravaj\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Prijavi server\"],\"tBmnPU\":[\"Prijatelji\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Kontroliraj Webhook-ove\"],\"tdTuUv\":[\"Blokiraj korisnika\"],\"tfDRzk\":[\"Spremi\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokirani korisnik\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Idite do servera za testiranje\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Izbaci člana\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Izbriši rank\"],\"utrCh2\":[\"Timeout korisnike\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Opis servera\"],\"v1kQyJ\":[\"Webhookovi\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podržite projekt donacijom - hvala!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Uređivanje identiteta\"],\"vXIe7J\":[\"Jezik\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Molimo spremite ih na sigurnu lokaciju.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Uđite u kanal\"],\"wL3cK8\":[\"Najnoviji\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Članovi\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maškarada\"],\"xDAtGP\":[\"Poruka\"],\"xGVfLh\":[\"Nastavi\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Zabrane\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Uvjeti o korištenju\"],\"xpgPPI\":[\"Moji botovi\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopiraj link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potvrđujem da imam najmanje 18 godina.\"],\"yDOdwQ\":[\"Menađžment korisnika\"],\"yIBLq8\":[\"Pričati\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zatvori\"],\"z0hW8A\":[\"Pogledaj kôd za oporavak\"],\"z0t9bb\":[\"Prijavi se\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ovo je početak vašeg razgovora.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstariji\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/hr/messages.mjs b/components/i18n/catalogs/hr/messages.mjs
new file mode 100644
index 0000000..34b74d2
--- /dev/null
+++ b/components/i18n/catalogs/hr/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Prigušen\"],\"+YFgJi\":[\"Značke\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označi kao pročitano\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Stvorite novu ulogu\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odjavite se sa svih ostalih sesija\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Odaberi korisničko ime sa kojim će te ostali ljudi prepoznati, ovo možete promjeniti u postavkama.\"],\"/qQDwm\":[\"Pravim invitaciju…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Prijavi poruku\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Pošalji povratne informacije\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiraj ID poruke\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Napusti grupu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Možete prijaviti greške i razgovarati o poboljšanjima s nama izravno ovdje.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokiran\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nećeš se moći ponovno pridružiti serveru osim ako te netko pozove.\"],\"3QuNUr\":[\"Nekoliko ljudi tipka…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Već ste prijatelji sa ovim korisnikom.\"],\"3T8ziB\":[\"Napravi račun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesije\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nadimak\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Odaberi jezik\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Pronađite zajednicu koja se temelji na vašim hobijima ili interesima.\"],\"572q5a\":[\"Prijavi korisnika\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označi kao nepročitano\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Promijeni nadimak\"],\"5dJK4M\":[\"Uloge\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Pregled\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Izvan mreže\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Korisnik\"],\"7SU2U9\":[\"Kopiraj ID servera\"],\"7VpPHA\":[\"Potvrdi\"],\"7dZnmw\":[\"Relevantnost\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Korisničko ime\"],\"7vhWI8\":[\"Nova lozinka\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Upravljanje poslužiteljem\"],\"8FE4JE\":[\"Uključite autenifikator\"],\"8VGnad\":[\"Stvori kôd za oporavak\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Zaporka\"],\"8aTiea\":[\"Prilagodbe\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Unesite vaše korisničko ime.\"],\"9D85wC\":[\"Kopiraj korisnički ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Dopuštenja\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Zabrani\"],\"9nffag\":[\"Pregledavate stare poruke\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokiraj korisnika\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Napravi grupu\"],\"A9Rhec\":[\"Ime kanala\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Unesite novu lozinku.\"],\"AU7IRi\":[\"Tekstualni kanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Glasovni kanal\"],\"BHsrDx\":[\"Pozivnice\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Poruka je poslana na drugoj platformi\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Pogledajte kanal\"],\"CK7kdd\":[\"Ukloni status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Opis kanala\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Slanje poruka\"],\"CkIs/i\":[\"Utišaj korisnike\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Trenutačna zaporka\"],\"DDpDsO\":[\"Pozivni kod\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Službena komunikacija\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Gotovo\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Poruka nije učitana, klikni za prijelaz\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Pošaljite prijedlog značajke\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Izbaci\"],\"EdQY6l\":[\"Nijedan\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Razgovori\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Priloži datoteku\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Izradi kategoriju\"],\"F1uGNS\":[\"Upravljajte nadimcima\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Uklonite avatare\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Uključi obavjesti\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiraj ID kanala\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Zajedničke grupe\"],\"GhCPk1\":[\"Nakon što ga izbrišeš, nema povratka.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Unesite trenutačnu zaporku.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Molimo odaberite metodu za autenifikaciju vašeg zahtjeva.\"],\"HAKBY9\":[\"Učitaj datoteke\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Spremljene bilješke\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ponovno pošalji verifikaciju\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Premjestiti korisnike\"],\"ImOQa9\":[\"Odgovor\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Poslano je više privitaka\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potvrdi akciju\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Pogledaj starije promjene\"],\"JUJmXm\":[\"Molimo potvrdite pomoću odabrane metode.\"],\"JW8mxK\":[\"Spremi u bilješke\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Dobrodošli u\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Također možete kliknuti desnom tipkom miša na ikonu korisnika u gornjem lijevom kutu ili je kliknuti lijevom tipkom ako ste već kod kuće.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Obriši poruku\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Sadržaj krši jedan ili više zakona\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Zvukovi\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Zvanični server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Ukloni prijatelja\"],\"LcET2C\":[\"Pravila o privatnosti\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Pričekajte do 10 minuta da se pojavi.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Ime servera\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Napustiti\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Ovdje pogledajte trenutno aktivna izvješća o programskim pogreškama.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Javite nam kako možemo poboljšati našu aplikaciju ostavljajući nam povratne informacije.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Vaš račun je potvrđen!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-pošta\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nemate dopuštenje za slanje poruka na ovom kanalu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Resetiraj\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Naziv uloge\"],\"PWOA0E\":[\"Samo spominjanja\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Slanje privitaka\"],\"PnzsrT\":[\"Izvorni Kod\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Idi na sadašnjost\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"U mirovanju\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Uredi poruku\"],\"QqoBlW\":[\"Provjerite svoj sandučić!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Promjeni zaporku\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Praćenje Grešaka\"],\"S3bIKF\":[\"Kopiraj ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Molimo skenirajte ili koristite token ispod u vašoj autenfikacijskoj aplikaciji.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Uklonite Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Upravljanje porukama\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Upravljanje ulogama\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Postavke\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pozovite sve svoje prijatelje, neke cool botove i priredite veliku zabavu.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Promijeni avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Poruka je poslana\"],\"VJScHU\":[\"Razlog\"],\"VKsaTi\":[\"Odgovaranje\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Oglušiti korisnike\"],\"VsHxv+\":[\"Kopiraj tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Potvrđujemo vaš račun…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Vanjske veze mogu biti opasne!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Postavke aplikacije\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacija za autentifikaciju\"],\"YcVBkL\":[\"Poruka primljena\"],\"YirHq7\":[\"Povratne informacije\"],\"YlFpiA\":[\"Potvrda neuspješna!\"],\"Yp+Hi/\":[\"Otvori podešavanja\"],\"Z5HWHd\":[\"Uključeno\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaši kodovi za oporavak\"],\"aAIQg2\":[\"Izgled\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ne možeš poništiti ovu radnju.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Isključeno\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Onemogući račun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Pročitaj povijest poruka\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banaj člana\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Upravljaj dozvolama\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pozivatelj\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Izbriši\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Odustani\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Napravi novog bota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pozovite druge\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nevidljiv\"],\"ekfzWq\":[\"Korisničke postavke\"],\"etgedT\":[\"Emotikoni\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Upravljanje prilagodbama\"],\"fTMMeD\":[\"Napravi invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrirajte se\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Otkaži zahtjev\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Dodijeli uloge\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Prijavi\"],\"gkBHk/\":[\"Napravi kanal\"],\"gkmjYT\":[\"Napusti server\"],\"go1IWB\":[\"Ovaj korisnik vas je blokirao (too bad lol).\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Izbriši kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Unesite svoju e-poštu.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Stvoriti\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Početna stranica\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Obavjesti\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Spoji\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Spomen\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Vrati se na prijavu\"],\"jpJ5AL\":[\"Kôd za oporavak\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Slika profila\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Dobro došli!\"],\"knjY+b\":[\"Možeš ju ponovno otvoriti poslije ali će nestati sa obje strane.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dodaj prijatelja\"],\"lSGjX7\":[\"Korisnički pridruženi poziv\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanali\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ime grupe\"],\"mAYvqA\":[\"Bok!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Prilagođeni status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Zajednički prijatelji\"],\"nbzz1A\":[\"Unesite kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ovo je početak vaših bilješki.\"],\"o+XJ9D\":[\"Promjeni\"],\"oB4OOq\":[\"Zabrani članove\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Na vezi\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Udarite članove\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Zadano\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Odjavi se\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Idi na početak\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Lijevi poziv korisnika\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Moj račun\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Sve poruke\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"Jedna osoba je reagirala\"],\"rxaY+5\":[\"Ne uznemiravaj\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Prijavi server\"],\"tBmnPU\":[\"Prijatelji\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Kontroliraj Webhook-ove\"],\"tdTuUv\":[\"Blokiraj korisnika\"],\"tfDRzk\":[\"Spremi\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokirani korisnik\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Idite do servera za testiranje\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Izbaci člana\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Izbriši rank\"],\"utrCh2\":[\"Timeout korisnike\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Opis servera\"],\"v1kQyJ\":[\"Webhookovi\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podržite projekt donacijom - hvala!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Uređivanje identiteta\"],\"vXIe7J\":[\"Jezik\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Molimo spremite ih na sigurnu lokaciju.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Uđite u kanal\"],\"wL3cK8\":[\"Najnoviji\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Članovi\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maškarada\"],\"xDAtGP\":[\"Poruka\"],\"xGVfLh\":[\"Nastavi\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Zabrane\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Uvjeti o korištenju\"],\"xpgPPI\":[\"Moji botovi\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopiraj link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potvrđujem da imam najmanje 18 godina.\"],\"yDOdwQ\":[\"Menađžment korisnika\"],\"yIBLq8\":[\"Pričati\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zatvori\"],\"z0hW8A\":[\"Pogledaj kôd za oporavak\"],\"z0t9bb\":[\"Prijavi se\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ovo je početak vašeg razgovora.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstariji\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/hr/messages.po b/components/i18n/catalogs/hr/messages.po
new file mode 100644
index 0000000..7d081ba
--- /dev/null
+++ b/components/i18n/catalogs/hr/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: hr\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "Jedna osoba je reagirala"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "O"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Dodaj prijatelja"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Sve poruke"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Već ste prijatelji sa ovim korisnikom."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Izgled"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Dodijeli uloge"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplikacija za autentifikaciju"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Slika profila"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Značke"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Zabrani"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Banaj člana"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Zabrani članove"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Zabrane"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blokiraj korisnika"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blokiran"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blokirani korisnik"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Praćenje Grešaka"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Odustani"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Otkaži zahtjev"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Promjeni"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Promijeni avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Promijeni nadimak"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Opis kanala"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Ime kanala"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanali"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Provjerite svoj sandučić!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Ukloni status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Postavke aplikacije"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Zatvori"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Potvrdi"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Potvrdi akciju"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Spoji"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Sadržaj krši jedan ili više zakona"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Nastavi"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Razgovori"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopiraj ID kanala"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopiraj ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopiraj link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopiraj ID poruke"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopiraj ID servera"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopiraj tekst"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopiraj korisnički ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Stvoriti"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Napravi grupu"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Napravi novog bota"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Stvorite novu ulogu"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Napravi račun"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Izradi kategoriju"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Napravi kanal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Napravi invite"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Trenutačna zaporka"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Prilagođeni status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Prilagodbe"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Oglušiti korisnike"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Zadano"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Izbriši"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Izbriši kanal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Obriši poruku"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Izbriši rank"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Onemogući račun"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ne uznemiravaj"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Gotovo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Uređivanje identiteta"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Uredi poruku"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-pošta"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emotikoni"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Uključite autenifikator"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Uključi obavjesti"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Unesite novu lozinku."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Uđite u kanal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Unesite kod"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Unesite trenutačnu zaporku."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Unesite vaše korisničko ime."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Vanjske veze mogu biti opasne!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Potvrda neuspješna!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Povratne informacije"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Pronađite zajednicu koja se temelji na vašim hobijima ili interesima."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Prijatelji"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Stvori kôd za oporavak"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Pravim invitaciju…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Vrati se na prijavu"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Idite do servera za testiranje"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Ime grupe"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Bok!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Početna stranica"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Potvrđujem da imam najmanje 18 godina."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "U mirovanju"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Nevidljiv"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Pozovite sve svoje prijatelje, neke cool botove i priredite veliku zabavu."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Pozivni kod"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Pozovite druge"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Pozivatelj"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Pozivnice"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Idi na sadašnjost"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Idi na početak"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Izbaci"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Izbaci člana"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Udarite članove"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Jezik"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Najnoviji"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Napustiti"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Napusti grupu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Napusti server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Javite nam kako možemo poboljšati našu aplikaciju ostavljajući nam povratne informacije."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Odjavi se"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Odjavite se sa svih ostalih sesija"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Prijavi se"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Upravljanje prilagodbama"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Upravljanje porukama"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Upravljajte nadimcima"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Upravljaj dozvolama"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Upravljanje ulogama"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Upravljanje poslužiteljem"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Kontroliraj Webhook-ove"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Označi kao pročitano"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Označi kao nepročitano"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maškarada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Članovi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Spomen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Samo spominjanja"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Poruka"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Poruka nije učitana, klikni za prijelaz"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Poruka primljena"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Poruka je poslana"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Poruka je poslana na drugoj platformi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Premjestiti korisnike"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Utišaj korisnike"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Prigušen"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Zajednički prijatelji"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Zajedničke grupe"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Moj račun"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Moji botovi"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nova lozinka"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Nadimak"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nijedan"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Obavjesti"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Isključeno"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Službena komunikacija"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Zvanični server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Izvan mreže"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ok"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Najstariji"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Uključeno"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Nakon što ga izbrišeš, nema povratka."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Na vezi"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Otvori podešavanja"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Pregled"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Zaporka"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Dopuštenja"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Odaberi korisničko ime sa kojim će te ostali ljudi prepoznati, ovo možete promjeniti u postavkama."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Molimo potvrdite pomoću odabrane metode."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Unesite svoju e-poštu."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Molimo spremite ih na sigurnu lokaciju."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Molimo skenirajte ili koristite token ispod u vašoj autenfikacijskoj aplikaciji."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Molimo odaberite metodu za autenifikaciju vašeg zahtjeva."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Pravila o privatnosti"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Pročitaj povijest poruka"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Razlog"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Kôd za oporavak"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrirajte se"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevantnost"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Uklonite Authenticator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Uklonite avatare"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Ukloni prijatelja"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Odgovor"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Odgovaranje"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Prijavi"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Prijavi poruku"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Prijavi server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Prijavi korisnika"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Ponovno pošalji verifikaciju"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Resetiraj"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Promjeni zaporku"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Naziv uloge"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Uloge"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Spremi"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Spremi u bilješke"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Spremljene bilješke"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Odaberi jezik"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Slanje privitaka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Slanje poruka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Priloži datoteku"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Poslano je više privitaka"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Opis servera"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Ime servera"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesije"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Postavke"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Nekoliko ljudi tipka…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Zvukovi"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Izvorni Kod"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Pričati"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Pošaljite prijedlog značajke"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Pošalji povratne informacije"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Podržite projekt donacijom - hvala!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Uvjeti o korištenju"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Tekstualni kanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Ovo je početak vašeg razgovora."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Ovo je početak vaših bilješki."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Ovaj korisnik vas je blokirao (too bad lol)."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout korisnike"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Odblokiraj korisnika"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Učitaj datoteke"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Korisnik"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Korisnički pridruženi poziv"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Lijevi poziv korisnika"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Menađžment korisnika"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Korisničke postavke"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Potvrđujemo vaš račun…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Pogledajte kanal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Ovdje pogledajte trenutno aktivna izvješća o programskim pogreškama."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Pogledaj starije promjene"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Pogledaj kôd za oporavak"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Pregledavate stare poruke"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Glasovni kanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Pričekajte do 10 minuta da se pojavi."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhookovi"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Dobrodošli u"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Dobro došli!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Također možete kliknuti desnom tipkom miša na ikonu korisnika u gornjem lijevom kutu ili je kliknuti lijevom tipkom ako ste već kod kuće."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Možeš ju ponovno otvoriti poslije ali će nestati sa obje strane."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Možete prijaviti greške i razgovarati o poboljšanjima s nama izravno ovdje."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Ne možeš poništiti ovu radnju."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Nemate dopuštenje za slanje poruka na ovom kanalu."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nećeš se moći ponovno pridružiti serveru osim ako te netko pozove."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Vaš račun je potvrđen!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Vaši kodovi za oporavak"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/hu/messages.js b/components/i18n/catalogs/hu/messages.js
new file mode 100644
index 0000000..46b9800
--- /dev/null
+++ b/components/i18n/catalogs/hu/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Némítás\"],\"+YFgJi\":[\"Kitűzők\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Megjelölés olvasottként\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Új titulus létrehozása\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Kijelentkezés az összes többi munkamenetből\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Olyan felhasználónevet válassz, ami alapján mások azonosítanak majd téged. Ezt a beállításokban később megváltoztathatod.\"],\"/qQDwm\":[\"Meghívó létrehozása…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Üzenet jelentése\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Visszajelzés írása\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Üzenet ID másolása\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Csoport elhagyása\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Közvetlenül itt jelezhetsz az issue-król és vitathatod meg velünk a továbbfejlesztéseket.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Kizártak\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nem fogsz tudni visszalépni, amíg újra meg nem hívnak.\"],\"3QuNUr\":[\"Többen is gépelnek…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Már ismerősöd ez a felhasználó.\"],\"3T8ziB\":[\"Fiók létrehozása\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Munkamenetek\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Becenév\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Válassz nyelvet\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Találj rá a hobbiddal, érdeklődéseiddel egyező közösségekre.\"],\"572q5a\":[\"Felhasználó jelentése\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Megjelölés nem olvasottként\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Becenevet válthatnak\"],\"5dJK4M\":[\"Titulusok\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Áttekintés\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Felhasználó\"],\"7SU2U9\":[\"Szerver ID másolása\"],\"7VpPHA\":[\"Jóváhagyás\"],\"7dZnmw\":[\"Releváns\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Felhasználónév\"],\"7vhWI8\":[\"Új jelszó\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Kezelhetik a szervert\"],\"8FE4JE\":[\"Hitelesítő app engedélyezése\"],\"8VGnad\":[\"Helyreállító kódok létrehozása\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Jelszó\"],\"8aTiea\":[\"Testreszabás\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Add meg a kívánt felhasználónevedet.\"],\"9D85wC\":[\"Felhasználói ID másolása\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Engedélyek\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Kitiltás\"],\"9nffag\":[\"a régen írt üzeneteket látod\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Felhasználó visszaengedése\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Csoport létrehozása\"],\"A9Rhec\":[\"Csatorna neve\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Add meg az új jelszavad\"],\"AU7IRi\":[\"Szövegcsatorna\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Beszédcsatorna\"],\"BHsrDx\":[\"Meghívók\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Az üzenetet másik platformon keresztül küldték el\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Láthatják a csatornákat\"],\"CK7kdd\":[\"Törlés\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Csatorna leírása\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Küldhetnek üzenetet\"],\"CkIs/i\":[\"Tagok némítása\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Mostani jelszavad\"],\"DDpDsO\":[\"Meghívó kódja\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Hivatalos kommunikáció\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Rendben van!\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Az üzenet nem lett betöltve – kattints az ugráshoz\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Featurejavaslat írása\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kirúgás\"],\"EdQY6l\":[\"Egyik sem\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Beszélgetések\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"csatolmányt küldött\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kategória létrehozása\"],\"F1uGNS\":[\"Kezelhetik más becenevét\"],\"FEr96N\":[\"Színséma\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Profilképeket távolíthatnak el\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Asztali értesítések engedélyezése\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Koncentál\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Csatorna ID másolása\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Csoportjaink\"],\"GhCPk1\":[\"Még nem késő visszavonni a visszahozhatatlant.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Add meg a mostani jelszót\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Válaszd ki a kérés hitelesítéséhez való módot.\"],\"HAKBY9\":[\"Feltölthetnek fájlokat\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Mentett jegyzetek\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Visszaigazoló e-mail újraküldése\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Tagok áthelyezése\"],\"ImOQa9\":[\"Válaszolás\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"több csatolmányt küldött\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nem törölhetjük ki a fiókot amíg a szerverek nincsenek kitörölve vagy átadva\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Művelet jóváhagyása\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"A Revolt közelmúltbeli újdonságai\"],\"JUJmXm\":[\"A választott móddal hagyd jóvá a választásod.\"],\"JW8mxK\":[\"Mentés a többi feljegyzéshez\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Üdvözöl a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"A bal felső sarokban kattints jobb egérgombbal a profilképedre, vagy ballal ide.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Üzenet törlése\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Törvénysértő tartalom\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Hangos értesítés\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Hivatalos szerver\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Ismerettség törlése\"],\"LcET2C\":[\"Adatvédelmi szabályzat\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Elküldtük a visszaigazoló e-mailt. A leveled 10 percen belül meg fog érkezni.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Szervernév\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Hely elhagyása\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Az aktív hibajelentéseket itt láthatod.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Írd meg miként fejleszthetnénk tovább a Revoltot.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"A fiókod igazolva lett\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail-cím\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"ide nincs engedélyed üzenetet írni\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Visszaállítás\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Barátkérelem elutasítása\"],\"PSP1MZ\":[\"Titulus címe\"],\"PWOA0E\":[\"Csak említések\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Beágyazott tartalmak küldése\"],\"PnzsrT\":[\"Forráskód\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"ugrás a mostaniakhoz\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nem csinál semmit\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Üzenet szerkesztése\"],\"QqoBlW\":[\"Nézd meg, hogy jött-e leveled.\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Jelszóváltoztatás kérése\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"ID másolása\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Olvasd, vagy pedig írd be a lenti tokent a hitelesítő appodban.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Hitelesítő eltávolítása\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Kezelhetnek üzeneteket\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Kezelhetnek titulusokat\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Beállítások\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Hívd meg minden ismerősödet (plusz menő robikat) és kezdődhet a buli!\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Profilképet válthatnak\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Elküldött üzenetkor\"],\"VJScHU\":[\"Indoklás\"],\"VKsaTi\":[\"Neki válaszolsz:\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Tagok süketítése\"],\"VsHxv+\":[\"Szöveg másolása\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"A fiókod igazolódik…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"A kimenő linkek veszélyt rejthetnek!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Kliens beállításai\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Hitelesítést végző app\"],\"YcVBkL\":[\"Üzenetek érkezésekor\"],\"YirHq7\":[\"Visszajelzés\"],\"YlFpiA\":[\"Nem sikerült igazolnod a fiókodat.\"],\"Yp+Hi/\":[\"Beállítások megnyitása\"],\"Z5HWHd\":[\"Be\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Helyreállító kódok\"],\"aAIQg2\":[\"Kinézet\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ez a művelet nem vonható vissza.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Ki\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Fiók letiltása\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Korábbi üzenetek olvasása\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Tag kitiltása\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Engedélyek kezelése\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Meghívó\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Törlés\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Mégsem\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Új robi létrehozása\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Meghívhatnak másokat\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Láthatatlan\"],\"ekfzWq\":[\"Felhasználói beállítások\"],\"etgedT\":[\"Emodzsik\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Testreszabás kezelése\"],\"fTMMeD\":[\"Meghívó létrehozása\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Regisztrálás\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Barátkérelem visszavonása\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Titulusok hozzárendelése\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Bejelentés\"],\"gkBHk/\":[\"Csatorna létrehozása\"],\"gkmjYT\":[\"Szerver elhagyása\"],\"go1IWB\":[\"Ez a felhasználó kizárt téged.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Csatorna törlése\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Add meg az e-mail-címed\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Létrehozás\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Kezdőhely\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Hangcsatornához csatlakozhatnak\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Megemlítés\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robi\xA0🤖\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Vissza a bejelentkezéshez\"],\"jpJ5AL\":[\"Helyreállító kód\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profilkép\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Üdv!\"],\"knjY+b\":[\"Később újra megnyithatod, de mindkettőtöknek el fog veszni a beszélgetés.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ismerősnek jelölés\"],\"lSGjX7\":[\"Felhasználó híváshoz csatlakozásakor\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Csatornák\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Csoportnév\"],\"mAYvqA\":[\"Szia!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Identitásod szerkesztése\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Nem fogsz tudni hozzáférni a fiókodhoz, amíg segítséget nem kérsz az ügyfélszolgálattól. Az adataid nem lesznek törölve.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Mást csinálok\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Ismerőseink\"],\"nbzz1A\":[\"Add meg a kódot\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Itt jött létre az első bejegyzés\"],\"o+XJ9D\":[\"Megváltoztatás\"],\"oB4OOq\":[\"Kitilthatnak tagokat\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kirúghatnak tagokat\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Alapértelmezett\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Kijelentkezés\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"ugrás az elejéhez\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Felhasználó hívásból való távozásakor\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Fiók\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Összes üzenet\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 személy reagált\"],\"rxaY+5\":[\"Ne zavard\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Speciális\"],\"t43mBk\":[\"Szerver jelentése\"],\"tBmnPU\":[\"Ismerősök\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Kezelhetnek Webhookokat\"],\"tdTuUv\":[\"Felhasználó kizárása\"],\"tfDRzk\":[\"Mentés\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Kizárt felhasználó\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Irány a teszterek szervere\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Tag kirúgása\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Titulus törlése\"],\"utrCh2\":[\"Tageltiltás\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"A Revoltról\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Szerver leírása\"],\"v1kQyJ\":[\"Webhookok\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Adományozz a projektnek – ezzel is támogatod. Köszönjük!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Videó\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Identitás szerkesztése\"],\"vXIe7J\":[\"Nyelv\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Tárold biztonságos helyen ezeket a kódokat!\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Üzenetváltás\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Belépés a csatornába\"],\"wL3cK8\":[\"Újak\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Tagok\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Elmaszkírozhatják magukat\"],\"xDAtGP\":[\"Üzenetírás\"],\"xGVfLh\":[\"Folytatás\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Kitiltottak\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Szolgáltatási feltételek\"],\"xpgPPI\":[\"Saját robik\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Barátkérelem elfogadása\"],\"y1eoq1\":[\"Link másolása\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Kijelentem, hogy elmúltam 18 éves.\"],\"yDOdwQ\":[\"Felhasználók kezelése\"],\"yIBLq8\":[\"Beszéd\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Bezárás\"],\"z0hW8A\":[\"Helyreállító kódok megtekintése\"],\"z0t9bb\":[\"Bejelentkezés\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Innen indult a beszélgetés\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Régiek\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/hu/messages.mjs b/components/i18n/catalogs/hu/messages.mjs
new file mode 100644
index 0000000..c626da7
--- /dev/null
+++ b/components/i18n/catalogs/hu/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Némítás\"],\"+YFgJi\":[\"Kitűzők\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Megjelölés olvasottként\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Új titulus létrehozása\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Kijelentkezés az összes többi munkamenetből\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Olyan felhasználónevet válassz, ami alapján mások azonosítanak majd téged. Ezt a beállításokban később megváltoztathatod.\"],\"/qQDwm\":[\"Meghívó létrehozása…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Üzenet jelentése\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Visszajelzés írása\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Üzenet ID másolása\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Csoport elhagyása\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Közvetlenül itt jelezhetsz az issue-król és vitathatod meg velünk a továbbfejlesztéseket.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Kizártak\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nem fogsz tudni visszalépni, amíg újra meg nem hívnak.\"],\"3QuNUr\":[\"Többen is gépelnek…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Már ismerősöd ez a felhasználó.\"],\"3T8ziB\":[\"Fiók létrehozása\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Munkamenetek\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Becenév\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Válassz nyelvet\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Találj rá a hobbiddal, érdeklődéseiddel egyező közösségekre.\"],\"572q5a\":[\"Felhasználó jelentése\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Megjelölés nem olvasottként\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Becenevet válthatnak\"],\"5dJK4M\":[\"Titulusok\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Áttekintés\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Felhasználó\"],\"7SU2U9\":[\"Szerver ID másolása\"],\"7VpPHA\":[\"Jóváhagyás\"],\"7dZnmw\":[\"Releváns\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Felhasználónév\"],\"7vhWI8\":[\"Új jelszó\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Kezelhetik a szervert\"],\"8FE4JE\":[\"Hitelesítő app engedélyezése\"],\"8VGnad\":[\"Helyreállító kódok létrehozása\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Jelszó\"],\"8aTiea\":[\"Testreszabás\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Add meg a kívánt felhasználónevedet.\"],\"9D85wC\":[\"Felhasználói ID másolása\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Engedélyek\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Kitiltás\"],\"9nffag\":[\"a régen írt üzeneteket látod\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Felhasználó visszaengedése\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Csoport létrehozása\"],\"A9Rhec\":[\"Csatorna neve\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Add meg az új jelszavad\"],\"AU7IRi\":[\"Szövegcsatorna\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Beszédcsatorna\"],\"BHsrDx\":[\"Meghívók\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Az üzenetet másik platformon keresztül küldték el\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Láthatják a csatornákat\"],\"CK7kdd\":[\"Törlés\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Csatorna leírása\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Küldhetnek üzenetet\"],\"CkIs/i\":[\"Tagok némítása\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Mostani jelszavad\"],\"DDpDsO\":[\"Meghívó kódja\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Hivatalos kommunikáció\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Rendben van!\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Az üzenet nem lett betöltve – kattints az ugráshoz\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Featurejavaslat írása\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kirúgás\"],\"EdQY6l\":[\"Egyik sem\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Beszélgetések\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"csatolmányt küldött\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kategória létrehozása\"],\"F1uGNS\":[\"Kezelhetik más becenevét\"],\"FEr96N\":[\"Színséma\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Profilképeket távolíthatnak el\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Asztali értesítések engedélyezése\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Koncentál\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Csatorna ID másolása\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Csoportjaink\"],\"GhCPk1\":[\"Még nem késő visszavonni a visszahozhatatlant.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Add meg a mostani jelszót\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Válaszd ki a kérés hitelesítéséhez való módot.\"],\"HAKBY9\":[\"Feltölthetnek fájlokat\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Mentett jegyzetek\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Visszaigazoló e-mail újraküldése\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Tagok áthelyezése\"],\"ImOQa9\":[\"Válaszolás\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"több csatolmányt küldött\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nem törölhetjük ki a fiókot amíg a szerverek nincsenek kitörölve vagy átadva\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Művelet jóváhagyása\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"A Revolt közelmúltbeli újdonságai\"],\"JUJmXm\":[\"A választott móddal hagyd jóvá a választásod.\"],\"JW8mxK\":[\"Mentés a többi feljegyzéshez\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Üdvözöl a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"A bal felső sarokban kattints jobb egérgombbal a profilképedre, vagy ballal ide.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Üzenet törlése\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Törvénysértő tartalom\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Hangos értesítés\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Hivatalos szerver\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Ismerettség törlése\"],\"LcET2C\":[\"Adatvédelmi szabályzat\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Elküldtük a visszaigazoló e-mailt. A leveled 10 percen belül meg fog érkezni.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Szervernév\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Hely elhagyása\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Az aktív hibajelentéseket itt láthatod.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Írd meg miként fejleszthetnénk tovább a Revoltot.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"A fiókod igazolva lett\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail-cím\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"ide nincs engedélyed üzenetet írni\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Visszaállítás\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Barátkérelem elutasítása\"],\"PSP1MZ\":[\"Titulus címe\"],\"PWOA0E\":[\"Csak említések\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Beágyazott tartalmak küldése\"],\"PnzsrT\":[\"Forráskód\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"ugrás a mostaniakhoz\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nem csinál semmit\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Üzenet szerkesztése\"],\"QqoBlW\":[\"Nézd meg, hogy jött-e leveled.\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Jelszóváltoztatás kérése\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"ID másolása\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Olvasd, vagy pedig írd be a lenti tokent a hitelesítő appodban.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Hitelesítő eltávolítása\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Kezelhetnek üzeneteket\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Kezelhetnek titulusokat\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Beállítások\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Hívd meg minden ismerősödet (plusz menő robikat) és kezdődhet a buli!\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Profilképet válthatnak\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Elküldött üzenetkor\"],\"VJScHU\":[\"Indoklás\"],\"VKsaTi\":[\"Neki válaszolsz:\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Tagok süketítése\"],\"VsHxv+\":[\"Szöveg másolása\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"A fiókod igazolódik…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"A kimenő linkek veszélyt rejthetnek!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Kliens beállításai\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Hitelesítést végző app\"],\"YcVBkL\":[\"Üzenetek érkezésekor\"],\"YirHq7\":[\"Visszajelzés\"],\"YlFpiA\":[\"Nem sikerült igazolnod a fiókodat.\"],\"Yp+Hi/\":[\"Beállítások megnyitása\"],\"Z5HWHd\":[\"Be\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Helyreállító kódok\"],\"aAIQg2\":[\"Kinézet\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ez a művelet nem vonható vissza.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Ki\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Fiók letiltása\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Korábbi üzenetek olvasása\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Tag kitiltása\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Engedélyek kezelése\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Meghívó\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Törlés\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Mégsem\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Új robi létrehozása\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Meghívhatnak másokat\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Láthatatlan\"],\"ekfzWq\":[\"Felhasználói beállítások\"],\"etgedT\":[\"Emodzsik\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Testreszabás kezelése\"],\"fTMMeD\":[\"Meghívó létrehozása\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Regisztrálás\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Barátkérelem visszavonása\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Titulusok hozzárendelése\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Bejelentés\"],\"gkBHk/\":[\"Csatorna létrehozása\"],\"gkmjYT\":[\"Szerver elhagyása\"],\"go1IWB\":[\"Ez a felhasználó kizárt téged.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Csatorna törlése\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Add meg az e-mail-címed\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Létrehozás\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Kezdőhely\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Hangcsatornához csatlakozhatnak\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Megemlítés\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robi\xA0🤖\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Vissza a bejelentkezéshez\"],\"jpJ5AL\":[\"Helyreállító kód\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profilkép\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Üdv!\"],\"knjY+b\":[\"Később újra megnyithatod, de mindkettőtöknek el fog veszni a beszélgetés.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ismerősnek jelölés\"],\"lSGjX7\":[\"Felhasználó híváshoz csatlakozásakor\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Csatornák\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Csoportnév\"],\"mAYvqA\":[\"Szia!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Identitásod szerkesztése\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Nem fogsz tudni hozzáférni a fiókodhoz, amíg segítséget nem kérsz az ügyfélszolgálattól. Az adataid nem lesznek törölve.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Mást csinálok\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Ismerőseink\"],\"nbzz1A\":[\"Add meg a kódot\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Itt jött létre az első bejegyzés\"],\"o+XJ9D\":[\"Megváltoztatás\"],\"oB4OOq\":[\"Kitilthatnak tagokat\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kirúghatnak tagokat\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Alapértelmezett\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Kijelentkezés\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"ugrás az elejéhez\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Felhasználó hívásból való távozásakor\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Fiók\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Összes üzenet\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 személy reagált\"],\"rxaY+5\":[\"Ne zavard\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Speciális\"],\"t43mBk\":[\"Szerver jelentése\"],\"tBmnPU\":[\"Ismerősök\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Kezelhetnek Webhookokat\"],\"tdTuUv\":[\"Felhasználó kizárása\"],\"tfDRzk\":[\"Mentés\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Kizárt felhasználó\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Irány a teszterek szervere\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Tag kirúgása\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Titulus törlése\"],\"utrCh2\":[\"Tageltiltás\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"A Revoltról\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Szerver leírása\"],\"v1kQyJ\":[\"Webhookok\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Adományozz a projektnek – ezzel is támogatod. Köszönjük!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Videó\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Identitás szerkesztése\"],\"vXIe7J\":[\"Nyelv\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Tárold biztonságos helyen ezeket a kódokat!\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Üzenetváltás\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Belépés a csatornába\"],\"wL3cK8\":[\"Újak\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Tagok\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Elmaszkírozhatják magukat\"],\"xDAtGP\":[\"Üzenetírás\"],\"xGVfLh\":[\"Folytatás\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Kitiltottak\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Szolgáltatási feltételek\"],\"xpgPPI\":[\"Saját robik\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Barátkérelem elfogadása\"],\"y1eoq1\":[\"Link másolása\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Kijelentem, hogy elmúltam 18 éves.\"],\"yDOdwQ\":[\"Felhasználók kezelése\"],\"yIBLq8\":[\"Beszéd\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Bezárás\"],\"z0hW8A\":[\"Helyreállító kódok megtekintése\"],\"z0t9bb\":[\"Bejelentkezés\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Innen indult a beszélgetés\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Régiek\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/hu/messages.po b/components/i18n/catalogs/hu/messages.po
new file mode 100644
index 0000000..f44d936
--- /dev/null
+++ b/components/i18n/catalogs/hu/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: hu\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 személy reagált"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "A Revoltról"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Barátkérelem elfogadása"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Ismerősnek jelölés"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Speciális"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Összes üzenet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Már ismerősöd ez a felhasználó."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Kinézet"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Titulusok hozzárendelése"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Hitelesítést végző app"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Profilkép"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Kitűzők"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Kitiltás"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Tag kitiltása"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Kitilthatnak tagokat"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Kitiltottak"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Felhasználó kizárása"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Kizártak"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Kizárt felhasználó"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robi 🤖"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bug Tracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Mégsem"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Barátkérelem visszavonása"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Nem törölhetjük ki a fiókot amíg a szerverek nincsenek kitörölve vagy átadva"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Megváltoztatás"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Profilképet válthatnak"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Becenevet válthatnak"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Csatorna leírása"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Csatorna neve"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Csatornák"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Nézd meg, hogy jött-e leveled."
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Törlés"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Kliens beállításai"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Bezárás"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Jóváhagyás"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Művelet jóváhagyása"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Hangcsatornához csatlakozhatnak"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Törvénysértő tartalom"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Folytatás"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Beszélgetések"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Csatorna ID másolása"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "ID másolása"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Link másolása"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Üzenet ID másolása"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Szerver ID másolása"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Szöveg másolása"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Felhasználói ID másolása"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Létrehozás"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Csoport létrehozása"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Új robi létrehozása"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Új titulus létrehozása"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Fiók létrehozása"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Kategória létrehozása"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Csatorna létrehozása"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Meghívó létrehozása"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Mostani jelszavad"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Mást csinálok"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Testreszabás"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Tagok süketítése"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Alapértelmezett"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Törlés"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Csatorna törlése"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Üzenet törlése"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Titulus törlése"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Fiók letiltása"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ne zavard"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Rendben van!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Identitás szerkesztése"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Üzenet szerkesztése"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Identitásod szerkesztése"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-mail-cím"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emodzsik"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Hitelesítő app engedélyezése"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Asztali értesítések engedélyezése"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Add meg az új jelszavad"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Belépés a csatornába"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Add meg a kódot"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Add meg a mostani jelszót"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Add meg a kívánt felhasználónevedet."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "A kimenő linkek veszélyt rejthetnek!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Nem sikerült igazolnod a fiókodat."
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Visszajelzés"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Találj rá a hobbiddal, érdeklődéseiddel egyező közösségekre."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Koncentál"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Ismerősök"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Helyreállító kódok létrehozása"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Meghívó létrehozása…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Vissza a bejelentkezéshez"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Irány a teszterek szervere"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Csoportnév"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Szia!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Kezdőhely"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Kijelentem, hogy elmúltam 18 éves."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Nem csinál semmit"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Láthatatlan"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Hívd meg minden ismerősödet (plusz menő robikat) és kezdődhet a buli!"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Meghívó kódja"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Meghívhatnak másokat"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Meghívó"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Meghívók"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "ugrás a mostaniakhoz"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "ugrás az elejéhez"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Kirúgás"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Tag kirúgása"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kirúghatnak tagokat"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Nyelv"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Újak"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Hely elhagyása"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Csoport elhagyása"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Szerver elhagyása"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Írd meg miként fejleszthetnénk tovább a Revoltot."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Kijelentkezés"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Kijelentkezés az összes többi munkamenetből"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Bejelentkezés"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Testreszabás kezelése"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Kezelhetnek üzeneteket"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Kezelhetik más becenevét"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Engedélyek kezelése"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Kezelhetnek titulusokat"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Kezelhetik a szervert"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Kezelhetnek Webhookokat"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Megjelölés olvasottként"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Megjelölés nem olvasottként"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Elmaszkírozhatják magukat"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Tagok"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Megemlítés"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Csak említések"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Üzenetírás"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Az üzenet nem lett betöltve – kattints az ugráshoz"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Üzenetek érkezésekor"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Elküldött üzenetkor"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Az üzenetet másik platformon keresztül küldték el"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Üzenetváltás"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Tagok áthelyezése"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Tagok némítása"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Némítás"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Ismerőseink"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Csoportjaink"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Fiók"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Saját robik"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Új jelszó"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Becenév"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Egyik sem"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Értesítések"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Ki"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Hivatalos kommunikáció"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Hivatalos szerver"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Régiek"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Be"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Még nem késő visszavonni a visszahozhatatlant."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Beállítások megnyitása"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Áttekintés"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Jelszó"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Engedélyek"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Olyan felhasználónevet válassz, ami alapján mások azonosítanak majd téged. Ezt a beállításokban később megváltoztathatod."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "A választott móddal hagyd jóvá a választásod."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Add meg az e-mail-címed"
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Tárold biztonságos helyen ezeket a kódokat!"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Olvasd, vagy pedig írd be a lenti tokent a hitelesítő appodban."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Válaszd ki a kérés hitelesítéséhez való módot."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Adatvédelmi szabályzat"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Korábbi üzenetek olvasása"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Indoklás"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Helyreállító kód"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Regisztrálás"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Barátkérelem elutasítása"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Releváns"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Hitelesítő eltávolítása"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Profilképeket távolíthatnak el"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Ismerettség törlése"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Válaszolás"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Neki válaszolsz:"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Bejelentés"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Üzenet jelentése"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Szerver jelentése"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Felhasználó jelentése"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Visszaigazoló e-mail újraküldése"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Visszaállítás"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Jelszóváltoztatás kérése"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Titulus címe"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Titulusok"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Mentés"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Mentés a többi feljegyzéshez"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Mentett jegyzetek"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Válassz nyelvet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Beágyazott tartalmak küldése"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Küldhetnek üzenetet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "csatolmányt küldött"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "több csatolmányt küldött"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Szerver leírása"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Szervernév"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Munkamenetek"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Beállítások"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Többen is gépelnek…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Hangos értesítés"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Forráskód"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Beszéd"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Featurejavaslat írása"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Visszajelzés írása"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Adományozz a projektnek – ezzel is támogatod. Köszönjük!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Szolgáltatási feltételek"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Szövegcsatorna"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Színséma"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Innen indult a beszélgetés"
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Itt jött létre az első bejegyzés"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Ez a felhasználó kizárt téged."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Tageltiltás"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Felhasználó visszaengedése"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Feltölthetnek fájlokat"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Felhasználó"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Felhasználó híváshoz csatlakozásakor"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Felhasználó hívásból való távozásakor"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Felhasználók kezelése"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Felhasználói beállítások"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Felhasználónév"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "A fiókod igazolódik…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Videó"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Láthatják a csatornákat"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Az aktív hibajelentéseket itt láthatod."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "A Revolt közelmúltbeli újdonságai"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Helyreállító kódok megtekintése"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "a régen írt üzeneteket látod"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Beszédcsatorna"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Elküldtük a visszaigazoló e-mailt. A leveled 10 percen belül meg fog érkezni."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhookok"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Üdvözöl a"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Üdv!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "A bal felső sarokban kattints jobb egérgombbal a profilképedre, vagy ballal ide."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Később újra megnyithatod, de mindkettőtöknek el fog veszni a beszélgetés."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Közvetlenül itt jelezhetsz az issue-król és vitathatod meg velünk a továbbfejlesztéseket."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Ez a művelet nem vonható vissza."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "ide nincs engedélyed üzenetet írni"
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Nem fogsz tudni hozzáférni a fiókodhoz, amíg segítséget nem kérsz az ügyfélszolgálattól. Az adataid nem lesznek törölve."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nem fogsz tudni visszalépni, amíg újra meg nem hívnak."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "A fiókod igazolva lett"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Helyreállító kódok"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/hy/messages.js b/components/i18n/catalogs/hy/messages.js
new file mode 100644
index 0000000..070cae7
--- /dev/null
+++ b/components/i18n/catalogs/hy/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Անջատված է\"],\"+YFgJi\":[\"Պիտակներ\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Նշել որպես կարդացված\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Ստեղծեք նոր դեր\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Դուրս եկեք մնացած բոլոր նիստերից\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Ընտրեք օգտվողի անուն, որով ցանկանում եք, որ մարդիկ կարողանան գտնել ձեզ, այն կարող է փոխվել ավելի ուշ կարգավորումներում.\"],\"/qQDwm\":[\"Հրավերի ստեղծում…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Հաղորդել հաղորդագրության մասին\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Հետադարձ կապ ուղարկել\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Պատճենել հաղորդագրության ID-ն\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Դուրս գալ խմբից\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Դուք կարող եք զեկուցել խնդիրների մասին և քննարկել բարելավումները մեզ հետ ուղղակիորեն այստեղ.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Արգելափակված\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Դուք չեք կարողանա նորից միանալ, քանի դեռ ձեզ նորից չեն հրավիրել.\"],\"3QuNUr\":[\"Մի քանի հոգի գրում են…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Արդեն ընկերներ այս օգտատիրոջ հետ.\"],\"3T8ziB\":[\"Ստեղծել հաշիվ\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Նիստեր\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Մականուն\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Ընտրեք ձեր լեզուն\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Գտեք համայնք՝ հիմնված ձեր հոբբիների կամ հետաքրքրությունների վրա.\"],\"572q5a\":[\"Հաղորդել օգտատիրոջ մասին\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"չընթերցված\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Փոխել մականունը\"],\"5dJK4M\":[\"դերեր\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"ակնարկ\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Անցանց\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"օգտագործողի անունը\"],\"7SU2U9\":[\"Պատճենել սերվերի ID-ն\"],\"7VpPHA\":[\"հաստատել\"],\"7dZnmw\":[\"Համապատասխանություն\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Օգտագործողի անունը\"],\"7vhWI8\":[\"նոր ծածկագիր\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Կառավարեք սերվերը\"],\"8FE4JE\":[\"Միացնել իսկորոշիչ հավելվածը\"],\"8VGnad\":[\"Ստեղծեք վերականգնման կոդեր\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Գաղտնաբառ\"],\"8aTiea\":[\"հարմարեցում\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Մուտքագրեք ձեր օգտվողի անունը:\"],\"9D85wC\":[\"Պատճենել օգտվողի ID-ն\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Թույլտվություններ\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"արգելել\"],\"9nffag\":[\"Ավելի հին հաղորդագրությունների դիտում\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Արգելահանել օգտատիրոջը\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Ստեղծել խումբ\"],\"A9Rhec\":[\"Ալիքի անվանումը\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Մուտքագրեք նոր ծածկագիրը.\"],\"AU7IRi\":[\"Տեքստային ալիք\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Ձայնային ալիք\"],\"BHsrDx\":[\"Հրավիրում է\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Հաղորդագրությունն ուղարկվել է այլ հարթակում\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Դիտել ալիքը\"],\"CK7kdd\":[\"Մաքրել կարգավիճակը\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Ալիքի նկարագրություն\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Ուղարկել հաղորդագրություններ\"],\"CkIs/i\":[\"Անդամների խլացում\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Ընթացիկ գաղտնաբառը\"],\"DDpDsO\":[\"Հրավիրել կոդը\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Պաշտոնական հաղորդագրություն\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"կատարած\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Հաղորդագրությունը բեռնված չէ, սեղմեք՝ անցնելու համար\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Ներկայացրեք հնարավորությունների առաջարկ\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Ոտքով հարվածել\"],\"EdQY6l\":[\"Ոչ ոք\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Զրույցներ\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ուղարկեց հավելված\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Ստեղծել կատեգորիա\"],\"F1uGNS\":[\"Կառավարեք մականունները\"],\"FEr96N\":[\"թեման\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Հեռացնել Անձնանշանները\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Միացնել աշխատասեղանի ծանուցումները.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Կենտրոնանալ\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Պատճենել ալիքի ID-ն\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Փոխադարձ խմբեր\"],\"GhCPk1\":[\"Երբ այն ջնջվի, հետդարձ չկա.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Մուտքագրեք ձեր ընթացիկ գաղտնաբառը.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Խնդրում ենք ընտրել ձեր հարցումը նույնականացնելու մեթոդ.\"],\"HAKBY9\":[\"Վերբեռնել Ֆայլեր\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Պահված նշումներ\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Նորից ուղարկել հաստատումը\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Անդամների տեղափոխում\"],\"ImOQa9\":[\"Պատասխանել\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ուղարկվել է բազմաթիվ հավելվածներ\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Հաստատեք գործողությունը\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Դիտեք ավելի հին թարմացումները\"],\"JUJmXm\":[\"Խնդրում ենք հաստատել՝ օգտագործելով ընտրված մեթոդը.\"],\"JW8mxK\":[\"Պահպանեք ձեր նշումներում\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Բարի գալուստ\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Կարող եք նաև աջ սեղմել օգտվողի պատկերակի վրա վերևի ձախ մասում կամ ձախ սեղմել այն, եթե արդեն տանը եք.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Ջնջել հաղորդագրությունը\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Բովանդակությունը խախտում է մեկ կամ մի քանի օրենքներ\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Հնչյուններ\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Պաշտոնական սերվեր\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Հեռացրեք ընկերոջը\"],\"LcET2C\":[\"Գաղտնիության քաղաքականություն\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Խնդրում ենք տրամադրել մինչև 10 րոպե, որպեսզի այն հասնի.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"սերվերի անունը\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"հեռանալ\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Դիտեք ներկայումս ակտիվ վրիպակների հաշվետվությունները այստեղ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Տեղեկացրեք մեզ, թե ինչպես կարող ենք բարելավել մեր հավելվածը՝ մեզ հետադարձ կապ տալով.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ձեր հաշիվը հաստատված է!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Փոստ\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Դուք այս ալիքով հաղորդագրություններ ուղարկելու թույլտվություն չունեք.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"վերակայել\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Դերի անվանումը\"],\"PWOA0E\":[\"Միայն հիշատակումներ\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Ուղարկել ներկառուցումներ\"],\"PnzsrT\":[\"Աղբյուրի կոդը\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Անցնել ներկայացնելու\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Պարապ\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Խմբագրել հաղորդագրությունը\"],\"QqoBlW\":[\"Ստուգեք ձեր փոստը!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Վերականգնել գաղտնաբառը\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"վրիպակ հետեւել\"],\"S3bIKF\":[\"Պատճենել ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Խնդրում ենք սկանավորել կամ օգտագործել ստորև նշված նշանը ձեր իսկորոշման հավելվածում.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Հեռացնել Authenticator-ը\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Կառավարեք հաղորդագրությունները\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Կառավարեք դերերը\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Կարգավորումներ\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Հրավիրեք ձեր բոլոր ընկերներին, մի քանի հիանալի բոտերի և կազմակերպեք մեծ երեկույթ.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Փոխել Ավատարը\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Նամակը ուղարկված է\"],\"VJScHU\":[\"պատճառ\"],\"VKsaTi\":[\"Պատասխանելով\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Խուլ անդամներ\"],\"VsHxv+\":[\"Պատճենել տեքստը\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Ձեր հաշիվը հաստատվում է…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Արտաքին հղումները կարող են վտանգավոր լինել!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Հաճախորդի կարգավորումներ\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator հավելված\"],\"YcVBkL\":[\"Հաղորդագրությունը ստացված է\"],\"YirHq7\":[\"հետադարձ կապ\"],\"YlFpiA\":[\"Չհաջողվեց հաստատել!\"],\"Yp+Hi/\":[\"Բացեք կարգավորումները\"],\"Z5HWHd\":[\"Վրա\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ձեր վերականգնման կոդերը\"],\"aAIQg2\":[\"տեսքը\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Դուք չեք կարող հետարկել այս գործողությունը.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Անջատված\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Անջատել հաշիվը\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Կարդացեք հաղորդագրությունների պատմությունը\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Արգելել անդամ\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Կառավարեք թույլտվությունները\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Հրավիրող\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"ջնջել\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"չեղարկել\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Ստեղծեք նոր բոտ\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Հրավիրեք Ուրիշներին\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Անտեսանելի\"],\"ekfzWq\":[\"Օգտագործողի կարգավորումներ\"],\"etgedT\":[\"Էմոջիներ\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Կառավարեք անհատականացումը\"],\"fTMMeD\":[\"Ստեղծել հրավեր\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Գրանցվել\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Չեղարկել հարցումը\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Դերեր նշանակել\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"հաշվետվություն\"],\"gkBHk/\":[\"Ստեղծել ալիք\"],\"gkmjYT\":[\"Հեռանալ սերվերից\"],\"go1IWB\":[\"Այս օգտվողն արգելափակել է ձեզ.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Ջնջել ալիքը\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Խնդրում ենք մուտքագրել ձեր էլ.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Ստեղծել\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"տուն\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Միացնել\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Նշել\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"բոտ\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Վերադառնալ մուտք գործելու համար\"],\"jpJ5AL\":[\"Վերականգնման ծածկագիր\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Անձնանշան\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Բարի գալուստ!\"],\"knjY+b\":[\"Դուք կարող եք նորից բացել այն ավելի ուշ, բայց այն կվերանա երկու կողմից.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ավելացնել ընկեր\"],\"lSGjX7\":[\"Օգտատերը միացել է զանգին\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Ալիքներ\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Խմբի անվանումը\"],\"mAYvqA\":[\"Բարեւ Ձեզ!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Պատվերով կարգավիճակ\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Ընդհանուր ընկերներ\"],\"nbzz1A\":[\"մուտքագրեք կոդը\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Սա ձեր գրառումների սկիզբն է.\"],\"o+XJ9D\":[\"Փոփոխություն\"],\"oB4OOq\":[\"Արգելեք անդամներին\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Առցանց\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick անդամներին\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"լռելյայն\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"դուրս գալ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Անցնել դեպի սկիզբ\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Օգտագործողի ձախ զանգ\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Իմ հաշիվը\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Բոլոր հաղորդագրությունները\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Չխանգարել\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Հաշվետվության սերվեր\"],\"tBmnPU\":[\"Ընկերներ\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Կառավարեք Webhooks\"],\"tdTuUv\":[\"Արգելափակել օգտվողին\"],\"tfDRzk\":[\"Պահպանել\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Արգելափակված օգտվող\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Գնացեք փորձարկող սերվեր\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick անդամ\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Ջնջել դերը\"],\"utrCh2\":[\"Ժամկետանց անդամներ\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"մասին\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Սերվերի նկարագրություն\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Անձնագիր\"],\"vJum3e\":[\"Աջակցեք նախագծին` նվիրաբերելով - շնորհակալություն!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Տեսանյութ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Խմբագրել ինքնությունը\"],\"vXIe7J\":[\"Լեզու\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Խնդրում ենք դրանք պահել անվտանգ վայրում.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Մուտք գործեք ալիք\"],\"wL3cK8\":[\"Վերջին\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"անդամներ\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Դիմակահանդես\"],\"xDAtGP\":[\"Հաղորդագրություն\"],\"xGVfLh\":[\"Շարունակել\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Արգելքներ\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"ծառայության պայմաններ\"],\"xpgPPI\":[\"Իմ բոտերը\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Պատճենել հղումը\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ես հաստատում եմ, որ ես առնվազն 18 տարեկան եմ.\"],\"yDOdwQ\":[\"Օգտագործողի կառավարում\"],\"yIBLq8\":[\"Խոսեք\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"փակել\"],\"z0hW8A\":[\"Դիտեք վերականգնման կոդերը\"],\"z0t9bb\":[\"Մուտք գործել\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"լավ\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Սա ձեր զրույցի սկիզբն է.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"ամենահին\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/hy/messages.mjs b/components/i18n/catalogs/hy/messages.mjs
new file mode 100644
index 0000000..608fadd
--- /dev/null
+++ b/components/i18n/catalogs/hy/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Անջատված է\"],\"+YFgJi\":[\"Պիտակներ\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Նշել որպես կարդացված\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Ստեղծեք նոր դեր\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Դուրս եկեք մնացած բոլոր նիստերից\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Ընտրեք օգտվողի անուն, որով ցանկանում եք, որ մարդիկ կարողանան գտնել ձեզ, այն կարող է փոխվել ավելի ուշ կարգավորումներում.\"],\"/qQDwm\":[\"Հրավերի ստեղծում…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Հաղորդել հաղորդագրության մասին\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Հետադարձ կապ ուղարկել\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Պատճենել հաղորդագրության ID-ն\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Դուրս գալ խմբից\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Դուք կարող եք զեկուցել խնդիրների մասին և քննարկել բարելավումները մեզ հետ ուղղակիորեն այստեղ.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Արգելափակված\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Դուք չեք կարողանա նորից միանալ, քանի դեռ ձեզ նորից չեն հրավիրել.\"],\"3QuNUr\":[\"Մի քանի հոգի գրում են…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Արդեն ընկերներ այս օգտատիրոջ հետ.\"],\"3T8ziB\":[\"Ստեղծել հաշիվ\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Նիստեր\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Մականուն\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Ընտրեք ձեր լեզուն\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Գտեք համայնք՝ հիմնված ձեր հոբբիների կամ հետաքրքրությունների վրա.\"],\"572q5a\":[\"Հաղորդել օգտատիրոջ մասին\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"չընթերցված\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Փոխել մականունը\"],\"5dJK4M\":[\"դերեր\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"ակնարկ\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Անցանց\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"օգտագործողի անունը\"],\"7SU2U9\":[\"Պատճենել սերվերի ID-ն\"],\"7VpPHA\":[\"հաստատել\"],\"7dZnmw\":[\"Համապատասխանություն\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Օգտագործողի անունը\"],\"7vhWI8\":[\"նոր ծածկագիր\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Կառավարեք սերվերը\"],\"8FE4JE\":[\"Միացնել իսկորոշիչ հավելվածը\"],\"8VGnad\":[\"Ստեղծեք վերականգնման կոդեր\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Գաղտնաբառ\"],\"8aTiea\":[\"հարմարեցում\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Մուտքագրեք ձեր օգտվողի անունը:\"],\"9D85wC\":[\"Պատճենել օգտվողի ID-ն\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Թույլտվություններ\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"արգելել\"],\"9nffag\":[\"Ավելի հին հաղորդագրությունների դիտում\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Արգելահանել օգտատիրոջը\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Ստեղծել խումբ\"],\"A9Rhec\":[\"Ալիքի անվանումը\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Մուտքագրեք նոր ծածկագիրը.\"],\"AU7IRi\":[\"Տեքստային ալիք\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Ձայնային ալիք\"],\"BHsrDx\":[\"Հրավիրում է\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Հաղորդագրությունն ուղարկվել է այլ հարթակում\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Դիտել ալիքը\"],\"CK7kdd\":[\"Մաքրել կարգավիճակը\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Ալիքի նկարագրություն\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Ուղարկել հաղորդագրություններ\"],\"CkIs/i\":[\"Անդամների խլացում\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Ընթացիկ գաղտնաբառը\"],\"DDpDsO\":[\"Հրավիրել կոդը\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Պաշտոնական հաղորդագրություն\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"կատարած\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Հաղորդագրությունը բեռնված չէ, սեղմեք՝ անցնելու համար\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Ներկայացրեք հնարավորությունների առաջարկ\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Ոտքով հարվածել\"],\"EdQY6l\":[\"Ոչ ոք\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Զրույցներ\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ուղարկեց հավելված\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Ստեղծել կատեգորիա\"],\"F1uGNS\":[\"Կառավարեք մականունները\"],\"FEr96N\":[\"թեման\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Հեռացնել Անձնանշանները\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Միացնել աշխատասեղանի ծանուցումները.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Կենտրոնանալ\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Պատճենել ալիքի ID-ն\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Փոխադարձ խմբեր\"],\"GhCPk1\":[\"Երբ այն ջնջվի, հետդարձ չկա.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Մուտքագրեք ձեր ընթացիկ գաղտնաբառը.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Խնդրում ենք ընտրել ձեր հարցումը նույնականացնելու մեթոդ.\"],\"HAKBY9\":[\"Վերբեռնել Ֆայլեր\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Պահված նշումներ\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Նորից ուղարկել հաստատումը\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Անդամների տեղափոխում\"],\"ImOQa9\":[\"Պատասխանել\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ուղարկվել է բազմաթիվ հավելվածներ\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Հաստատեք գործողությունը\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Դիտեք ավելի հին թարմացումները\"],\"JUJmXm\":[\"Խնդրում ենք հաստատել՝ օգտագործելով ընտրված մեթոդը.\"],\"JW8mxK\":[\"Պահպանեք ձեր նշումներում\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Բարի գալուստ\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Կարող եք նաև աջ սեղմել օգտվողի պատկերակի վրա վերևի ձախ մասում կամ ձախ սեղմել այն, եթե արդեն տանը եք.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Ջնջել հաղորդագրությունը\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Բովանդակությունը խախտում է մեկ կամ մի քանի օրենքներ\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Հնչյուններ\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Պաշտոնական սերվեր\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Հեռացրեք ընկերոջը\"],\"LcET2C\":[\"Գաղտնիության քաղաքականություն\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Խնդրում ենք տրամադրել մինչև 10 րոպե, որպեսզի այն հասնի.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"սերվերի անունը\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"հեռանալ\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Դիտեք ներկայումս ակտիվ վրիպակների հաշվետվությունները այստեղ.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Տեղեկացրեք մեզ, թե ինչպես կարող ենք բարելավել մեր հավելվածը՝ մեզ հետադարձ կապ տալով.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ձեր հաշիվը հաստատված է!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Փոստ\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Դուք այս ալիքով հաղորդագրություններ ուղարկելու թույլտվություն չունեք.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"վերակայել\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Դերի անվանումը\"],\"PWOA0E\":[\"Միայն հիշատակումներ\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Ուղարկել ներկառուցումներ\"],\"PnzsrT\":[\"Աղբյուրի կոդը\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Անցնել ներկայացնելու\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Պարապ\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Խմբագրել հաղորդագրությունը\"],\"QqoBlW\":[\"Ստուգեք ձեր փոստը!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Վերականգնել գաղտնաբառը\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"վրիպակ հետեւել\"],\"S3bIKF\":[\"Պատճենել ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Խնդրում ենք սկանավորել կամ օգտագործել ստորև նշված նշանը ձեր իսկորոշման հավելվածում.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Հեռացնել Authenticator-ը\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Կառավարեք հաղորդագրությունները\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Կառավարեք դերերը\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Կարգավորումներ\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Հրավիրեք ձեր բոլոր ընկերներին, մի քանի հիանալի բոտերի և կազմակերպեք մեծ երեկույթ.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Փոխել Ավատարը\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Նամակը ուղարկված է\"],\"VJScHU\":[\"պատճառ\"],\"VKsaTi\":[\"Պատասխանելով\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Խուլ անդամներ\"],\"VsHxv+\":[\"Պատճենել տեքստը\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Ձեր հաշիվը հաստատվում է…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Արտաքին հղումները կարող են վտանգավոր լինել!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Հաճախորդի կարգավորումներ\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator հավելված\"],\"YcVBkL\":[\"Հաղորդագրությունը ստացված է\"],\"YirHq7\":[\"հետադարձ կապ\"],\"YlFpiA\":[\"Չհաջողվեց հաստատել!\"],\"Yp+Hi/\":[\"Բացեք կարգավորումները\"],\"Z5HWHd\":[\"Վրա\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ձեր վերականգնման կոդերը\"],\"aAIQg2\":[\"տեսքը\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Դուք չեք կարող հետարկել այս գործողությունը.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Անջատված\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Անջատել հաշիվը\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Կարդացեք հաղորդագրությունների պատմությունը\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Արգելել անդամ\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Կառավարեք թույլտվությունները\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Հրավիրող\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"ջնջել\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"չեղարկել\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Ստեղծեք նոր բոտ\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Հրավիրեք Ուրիշներին\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Անտեսանելի\"],\"ekfzWq\":[\"Օգտագործողի կարգավորումներ\"],\"etgedT\":[\"Էմոջիներ\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Կառավարեք անհատականացումը\"],\"fTMMeD\":[\"Ստեղծել հրավեր\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Գրանցվել\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Չեղարկել հարցումը\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Դերեր նշանակել\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"հաշվետվություն\"],\"gkBHk/\":[\"Ստեղծել ալիք\"],\"gkmjYT\":[\"Հեռանալ սերվերից\"],\"go1IWB\":[\"Այս օգտվողն արգելափակել է ձեզ.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Ջնջել ալիքը\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Խնդրում ենք մուտքագրել ձեր էլ.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Ստեղծել\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"տուն\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Միացնել\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Նշել\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"բոտ\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Վերադառնալ մուտք գործելու համար\"],\"jpJ5AL\":[\"Վերականգնման ծածկագիր\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Անձնանշան\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Բարի գալուստ!\"],\"knjY+b\":[\"Դուք կարող եք նորից բացել այն ավելի ուշ, բայց այն կվերանա երկու կողմից.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Ավելացնել ընկեր\"],\"lSGjX7\":[\"Օգտատերը միացել է զանգին\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Ալիքներ\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Խմբի անվանումը\"],\"mAYvqA\":[\"Բարեւ Ձեզ!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Պատվերով կարգավիճակ\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Ընդհանուր ընկերներ\"],\"nbzz1A\":[\"մուտքագրեք կոդը\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Սա ձեր գրառումների սկիզբն է.\"],\"o+XJ9D\":[\"Փոփոխություն\"],\"oB4OOq\":[\"Արգելեք անդամներին\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Առցանց\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick անդամներին\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"լռելյայն\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"դուրս գալ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Անցնել դեպի սկիզբ\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Օգտագործողի ձախ զանգ\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Իմ հաշիվը\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Բոլոր հաղորդագրությունները\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Չխանգարել\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Հաշվետվության սերվեր\"],\"tBmnPU\":[\"Ընկերներ\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Կառավարեք Webhooks\"],\"tdTuUv\":[\"Արգելափակել օգտվողին\"],\"tfDRzk\":[\"Պահպանել\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Արգելափակված օգտվող\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Գնացեք փորձարկող սերվեր\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick անդամ\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Ջնջել դերը\"],\"utrCh2\":[\"Ժամկետանց անդամներ\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"մասին\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Սերվերի նկարագրություն\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Անձնագիր\"],\"vJum3e\":[\"Աջակցեք նախագծին` նվիրաբերելով - շնորհակալություն!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Տեսանյութ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Խմբագրել ինքնությունը\"],\"vXIe7J\":[\"Լեզու\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Խնդրում ենք դրանք պահել անվտանգ վայրում.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Մուտք գործեք ալիք\"],\"wL3cK8\":[\"Վերջին\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"անդամներ\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Դիմակահանդես\"],\"xDAtGP\":[\"Հաղորդագրություն\"],\"xGVfLh\":[\"Շարունակել\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Արգելքներ\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"ծառայության պայմաններ\"],\"xpgPPI\":[\"Իմ բոտերը\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Պատճենել հղումը\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ես հաստատում եմ, որ ես առնվազն 18 տարեկան եմ.\"],\"yDOdwQ\":[\"Օգտագործողի կառավարում\"],\"yIBLq8\":[\"Խոսեք\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"փակել\"],\"z0hW8A\":[\"Դիտեք վերականգնման կոդերը\"],\"z0t9bb\":[\"Մուտք գործել\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"լավ\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Սա ձեր զրույցի սկիզբն է.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"ամենահին\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/hy/messages.po b/components/i18n/catalogs/hy/messages.po
new file mode 100644
index 0000000..4692638
--- /dev/null
+++ b/components/i18n/catalogs/hy/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: hy\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "մասին"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Ավելացնել ընկեր"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Բոլոր հաղորդագրությունները"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Արդեն ընկերներ այս օգտատիրոջ հետ."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "տեսքը"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Դերեր նշանակել"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authenticator հավելված"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Անձնանշան"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Պիտակներ"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "արգելել"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Արգելել անդամ"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Արգելեք անդամներին"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Արգելքներ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Արգելափակել օգտվողին"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Արգելափակված"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Արգելափակված օգտվող"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "բոտ"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "վրիպակ հետեւել"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "չեղարկել"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Չեղարկել հարցումը"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Փոփոխություն"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Փոխել Ավատարը"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Փոխել մականունը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Ալիքի նկարագրություն"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Ալիքի անվանումը"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Ալիքներ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Ստուգեք ձեր փոստը!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Մաքրել կարգավիճակը"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Հաճախորդի կարգավորումներ"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "փակել"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "հաստատել"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Հաստատեք գործողությունը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Միացնել"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Բովանդակությունը խախտում է մեկ կամ մի քանի օրենքներ"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Շարունակել"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Զրույցներ"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Պատճենել ալիքի ID-ն"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Պատճենել ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Պատճենել հղումը"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Պատճենել հաղորդագրության ID-ն"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Պատճենել սերվերի ID-ն"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Պատճենել տեքստը"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Պատճենել օգտվողի ID-ն"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Ստեղծել"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Ստեղծել խումբ"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Ստեղծեք նոր բոտ"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Ստեղծեք նոր դեր"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Ստեղծել հաշիվ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Ստեղծել կատեգորիա"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Ստեղծել ալիք"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Ստեղծել հրավեր"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Ընթացիկ գաղտնաբառը"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Պատվերով կարգավիճակ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "հարմարեցում"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Խուլ անդամներ"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "լռելյայն"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "ջնջել"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Ջնջել ալիքը"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Ջնջել հաղորդագրությունը"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Ջնջել դերը"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Անջատել հաշիվը"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Չխանգարել"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "կատարած"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Խմբագրել ինքնությունը"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Խմբագրել հաղորդագրությունը"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Փոստ"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Էմոջիներ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Միացնել իսկորոշիչ հավելվածը"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Միացնել աշխատասեղանի ծանուցումները."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Մուտքագրեք նոր ծածկագիրը."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Մուտք գործեք ալիք"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "մուտքագրեք կոդը"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Մուտքագրեք ձեր ընթացիկ գաղտնաբառը."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Մուտքագրեք ձեր օգտվողի անունը:"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Արտաքին հղումները կարող են վտանգավոր լինել!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Չհաջողվեց հաստատել!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "հետադարձ կապ"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Գտեք համայնք՝ հիմնված ձեր հոբբիների կամ հետաքրքրությունների վրա."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Կենտրոնանալ"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Ընկերներ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Ստեղծեք վերականգնման կոդեր"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Հրավերի ստեղծում…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Վերադառնալ մուտք գործելու համար"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Գնացեք փորձարկող սերվեր"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Խմբի անվանումը"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Բարեւ Ձեզ!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "տուն"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Ես հաստատում եմ, որ ես առնվազն 18 տարեկան եմ."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Պարապ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Անտեսանելի"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Հրավիրեք ձեր բոլոր ընկերներին, մի քանի հիանալի բոտերի և կազմակերպեք մեծ երեկույթ."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Հրավիրել կոդը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Հրավիրեք Ուրիշներին"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Հրավիրող"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Հրավիրում է"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Անցնել ներկայացնելու"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Անցնել դեպի սկիզբ"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Ոտքով հարվածել"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Kick անդամ"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kick անդամներին"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Լեզու"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Վերջին"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "հեռանալ"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Դուրս գալ խմբից"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Հեռանալ սերվերից"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Տեղեկացրեք մեզ, թե ինչպես կարող ենք բարելավել մեր հավելվածը՝ մեզ հետադարձ կապ տալով."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "դուրս գալ"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Դուրս եկեք մնացած բոլոր նիստերից"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Մուտք գործել"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Կառավարեք անհատականացումը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Կառավարեք հաղորդագրությունները"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Կառավարեք մականունները"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Կառավարեք թույլտվությունները"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Կառավարեք դերերը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Կառավարեք սերվերը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Կառավարեք Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Նշել որպես կարդացված"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "չընթերցված"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Դիմակահանդես"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "անդամներ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Նշել"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Միայն հիշատակումներ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Հաղորդագրություն"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Հաղորդագրությունը բեռնված չէ, սեղմեք՝ անցնելու համար"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Հաղորդագրությունը ստացված է"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Նամակը ուղարկված է"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Հաղորդագրությունն ուղարկվել է այլ հարթակում"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Անդամների տեղափոխում"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Անդամների խլացում"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Անջատված է"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Ընդհանուր ընկերներ"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Փոխադարձ խմբեր"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Իմ հաշիվը"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Իմ բոտերը"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "նոր ծածկագիր"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Մականուն"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ոչ ոք"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Ծանուցումներ"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Անջատված"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Պաշտոնական հաղորդագրություն"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Պաշտոնական սերվեր"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Անցանց"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "լավ"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "ամենահին"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Վրա"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Երբ այն ջնջվի, հետդարձ չկա."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Առցանց"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Բացեք կարգավորումները"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "ակնարկ"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Գաղտնաբառ"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Թույլտվություններ"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Ընտրեք օգտվողի անուն, որով ցանկանում եք, որ մարդիկ կարողանան գտնել ձեզ, այն կարող է փոխվել ավելի ուշ կարգավորումներում."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Խնդրում ենք հաստատել՝ օգտագործելով ընտրված մեթոդը."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Խնդրում ենք մուտքագրել ձեր էլ."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Խնդրում ենք դրանք պահել անվտանգ վայրում."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Խնդրում ենք սկանավորել կամ օգտագործել ստորև նշված նշանը ձեր իսկորոշման հավելվածում."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Խնդրում ենք ընտրել ձեր հարցումը նույնականացնելու մեթոդ."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Գաղտնիության քաղաքականություն"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Անձնագիր"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Կարդացեք հաղորդագրությունների պատմությունը"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "պատճառ"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Վերականգնման ծածկագիր"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Գրանցվել"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Համապատասխանություն"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Հեռացնել Authenticator-ը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Հեռացնել Անձնանշանները"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Հեռացրեք ընկերոջը"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Պատասխանել"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Պատասխանելով"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "հաշվետվություն"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Հաղորդել հաղորդագրության մասին"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Հաշվետվության սերվեր"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Հաղորդել օգտատիրոջ մասին"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Նորից ուղարկել հաստատումը"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "վերակայել"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Վերականգնել գաղտնաբառը"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Դերի անվանումը"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "դերեր"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Պահպանել"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Պահպանեք ձեր նշումներում"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Պահված նշումներ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Ընտրեք ձեր լեզուն"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Ուղարկել ներկառուցումներ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Ուղարկել հաղորդագրություններ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Ուղարկեց հավելված"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Ուղարկվել է բազմաթիվ հավելվածներ"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Սերվերի նկարագրություն"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "սերվերի անունը"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Նիստեր"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Կարգավորումներ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Մի քանի հոգի գրում են…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Հնչյուններ"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Աղբյուրի կոդը"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Խոսեք"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Ներկայացրեք հնարավորությունների առաջարկ"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Հետադարձ կապ ուղարկել"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Աջակցեք նախագծին` նվիրաբերելով - շնորհակալություն!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "ծառայության պայմաններ"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Տեքստային ալիք"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "թեման"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Սա ձեր զրույցի սկիզբն է."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Սա ձեր գրառումների սկիզբն է."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Այս օգտվողն արգելափակել է ձեզ."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Ժամկետանց անդամներ"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Արգելահանել օգտատիրոջը"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Վերբեռնել Ֆայլեր"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "օգտագործողի անունը"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Օգտատերը միացել է զանգին"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Օգտագործողի ձախ զանգ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Օգտագործողի կառավարում"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Օգտագործողի կարգավորումներ"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Օգտագործողի անունը"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Ձեր հաշիվը հաստատվում է…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Տեսանյութ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Դիտել ալիքը"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Դիտեք ներկայումս ակտիվ վրիպակների հաշվետվությունները այստեղ."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Դիտեք ավելի հին թարմացումները"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Դիտեք վերականգնման կոդերը"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Ավելի հին հաղորդագրությունների դիտում"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Ձայնային ալիք"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Խնդրում ենք տրամադրել մինչև 10 րոպե, որպեսզի այն հասնի."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Բարի գալուստ"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Բարի գալուստ!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Կարող եք նաև աջ սեղմել օգտվողի պատկերակի վրա վերևի ձախ մասում կամ ձախ սեղմել այն, եթե արդեն տանը եք."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Դուք կարող եք նորից բացել այն ավելի ուշ, բայց այն կվերանա երկու կողմից."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Դուք կարող եք զեկուցել խնդիրների մասին և քննարկել բարելավումները մեզ հետ ուղղակիորեն այստեղ."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Դուք չեք կարող հետարկել այս գործողությունը."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Դուք այս ալիքով հաղորդագրություններ ուղարկելու թույլտվություն չունեք."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Դուք չեք կարողանա նորից միանալ, քանի դեռ ձեզ նորից չեն հրավիրել."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Ձեր հաշիվը հաստատված է!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Ձեր վերականգնման կոդերը"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/id/messages.js b/components/i18n/catalogs/id/messages.js
new file mode 100644
index 0000000..2766c52
--- /dev/null
+++ b/components/i18n/catalogs/id/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Disenyapkan\"],\"+YFgJi\":[\"Lencana\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Tandai sebagai telah dibaca\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Buat peran baru\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Keluarkan semua sesi lainnya\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pilih nama pengguna yang kamu inginkan agar orang lain dapat menemukan kamu. Ini dapat diubah nanti di pengaturan penggunamu.\"],\"/qQDwm\":[\"Menghasilkan undangan…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Laporkan pesan\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Kirim masukan\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Salin ID pesan\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Tinggalkan grup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Kamu bisa melaporkan masalah dan mendiskusikan peningkatan dengan kami secara langsung di sini.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Diblokir\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Kamu tidak akan bisa bergabung kembali kecuali kamu diundang kembali.\"],\"3QuNUr\":[\"Beberapa orang sedang mengetik…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Sudah berteman dengan pengguna ini.\"],\"3T8ziB\":[\"Buat akun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesi\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nama panggilan\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Pilih bahasamu\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Cari komunitas berdasarkan hobi atau minat kamu.\"],\"572q5a\":[\"Laporkan pengguna\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Tandai sebagai belum dibaca\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ubah Nama Panggilan\"],\"5dJK4M\":[\"Peranan\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Ikhtisar\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Luring\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Pengguna\"],\"7SU2U9\":[\"Salin ID server\"],\"7VpPHA\":[\"Konfirmasi\"],\"7dZnmw\":[\"Relevansi\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nama Pengguna\"],\"7vhWI8\":[\"Sandi Baru\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Kelola Server\"],\"8FE4JE\":[\"Aktifkan aplikasi autentikator\"],\"8VGnad\":[\"Hasilkan Kode Pemulihan\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Sandi\"],\"8aTiea\":[\"Kustomisasi\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Masukkan nama pengguna yang disarankan.\"],\"9D85wC\":[\"Salin ID pengguna\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Atur ulang Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Perizinan\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Melihat pesan lama\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Buka Blokir\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Buat sebuah grup\"],\"A9Rhec\":[\"Nama Saluran\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Masukkan sandi baru.\"],\"AU7IRi\":[\"Saluran Teks\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Saluran Suara\"],\"BHsrDx\":[\"Undangan\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Pesan dikirim dari platform lain\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Lihat Saluran\"],\"CK7kdd\":[\"Hapus status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Deskripsi Saluran\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Kirim Pesan\"],\"CkIs/i\":[\"Bisukan Anggota\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Sandi Saat Ini\"],\"DDpDsO\":[\"Kode Undangan\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Komunikasi Resmi\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Selesai\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Pesan tak termuat, klik untuk meloncat\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Kirim saran fitur\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Keluarkan\"],\"EdQY6l\":[\"Tidak Ada\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Percakapan\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Lampiran terkirim\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Buat kategori\"],\"F1uGNS\":[\"Kelola Nama Panggilan\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Hapus Avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktifkan Notifikasi Desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Salin ID saluran\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grup Bersama\"],\"GhCPk1\":[\"Setelah dihapus, tak ada jalan kembali.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Masukkan sandimu saat ini.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pilih metode untuk mengautentikasi permintaanmu.\"],\"HAKBY9\":[\"Unggah Berkas\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Catatan Tersimpan\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Kirim ulang verifikasi\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Pindahkan Anggota\"],\"ImOQa9\":[\"Balas\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Lampiran-lampiran terkirim\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Tidak dapat menghapus akun hingga server dihapus atau ditransfer\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Konfirmasi tindakan\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Lihat pembaruan sebelumnya\"],\"JUJmXm\":[\"Harap konfirmasi tindakan ini menggunakan metode terpilih.\"],\"JW8mxK\":[\"Simpan ke catatan kamu\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Selamat datang di\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Kamu juga bisa klik kanan ikon pengguna di kiri atas, atau klik kiri jika kamu sedang berada di beranda.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Hapus pesan\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Konten melanggar hukum\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Suara\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Server Resmi\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Hapus teman\"],\"LcET2C\":[\"Kebijakan Privasi\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Kami telah mengirimkan email verifikasi. Harap tunggu hingga 10 menit untuk email tiba.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nama Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Keluar\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Lihat laporan bug yang sedang aktif di sini.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Beritahu kami bagaimana kami bisa tingkatkan aplikasi kami dengan memberi masukan.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Akunmu telah diverifikasi!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Kamu tidak memiliki izin untuk mengirim pesan di saluran ini.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Atur Ulang\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Hapus permintaan pertemanan\"],\"PSP1MZ\":[\"Nama Peran\"],\"PWOA0E\":[\"Hanya Sebutan\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Kirim Sematan\"],\"PnzsrT\":[\"Kode Sumber\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Loncat ke saat ini\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Menganggur\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit pesan\"],\"QqoBlW\":[\"Periksa email kamu!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Atur ulang sandi\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Pelacak Bug\"],\"S3bIKF\":[\"Salin ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Silakan pindai atau gunakan token di bawah pada aplikasi autentikator kamu.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Hapus Autentikator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Kelola Pesan\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Kelola Peran\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Pengaturan\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Undang semua temanmu, beberapa bot keren, dan adakan pesta besar.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Mengubah Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Pesan Terkirim\"],\"VJScHU\":[\"Alasan\"],\"VKsaTi\":[\"Membalas\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Tulikan Anggota\"],\"VsHxv+\":[\"Salin teks\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Memverifikasi akunmu…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Tautan eksternal bisa berbahaya!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Pengaturan Klien\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikasi Autentikasi\"],\"YcVBkL\":[\"Pesan Diterima\"],\"YirHq7\":[\"Masukan\"],\"YlFpiA\":[\"Gagal memverifikasi!\"],\"Yp+Hi/\":[\"Buka pengaturan\"],\"Z5HWHd\":[\"Aktif\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Kode pemulihanmu\"],\"aAIQg2\":[\"Penampilan\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Kamu tidak bisa membatalkan tindakan ini.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Nonaktif\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Nonaktifkan Akun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Baca Riwayat Pesan\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban anggota\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Atur Izin\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pengundang\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Hapus\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Batal\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Buat bot baru\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Undang Orang Lain\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Tak Terlihat\"],\"ekfzWq\":[\"Pengaturan Pengguna\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Atur Kustomisasi\"],\"fTMMeD\":[\"Buat undangan\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Daftar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Batalkan permintaan teman\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Berikan Peran\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Laporkan\"],\"gkBHk/\":[\"Buat saluran\"],\"gkmjYT\":[\"Tinggalkan server\"],\"go1IWB\":[\"Pengguna ini telah memblokir kamu.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Hapus saluran\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Silakan masukkan emailmu.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Buat\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Beranda\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikasi\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Sambung\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Sebut\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Kembali ke halaman masuk\"],\"jpJ5AL\":[\"Kode Pemulihan\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Selamat datang!\"],\"knjY+b\":[\"Kamu dapat membukanya kembali nanti, namun percakapan akan hilang di kedua sisi.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Tambah teman\"],\"lSGjX7\":[\"Pengguna Bergabung dalam Panggilan\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Saluran\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nama Grup\"],\"mAYvqA\":[\"Halo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Sunting identitasmu\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Kamu tidak akan bisa mengakses akunmu kecuali dengan menghubungi bantuan - namun, datamu tidak akan dihapus.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status khusus\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Teman Bersama\"],\"nbzz1A\":[\"Masukkan Kode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ini adalah awal dari catatan kamu.\"],\"o+XJ9D\":[\"Ubah\"],\"oB4OOq\":[\"Melarang Anggota\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Daring\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Menendang Anggota\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Bawaan\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Keluar Akun\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Loncat ke awal\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Pengguna Meninggalkan Panggilan\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Akunku\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Semua Pesan\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 orang memberi reaksi\"],\"rxaY+5\":[\"Jangan Ganggu\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Lanjutan\"],\"t43mBk\":[\"Laporkan server\"],\"tBmnPU\":[\"Teman\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Atur Webhook\"],\"tdTuUv\":[\"Blokir pengguna\"],\"tfDRzk\":[\"Simpan\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Pengguna Diblokir\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pergi ke server penguji\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Keluarkan anggota\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Hapus Peran\"],\"utrCh2\":[\"Anggota yang di batas-waktukan\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Tentang\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskripsi Server\"],\"v1kQyJ\":[\"Webhook\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Dukung proyek ini dengan berdonasi - terima kasih!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identitas\"],\"vXIe7J\":[\"Bahasa\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Harap simpan ini di tempat yang aman.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Perpesanan\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Masuki Saluran\"],\"wL3cK8\":[\"Terbaru\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Anggota\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Penyamaran\"],\"xDAtGP\":[\"Pesan\"],\"xGVfLh\":[\"Lanjut\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Ban\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Persyaratan Layanan\"],\"xpgPPI\":[\"Botku\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Terima permintaan pertemanan\"],\"y1eoq1\":[\"Salin tautan\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Aku mengonfirmasi bahwa aku berusia di atas 18 tahun.\"],\"yDOdwQ\":[\"Pengelolaan Pengguna\"],\"yIBLq8\":[\"Bicara\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Tutup\"],\"z0hW8A\":[\"Lihat Kode Pemulihan\"],\"z0t9bb\":[\"Masuk\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ini adalah awal dari percakapan kamu.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Terlama\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/id/messages.mjs b/components/i18n/catalogs/id/messages.mjs
new file mode 100644
index 0000000..c98ccfa
--- /dev/null
+++ b/components/i18n/catalogs/id/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Disenyapkan\"],\"+YFgJi\":[\"Lencana\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Tandai sebagai telah dibaca\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Buat peran baru\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Keluarkan semua sesi lainnya\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pilih nama pengguna yang kamu inginkan agar orang lain dapat menemukan kamu. Ini dapat diubah nanti di pengaturan penggunamu.\"],\"/qQDwm\":[\"Menghasilkan undangan…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Laporkan pesan\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Kirim masukan\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Salin ID pesan\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Tinggalkan grup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Kamu bisa melaporkan masalah dan mendiskusikan peningkatan dengan kami secara langsung di sini.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Diblokir\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Kamu tidak akan bisa bergabung kembali kecuali kamu diundang kembali.\"],\"3QuNUr\":[\"Beberapa orang sedang mengetik…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Sudah berteman dengan pengguna ini.\"],\"3T8ziB\":[\"Buat akun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesi\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nama panggilan\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Pilih bahasamu\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Cari komunitas berdasarkan hobi atau minat kamu.\"],\"572q5a\":[\"Laporkan pengguna\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Tandai sebagai belum dibaca\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ubah Nama Panggilan\"],\"5dJK4M\":[\"Peranan\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Ikhtisar\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Luring\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Pengguna\"],\"7SU2U9\":[\"Salin ID server\"],\"7VpPHA\":[\"Konfirmasi\"],\"7dZnmw\":[\"Relevansi\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nama Pengguna\"],\"7vhWI8\":[\"Sandi Baru\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Kelola Server\"],\"8FE4JE\":[\"Aktifkan aplikasi autentikator\"],\"8VGnad\":[\"Hasilkan Kode Pemulihan\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Sandi\"],\"8aTiea\":[\"Kustomisasi\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Masukkan nama pengguna yang disarankan.\"],\"9D85wC\":[\"Salin ID pengguna\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Atur ulang Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Perizinan\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Melihat pesan lama\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Buka Blokir\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Buat sebuah grup\"],\"A9Rhec\":[\"Nama Saluran\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Masukkan sandi baru.\"],\"AU7IRi\":[\"Saluran Teks\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Saluran Suara\"],\"BHsrDx\":[\"Undangan\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Pesan dikirim dari platform lain\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Lihat Saluran\"],\"CK7kdd\":[\"Hapus status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Deskripsi Saluran\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Kirim Pesan\"],\"CkIs/i\":[\"Bisukan Anggota\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Sandi Saat Ini\"],\"DDpDsO\":[\"Kode Undangan\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Komunikasi Resmi\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Selesai\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Pesan tak termuat, klik untuk meloncat\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Kirim saran fitur\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Keluarkan\"],\"EdQY6l\":[\"Tidak Ada\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Percakapan\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Lampiran terkirim\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Buat kategori\"],\"F1uGNS\":[\"Kelola Nama Panggilan\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Hapus Avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktifkan Notifikasi Desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Salin ID saluran\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grup Bersama\"],\"GhCPk1\":[\"Setelah dihapus, tak ada jalan kembali.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Masukkan sandimu saat ini.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pilih metode untuk mengautentikasi permintaanmu.\"],\"HAKBY9\":[\"Unggah Berkas\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Catatan Tersimpan\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Kirim ulang verifikasi\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Pindahkan Anggota\"],\"ImOQa9\":[\"Balas\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Lampiran-lampiran terkirim\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Tidak dapat menghapus akun hingga server dihapus atau ditransfer\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Konfirmasi tindakan\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Lihat pembaruan sebelumnya\"],\"JUJmXm\":[\"Harap konfirmasi tindakan ini menggunakan metode terpilih.\"],\"JW8mxK\":[\"Simpan ke catatan kamu\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Selamat datang di\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Kamu juga bisa klik kanan ikon pengguna di kiri atas, atau klik kiri jika kamu sedang berada di beranda.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Hapus pesan\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Konten melanggar hukum\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Suara\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Server Resmi\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Hapus teman\"],\"LcET2C\":[\"Kebijakan Privasi\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Kami telah mengirimkan email verifikasi. Harap tunggu hingga 10 menit untuk email tiba.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nama Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Keluar\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Lihat laporan bug yang sedang aktif di sini.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Beritahu kami bagaimana kami bisa tingkatkan aplikasi kami dengan memberi masukan.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Akunmu telah diverifikasi!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Kamu tidak memiliki izin untuk mengirim pesan di saluran ini.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Atur Ulang\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Hapus permintaan pertemanan\"],\"PSP1MZ\":[\"Nama Peran\"],\"PWOA0E\":[\"Hanya Sebutan\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Kirim Sematan\"],\"PnzsrT\":[\"Kode Sumber\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Loncat ke saat ini\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Menganggur\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit pesan\"],\"QqoBlW\":[\"Periksa email kamu!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Atur ulang sandi\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Pelacak Bug\"],\"S3bIKF\":[\"Salin ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Silakan pindai atau gunakan token di bawah pada aplikasi autentikator kamu.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Hapus Autentikator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Kelola Pesan\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Kelola Peran\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Pengaturan\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Undang semua temanmu, beberapa bot keren, dan adakan pesta besar.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Mengubah Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Pesan Terkirim\"],\"VJScHU\":[\"Alasan\"],\"VKsaTi\":[\"Membalas\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Tulikan Anggota\"],\"VsHxv+\":[\"Salin teks\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Memverifikasi akunmu…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Tautan eksternal bisa berbahaya!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Pengaturan Klien\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikasi Autentikasi\"],\"YcVBkL\":[\"Pesan Diterima\"],\"YirHq7\":[\"Masukan\"],\"YlFpiA\":[\"Gagal memverifikasi!\"],\"Yp+Hi/\":[\"Buka pengaturan\"],\"Z5HWHd\":[\"Aktif\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Kode pemulihanmu\"],\"aAIQg2\":[\"Penampilan\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Kamu tidak bisa membatalkan tindakan ini.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Nonaktif\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Nonaktifkan Akun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Baca Riwayat Pesan\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban anggota\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Atur Izin\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pengundang\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Hapus\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Batal\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Buat bot baru\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Undang Orang Lain\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Tak Terlihat\"],\"ekfzWq\":[\"Pengaturan Pengguna\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Atur Kustomisasi\"],\"fTMMeD\":[\"Buat undangan\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Daftar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Batalkan permintaan teman\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Berikan Peran\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Laporkan\"],\"gkBHk/\":[\"Buat saluran\"],\"gkmjYT\":[\"Tinggalkan server\"],\"go1IWB\":[\"Pengguna ini telah memblokir kamu.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Hapus saluran\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Silakan masukkan emailmu.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Buat\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Beranda\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikasi\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Sambung\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Sebut\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Kembali ke halaman masuk\"],\"jpJ5AL\":[\"Kode Pemulihan\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Selamat datang!\"],\"knjY+b\":[\"Kamu dapat membukanya kembali nanti, namun percakapan akan hilang di kedua sisi.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Tambah teman\"],\"lSGjX7\":[\"Pengguna Bergabung dalam Panggilan\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Saluran\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nama Grup\"],\"mAYvqA\":[\"Halo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Sunting identitasmu\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Kamu tidak akan bisa mengakses akunmu kecuali dengan menghubungi bantuan - namun, datamu tidak akan dihapus.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status khusus\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Teman Bersama\"],\"nbzz1A\":[\"Masukkan Kode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ini adalah awal dari catatan kamu.\"],\"o+XJ9D\":[\"Ubah\"],\"oB4OOq\":[\"Melarang Anggota\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Daring\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Menendang Anggota\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Bawaan\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Keluar Akun\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Loncat ke awal\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Pengguna Meninggalkan Panggilan\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Akunku\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Semua Pesan\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 orang memberi reaksi\"],\"rxaY+5\":[\"Jangan Ganggu\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Lanjutan\"],\"t43mBk\":[\"Laporkan server\"],\"tBmnPU\":[\"Teman\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Atur Webhook\"],\"tdTuUv\":[\"Blokir pengguna\"],\"tfDRzk\":[\"Simpan\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Pengguna Diblokir\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pergi ke server penguji\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Keluarkan anggota\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Hapus Peran\"],\"utrCh2\":[\"Anggota yang di batas-waktukan\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Tentang\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Deskripsi Server\"],\"v1kQyJ\":[\"Webhook\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Dukung proyek ini dengan berdonasi - terima kasih!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identitas\"],\"vXIe7J\":[\"Bahasa\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Harap simpan ini di tempat yang aman.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Perpesanan\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Masuki Saluran\"],\"wL3cK8\":[\"Terbaru\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Anggota\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Penyamaran\"],\"xDAtGP\":[\"Pesan\"],\"xGVfLh\":[\"Lanjut\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Ban\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Persyaratan Layanan\"],\"xpgPPI\":[\"Botku\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Terima permintaan pertemanan\"],\"y1eoq1\":[\"Salin tautan\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Aku mengonfirmasi bahwa aku berusia di atas 18 tahun.\"],\"yDOdwQ\":[\"Pengelolaan Pengguna\"],\"yIBLq8\":[\"Bicara\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Tutup\"],\"z0hW8A\":[\"Lihat Kode Pemulihan\"],\"z0t9bb\":[\"Masuk\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ini adalah awal dari percakapan kamu.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Terlama\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/id/messages.po b/components/i18n/catalogs/id/messages.po
new file mode 100644
index 0000000..ee175ff
--- /dev/null
+++ b/components/i18n/catalogs/id/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: id\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 orang memberi reaksi"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Tentang"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Terima permintaan pertemanan"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Tambah teman"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Lanjutan"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Semua Pesan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Sudah berteman dengan pengguna ini."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Penampilan"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Berikan Peran"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplikasi Autentikasi"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Lencana"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ban anggota"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Melarang Anggota"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Ban"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blokir pengguna"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Diblokir"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Pengguna Diblokir"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Pelacak Bug"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Batal"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Batalkan permintaan teman"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Tidak dapat menghapus akun hingga server dihapus atau ditransfer"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Ubah"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Mengubah Avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Ubah Nama Panggilan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Deskripsi Saluran"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nama Saluran"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Saluran"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Periksa email kamu!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Hapus status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Pengaturan Klien"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Tutup"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Konfirmasi"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Konfirmasi tindakan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Sambung"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Konten melanggar hukum"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Lanjut"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Percakapan"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Salin ID saluran"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Salin ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Salin tautan"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Salin ID pesan"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Salin ID server"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Salin teks"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Salin ID pengguna"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Buat"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Buat sebuah grup"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Buat bot baru"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Buat peran baru"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Buat akun"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Buat kategori"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Buat saluran"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Buat undangan"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Sandi Saat Ini"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Status khusus"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Kustomisasi"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Tulikan Anggota"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Bawaan"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Hapus"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Hapus saluran"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Hapus pesan"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Hapus Peran"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Nonaktifkan Akun"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Jangan Ganggu"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Selesai"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Edit identitas"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Edit pesan"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Sunting identitasmu"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Aktifkan aplikasi autentikator"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Aktifkan Notifikasi Desktop"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Masukkan sandi baru."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Masuki Saluran"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Masukkan Kode"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Masukkan sandimu saat ini."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Masukkan nama pengguna yang disarankan."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Tautan eksternal bisa berbahaya!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Gagal memverifikasi!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Masukan"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Cari komunitas berdasarkan hobi atau minat kamu."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Teman"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Hasilkan Kode Pemulihan"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Menghasilkan undangan…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Kembali ke halaman masuk"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Pergi ke server penguji"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nama Grup"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Halo!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Beranda"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Aku mengonfirmasi bahwa aku berusia di atas 18 tahun."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Menganggur"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Tak Terlihat"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Undang semua temanmu, beberapa bot keren, dan adakan pesta besar."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kode Undangan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Undang Orang Lain"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Pengundang"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Undangan"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Loncat ke saat ini"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Loncat ke awal"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Keluarkan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Keluarkan anggota"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Menendang Anggota"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Bahasa"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Terbaru"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Keluar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Tinggalkan grup"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Tinggalkan server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Beritahu kami bagaimana kami bisa tingkatkan aplikasi kami dengan memberi masukan."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Keluar Akun"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Keluarkan semua sesi lainnya"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Masuk"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Atur Kustomisasi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Kelola Pesan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Kelola Nama Panggilan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Atur Izin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Kelola Peran"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Kelola Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Atur Webhook"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Tandai sebagai telah dibaca"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Tandai sebagai belum dibaca"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Penyamaran"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Anggota"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Sebut"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Hanya Sebutan"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Pesan"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Pesan tak termuat, klik untuk meloncat"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Pesan Diterima"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Pesan Terkirim"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Pesan dikirim dari platform lain"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Perpesanan"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Pindahkan Anggota"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Bisukan Anggota"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Disenyapkan"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Teman Bersama"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grup Bersama"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Akunku"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Botku"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Sandi Baru"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Nama panggilan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Tidak Ada"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifikasi"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Nonaktif"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Komunikasi Resmi"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Server Resmi"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Luring"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Terlama"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Aktif"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Setelah dihapus, tak ada jalan kembali."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Daring"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Buka pengaturan"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Ikhtisar"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Sandi"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Perizinan"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Pilih nama pengguna yang kamu inginkan agar orang lain dapat menemukan kamu. Ini dapat diubah nanti di pengaturan penggunamu."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Harap konfirmasi tindakan ini menggunakan metode terpilih."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Silakan masukkan emailmu."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Harap simpan ini di tempat yang aman."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Silakan pindai atau gunakan token di bawah pada aplikasi autentikator kamu."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Pilih metode untuk mengautentikasi permintaanmu."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Kebijakan Privasi"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Baca Riwayat Pesan"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Alasan"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Kode Pemulihan"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Daftar"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Hapus permintaan pertemanan"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevansi"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Hapus Autentikator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Hapus Avatar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Hapus teman"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Balas"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Membalas"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Laporkan"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Laporkan pesan"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Laporkan server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Laporkan pengguna"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Kirim ulang verifikasi"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Atur Ulang"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Atur ulang sandi"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Atur ulang Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nama Peran"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Peranan"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Simpan"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Simpan ke catatan kamu"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Catatan Tersimpan"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Pilih bahasamu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Kirim Sematan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Kirim Pesan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Lampiran terkirim"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Lampiran-lampiran terkirim"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Deskripsi Server"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nama Server"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesi"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Pengaturan"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Beberapa orang sedang mengetik…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Suara"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Kode Sumber"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Bicara"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Kirim saran fitur"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Kirim masukan"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Dukung proyek ini dengan berdonasi - terima kasih!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Persyaratan Layanan"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Saluran Teks"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Ini adalah awal dari percakapan kamu."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Ini adalah awal dari catatan kamu."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Pengguna ini telah memblokir kamu."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Anggota yang di batas-waktukan"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Buka Blokir"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Unggah Berkas"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Pengguna"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Pengguna Bergabung dalam Panggilan"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Pengguna Meninggalkan Panggilan"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Pengelolaan Pengguna"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Pengaturan Pengguna"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nama Pengguna"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Memverifikasi akunmu…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Lihat Saluran"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Lihat laporan bug yang sedang aktif di sini."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Lihat pembaruan sebelumnya"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Lihat Kode Pemulihan"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Melihat pesan lama"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Saluran Suara"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Kami telah mengirimkan email verifikasi. Harap tunggu hingga 10 menit untuk email tiba."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhook"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Selamat datang di"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Selamat datang!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Kamu juga bisa klik kanan ikon pengguna di kiri atas, atau klik kiri jika kamu sedang berada di beranda."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Kamu dapat membukanya kembali nanti, namun percakapan akan hilang di kedua sisi."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Kamu bisa melaporkan masalah dan mendiskusikan peningkatan dengan kami secara langsung di sini."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Kamu tidak bisa membatalkan tindakan ini."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Kamu tidak memiliki izin untuk mengirim pesan di saluran ini."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Kamu tidak akan bisa mengakses akunmu kecuali dengan menghubungi bantuan - namun, datamu tidak akan dihapus."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Kamu tidak akan bisa bergabung kembali kecuali kamu diundang kembali."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Akunmu telah diverifikasi!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Kode pemulihanmu"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/is/messages.js b/components/i18n/catalogs/is/messages.js
new file mode 100644
index 0000000..35feabb
--- /dev/null
+++ b/components/i18n/catalogs/is/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Þú getur tilkynnt galla og rætt endurbætur með okkur hér.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Nýskráning\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Notandanafn\"],\"7vhWI8\":[\"Nýtt Lykilorð\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Lykilorð\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Veldu notandanafn.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Sláðu inn nýtt lykilorð.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Núverandi Lykilorð\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Samtöl\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Sláðu inn núverandi lykilorðið þitt.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Vistaðar Athugasemdir\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Senda staðfestingu aftur\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Vista í þínum athugasemdum\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Þú getur líka hægri-smellt á notandaíkonið efst til vinstri, eða vinstri-smellt ef þú ert þegar á forsíðuni.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Persónuverndarstefna\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Við sendum þér staðfestingu í tölvupósti. Það geta liðið allt að 10 mínútur þar til að hún kemur.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Aðgangurinn þinn hefur verið staðfestur!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Netfang\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Tékkaðu tölvupóstinn þinn!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Endurnýja lykilorð\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Bjóddu öllum vinum þínum og nokkra vélmenni og haldið risa veislu.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Við erum að staðfesta aðganginn þinn…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Auðkennisapp\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Tókst ekki að staðfesta!\"],\"Yp+Hi/\":[\"Opna stillingar\"],\"Z5HWHd\":[\"Á\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Af\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Nýskráning\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Sláðu inn netfangið þitt.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Heim\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Aftur í innskráningu\"],\"jpJ5AL\":[\"Endurheimtarkóði\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Velkomin/n!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Rásir\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Halló!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Þetta er byrjunin á þínum athugasemdum.\"],\"o+XJ9D\":[\"Breyta\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minn Aðgangur\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Ekki Trufla\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Vinir\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Fara í prufusamfélagið\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Um\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Skilmálar\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Skrá inn\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/is/messages.mjs b/components/i18n/catalogs/is/messages.mjs
new file mode 100644
index 0000000..2c4dc4c
--- /dev/null
+++ b/components/i18n/catalogs/is/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Muted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Þú getur tilkynnt galla og rætt endurbætur með okkur hér.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Several people are typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Nýskráning\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevance\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Notandanafn\"],\"7vhWI8\":[\"Nýtt Lykilorð\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Lykilorð\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Veldu notandanafn.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Viewing older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a group\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Sláðu inn nýtt lykilorð.\"],\"AU7IRi\":[\"Text Channel\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice Channel\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Núverandi Lykilorð\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Samtöl\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attachment\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Sláðu inn núverandi lykilorðið þitt.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Vistaðar Athugasemdir\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Senda staðfestingu aftur\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent multiple attachments\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Vista í þínum athugasemdum\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Þú getur líka hægri-smellt á notandaíkonið efst til vinstri, eða vinstri-smellt ef þú ert þegar á forsíðuni.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Persónuverndarstefna\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Við sendum þér staðfestingu í tölvupósti. Það geta liðið allt að 10 mínútur þar til að hún kemur.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Aðgangurinn þinn hefur verið staðfestur!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Netfang\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have permission to send messages in this channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idle\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Tékkaðu tölvupóstinn þinn!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Endurnýja lykilorð\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settings\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Bjóddu öllum vinum þínum og nokkra vélmenni og haldið risa veislu.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Við erum að staðfesta aðganginn þinn…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settings\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Auðkennisapp\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Tókst ekki að staðfesta!\"],\"Yp+Hi/\":[\"Opna stillingar\"],\"Z5HWHd\":[\"Á\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Af\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisible\"],\"ekfzWq\":[\"User Settings\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Nýskráning\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Sláðu inn netfangið þitt.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Heim\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Aftur í innskráningu\"],\"jpJ5AL\":[\"Endurheimtarkóði\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Velkomin/n!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Rásir\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Group Name\"],\"mAYvqA\":[\"Halló!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Þetta er byrjunin á þínum athugasemdum.\"],\"o+XJ9D\":[\"Breyta\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minn Aðgangur\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Ekki Trufla\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Vinir\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blocked User\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Fara í prufusamfélagið\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Um\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Description\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Enter Channel\"],\"wL3cK8\":[\"Latest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Skilmálar\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years old.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Skrá inn\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"This is the start of your conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/is/messages.po b/components/i18n/catalogs/is/messages.po
new file mode 100644
index 0000000..19038aa
--- /dev/null
+++ b/components/i18n/catalogs/is/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: is\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Um"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Auðkennisapp"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr ""
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Breyta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr ""
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Rásir"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Tékkaðu tölvupóstinn þinn!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr ""
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Samtöl"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr ""
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Nýskráning"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Núverandi Lykilorð"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ekki Trufla"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Netfang"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Sláðu inn nýtt lykilorð."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Sláðu inn núverandi lykilorðið þitt."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Veldu notandanafn."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Tókst ekki að staðfesta!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Vinir"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Aftur í innskráningu"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Fara í prufusamfélagið"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Halló!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Heim"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Bjóddu öllum vinum þínum og nokkra vélmenni og haldið risa veislu."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Skrá inn"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr ""
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Minn Aðgangur"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nýtt Lykilorð"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Af"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Á"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Opna stillingar"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Lykilorð"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Sláðu inn netfangið þitt."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Persónuverndarstefna"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Endurheimtarkóði"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Nýskráning"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Senda staðfestingu aftur"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Endurnýja lykilorð"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Vista í þínum athugasemdum"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Vistaðar Athugasemdir"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Skilmálar"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Þetta er byrjunin á þínum athugasemdum."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr ""
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Notandanafn"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Við erum að staðfesta aðganginn þinn…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Við sendum þér staðfestingu í tölvupósti. Það geta liðið allt að 10 mínútur þar til að hún kemur."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Velkomin/n!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Þú getur líka hægri-smellt á notandaíkonið efst til vinstri, eða vinstri-smellt ef þú ert þegar á forsíðuni."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Þú getur tilkynnt galla og rætt endurbætur með okkur hér."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Aðgangurinn þinn hefur verið staðfestur!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/it/messages.js b/components/i18n/catalogs/it/messages.js
new file mode 100644
index 0000000..2141ec0
--- /dev/null
+++ b/components/i18n/catalogs/it/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Silenziato\"],\"+YFgJi\":[\"Distintivi\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Segna come già letto\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crea un nuovo ruolo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Esci da tutte le altre sessioni\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Scegli un nome utente con cui vuoi che le persone possano trovarti, questo può essere modificato in seguito nelle impostazioni.\"],\"/qQDwm\":[\"Generazione dell'invito…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Segnala messaggio\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Invia feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copia ID del messaggio\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Esci dal gruppo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Puoi segnalare problemi e discutere miglioramenti con noi direttamente da qui.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloccate\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Non potrai rientrare se non sarai invitato nuovamente.\"],\"3QuNUr\":[\"Diverse persone stanno scrivendo…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Sei già amicə con questo utente.\"],\"3T8ziB\":[\"Crea un account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioni\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Soprannome\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleziona la tua lingua\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Trova una community in base ai tuoi hobby o interessi.\"],\"572q5a\":[\"Segnala utente\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Segna come non letto\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cambiare soprannome\"],\"5dJK4M\":[\"Ruoli\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Panoramica\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utente\"],\"7SU2U9\":[\"Copia ID del server\"],\"7VpPHA\":[\"Conferma\"],\"7dZnmw\":[\"Rilevanza\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nome utente\"],\"7vhWI8\":[\"Nuova Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gestire il server\"],\"8FE4JE\":[\"Abilita applicazione di autenticazione\"],\"8VGnad\":[\"Genera Codici di Recupero\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Personalizzazione\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Inserisci il nome utente che preferisci.\"],\"9D85wC\":[\"Copia ID dell'utente\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Resetta Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permessi\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bandisci\"],\"9nffag\":[\"Visualizzazione dei messaggi più vecchi\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Sblocca utente\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crea un gruppo\"],\"A9Rhec\":[\"Nome del Canale\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Inserire una nuova password.\"],\"AU7IRi\":[\"Canale testuale\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canale vocale\"],\"BHsrDx\":[\"Inviti\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Il messaggio è stato inviato su un'altra piattaforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Visualizzare canali\"],\"CK7kdd\":[\"Cancella stato\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrizione del canale\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Inviare messaggi\"],\"CkIs/i\":[\"Silenziare membri\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Password attuale\"],\"DDpDsO\":[\"Codice d'invito\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicazione Ufficiale\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Fatto\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Messaggio non caricato, fare clic per saltare\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Invia suggerimento per funzionalità\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Caccia\"],\"EdQY6l\":[\"Nessuna\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversazioni\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ha inviato un file\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crea categoria\"],\"F1uGNS\":[\"Gestire soprannomi\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Rimuovere avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Abilita notifiche desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrazione\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copia ID del canale\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gruppi in comune\"],\"GhCPk1\":[\"Una volta cancellato, non potrai tornare più indietro.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Inserisci la tua password attuale.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Seleziona un metodo per autenticare la tua richiesta.\"],\"HAKBY9\":[\"Caricare file\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Note salvate\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Rinvia la verifica\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Spostare membri\"],\"ImOQa9\":[\"Rispondi\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ha inviato diversi file\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Non è possibile eliminare un account finché tutti i suoi server non vengono cancellati o trasferiti.\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Conferma\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Visualizza gli aggiornamenti precedenti\"],\"JUJmXm\":[\"Conferma utilizzando il metodo selezionato.\"],\"JW8mxK\":[\"Salva nelle tue note\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Benvenutə a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Puoi anche premere sull'icona utente in alto a sinistra con un click destro, o con un click sinistro se sei già nella home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Elimina messaggio\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Il contenuto viola una o altre leggi\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Suoni\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Server ufficiale\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Rimuovi amicizia\"],\"LcET2C\":[\"Informativa Privacy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ti abbiamo inviato un'email di verifica. Per favore, attendi almeno 10 minuti per l'arrivo della mail.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nome del server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Esci\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Visualizza qui le segnalazioni di bug attualmente attive.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Facci sapere come possiamo migliorare la nostra app dandoci del feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Il tuo account è stato verificato!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Non sei autorizzato ad inviare messaggi in questo canale.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reimposta\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rifiuta la richiesta di amicizia\"],\"PSP1MZ\":[\"Nome del ruolo\"],\"PWOA0E\":[\"Solo menzioni\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Inviare embed\"],\"PnzsrT\":[\"Codice sorgente\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Torna al presente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inattivo\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Modifica messaggio\"],\"QqoBlW\":[\"Controlla la tua mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Resetta la password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Tracciatore di bug\"],\"S3bIKF\":[\"Copia ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Scansiona o utilizza il token in basso nella tua app di autenticazione.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Rimuovi Autenticatore\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gestire messaggi\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gestire ruoli\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Impostazioni\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invita tutti i tuoi amici, qualche bot interessante, e fai partire una grande festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cambiare avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Messaggio inviato\"],\"VJScHU\":[\"Motivazione\"],\"VKsaTi\":[\"Rispondendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Disabilitare l'audio\"],\"VsHxv+\":[\"Copia testo\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando il tuo account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"I link esterni potrebbero essere pericolosi!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Impostazioni del client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Applicazione di autenticazione\"],\"YcVBkL\":[\"Messaggio ricevuto\"],\"YirHq7\":[\"Risposta\"],\"YlFpiA\":[\"Impossibile verificare!\"],\"Yp+Hi/\":[\"Apri le impostazioni\"],\"Z5HWHd\":[\"Attivato\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"I tuoi codici di recupero\"],\"aAIQg2\":[\"Aspetto\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Non puoi annullare questa azione.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Disattivato\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disabilitare account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Leggere la cronologia dei messaggi\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bandisci membro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestire i permessi\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitante\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Elimina\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annulla\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crea un nuovo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitare altri membri\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisibile\"],\"ekfzWq\":[\"Impostazioni utente\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestire le personalizzazioni\"],\"fTMMeD\":[\"Crea invito\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrati\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annulla la richiesta d'amicizia\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assegnare ruoli\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Segnala\"],\"gkBHk/\":[\"Crea canale\"],\"gkmjYT\":[\"Esci dal server\"],\"go1IWB\":[\"Questo utente ti ha bloccatə.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Elimina il canale\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Inserisci il tuo indirizzo email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crea\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Pagina iniziale\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connettersi\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Menziona\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Torna al login\"],\"jpJ5AL\":[\"Codice di recupero\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bentornatə!\"],\"knjY+b\":[\"Potrai riaprirla in seguito ma scomparirà su entrambi i lati.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Aggiungi agli amici\"],\"lSGjX7\":[\"Un utente si è unito alla chiamata\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canali\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nome del gruppo\"],\"mAYvqA\":[\"Ciao!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Modifica la tua identità\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Non sarai in grado di accedere al tuo account a meno che non contatti il supporto - Tuttavia, i tuoi dati non verranno cancellati.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Stato personalizzato\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amici in comune\"],\"nbzz1A\":[\"Inserisci Codice\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Questo l'inizio delle tue note.\"],\"o+XJ9D\":[\"Modificare\"],\"oB4OOq\":[\"Bannare membri\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Espellere membri\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Predefinito\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Disconnettiti\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Vai all'inizio\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un utente ha lasciato la chiamata\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Il mio account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tutti i messaggi\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persona ha reagito\"],\"rxaY+5\":[\"Non disturbare\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanzate\"],\"t43mBk\":[\"Segnala server\"],\"tBmnPU\":[\"Amici\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Modificare webhook\"],\"tdTuUv\":[\"Blocca utente\"],\"tfDRzk\":[\"Salva\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utente bloccato\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Vai al server dei tester\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Espelli membro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Cancella ruolo\"],\"utrCh2\":[\"Piazzare membri in timeout\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Informazioni\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrizione del server\"],\"v1kQyJ\":[\"Webhook\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profilo\"],\"vJum3e\":[\"Sostieni il progetto donando - grazie!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Modifica identità\"],\"vXIe7J\":[\"Lingua\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Salvali in un luogo sicuro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaggistica\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entra nel canale\"],\"wL3cK8\":[\"Più recenti\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membri\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Travestirsi\"],\"xDAtGP\":[\"Messaggia\"],\"xGVfLh\":[\"Continua\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banditi\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termini di Servizio\"],\"xpgPPI\":[\"I miei bot\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accetta la richiesta di amicizia\"],\"y1eoq1\":[\"Copia link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confermo di avere almeno 18 anni.\"],\"yDOdwQ\":[\"Gestione dell'utente\"],\"yIBLq8\":[\"Parlare\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Chiudi\"],\"z0hW8A\":[\"Visualizza Codici di Recupero\"],\"z0t9bb\":[\"Accedi\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Questo è l'inizio della tua conversazione.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Più vecchi\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/it/messages.mjs b/components/i18n/catalogs/it/messages.mjs
new file mode 100644
index 0000000..ead56a2
--- /dev/null
+++ b/components/i18n/catalogs/it/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Silenziato\"],\"+YFgJi\":[\"Distintivi\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Segna come già letto\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Crea un nuovo ruolo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Esci da tutte le altre sessioni\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Scegli un nome utente con cui vuoi che le persone possano trovarti, questo può essere modificato in seguito nelle impostazioni.\"],\"/qQDwm\":[\"Generazione dell'invito…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Segnala messaggio\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Invia feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copia ID del messaggio\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Esci dal gruppo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Puoi segnalare problemi e discutere miglioramenti con noi direttamente da qui.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloccate\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Non potrai rientrare se non sarai invitato nuovamente.\"],\"3QuNUr\":[\"Diverse persone stanno scrivendo…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Sei già amicə con questo utente.\"],\"3T8ziB\":[\"Crea un account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioni\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Soprannome\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleziona la tua lingua\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Trova una community in base ai tuoi hobby o interessi.\"],\"572q5a\":[\"Segnala utente\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Segna come non letto\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Cambiare soprannome\"],\"5dJK4M\":[\"Ruoli\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Panoramica\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utente\"],\"7SU2U9\":[\"Copia ID del server\"],\"7VpPHA\":[\"Conferma\"],\"7dZnmw\":[\"Rilevanza\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nome utente\"],\"7vhWI8\":[\"Nuova Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gestire il server\"],\"8FE4JE\":[\"Abilita applicazione di autenticazione\"],\"8VGnad\":[\"Genera Codici di Recupero\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Password\"],\"8aTiea\":[\"Personalizzazione\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Inserisci il nome utente che preferisci.\"],\"9D85wC\":[\"Copia ID dell'utente\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Resetta Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permessi\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bandisci\"],\"9nffag\":[\"Visualizzazione dei messaggi più vecchi\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Sblocca utente\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Crea un gruppo\"],\"A9Rhec\":[\"Nome del Canale\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Inserire una nuova password.\"],\"AU7IRi\":[\"Canale testuale\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canale vocale\"],\"BHsrDx\":[\"Inviti\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Il messaggio è stato inviato su un'altra piattaforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Visualizzare canali\"],\"CK7kdd\":[\"Cancella stato\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrizione del canale\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Inviare messaggi\"],\"CkIs/i\":[\"Silenziare membri\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Password attuale\"],\"DDpDsO\":[\"Codice d'invito\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicazione Ufficiale\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Fatto\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Messaggio non caricato, fare clic per saltare\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Invia suggerimento per funzionalità\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Caccia\"],\"EdQY6l\":[\"Nessuna\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversazioni\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Ha inviato un file\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Crea categoria\"],\"F1uGNS\":[\"Gestire soprannomi\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Rimuovere avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Abilita notifiche desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrazione\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copia ID del canale\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gruppi in comune\"],\"GhCPk1\":[\"Una volta cancellato, non potrai tornare più indietro.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Inserisci la tua password attuale.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Seleziona un metodo per autenticare la tua richiesta.\"],\"HAKBY9\":[\"Caricare file\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Note salvate\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Rinvia la verifica\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Spostare membri\"],\"ImOQa9\":[\"Rispondi\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Ha inviato diversi file\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Non è possibile eliminare un account finché tutti i suoi server non vengono cancellati o trasferiti.\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Conferma\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Visualizza gli aggiornamenti precedenti\"],\"JUJmXm\":[\"Conferma utilizzando il metodo selezionato.\"],\"JW8mxK\":[\"Salva nelle tue note\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Benvenutə a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Puoi anche premere sull'icona utente in alto a sinistra con un click destro, o con un click sinistro se sei già nella home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Elimina messaggio\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Il contenuto viola una o altre leggi\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Suoni\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Server ufficiale\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Rimuovi amicizia\"],\"LcET2C\":[\"Informativa Privacy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ti abbiamo inviato un'email di verifica. Per favore, attendi almeno 10 minuti per l'arrivo della mail.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nome del server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Esci\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Visualizza qui le segnalazioni di bug attualmente attive.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Facci sapere come possiamo migliorare la nostra app dandoci del feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Il tuo account è stato verificato!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Non sei autorizzato ad inviare messaggi in questo canale.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reimposta\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rifiuta la richiesta di amicizia\"],\"PSP1MZ\":[\"Nome del ruolo\"],\"PWOA0E\":[\"Solo menzioni\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Inviare embed\"],\"PnzsrT\":[\"Codice sorgente\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Torna al presente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inattivo\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Modifica messaggio\"],\"QqoBlW\":[\"Controlla la tua mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Resetta la password\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Tracciatore di bug\"],\"S3bIKF\":[\"Copia ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Scansiona o utilizza il token in basso nella tua app di autenticazione.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Rimuovi Autenticatore\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gestire messaggi\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gestire ruoli\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Impostazioni\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invita tutti i tuoi amici, qualche bot interessante, e fai partire una grande festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Cambiare avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Messaggio inviato\"],\"VJScHU\":[\"Motivazione\"],\"VKsaTi\":[\"Rispondendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Disabilitare l'audio\"],\"VsHxv+\":[\"Copia testo\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando il tuo account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"I link esterni potrebbero essere pericolosi!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Impostazioni del client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Applicazione di autenticazione\"],\"YcVBkL\":[\"Messaggio ricevuto\"],\"YirHq7\":[\"Risposta\"],\"YlFpiA\":[\"Impossibile verificare!\"],\"Yp+Hi/\":[\"Apri le impostazioni\"],\"Z5HWHd\":[\"Attivato\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"I tuoi codici di recupero\"],\"aAIQg2\":[\"Aspetto\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Non puoi annullare questa azione.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Disattivato\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disabilitare account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Leggere la cronologia dei messaggi\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bandisci membro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestire i permessi\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitante\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Elimina\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annulla\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Crea un nuovo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invitare altri membri\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisibile\"],\"ekfzWq\":[\"Impostazioni utente\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestire le personalizzazioni\"],\"fTMMeD\":[\"Crea invito\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrati\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annulla la richiesta d'amicizia\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assegnare ruoli\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Segnala\"],\"gkBHk/\":[\"Crea canale\"],\"gkmjYT\":[\"Esci dal server\"],\"go1IWB\":[\"Questo utente ti ha bloccatə.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Elimina il canale\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Inserisci il tuo indirizzo email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Crea\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Pagina iniziale\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connettersi\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Menziona\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Torna al login\"],\"jpJ5AL\":[\"Codice di recupero\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bentornatə!\"],\"knjY+b\":[\"Potrai riaprirla in seguito ma scomparirà su entrambi i lati.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Aggiungi agli amici\"],\"lSGjX7\":[\"Un utente si è unito alla chiamata\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canali\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nome del gruppo\"],\"mAYvqA\":[\"Ciao!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Modifica la tua identità\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Non sarai in grado di accedere al tuo account a meno che non contatti il supporto - Tuttavia, i tuoi dati non verranno cancellati.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Stato personalizzato\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amici in comune\"],\"nbzz1A\":[\"Inserisci Codice\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Questo l'inizio delle tue note.\"],\"o+XJ9D\":[\"Modificare\"],\"oB4OOq\":[\"Bannare membri\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Espellere membri\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Predefinito\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Disconnettiti\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Vai all'inizio\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Un utente ha lasciato la chiamata\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Il mio account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Tutti i messaggi\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persona ha reagito\"],\"rxaY+5\":[\"Non disturbare\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avanzate\"],\"t43mBk\":[\"Segnala server\"],\"tBmnPU\":[\"Amici\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Modificare webhook\"],\"tdTuUv\":[\"Blocca utente\"],\"tfDRzk\":[\"Salva\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utente bloccato\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Vai al server dei tester\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Espelli membro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Cancella ruolo\"],\"utrCh2\":[\"Piazzare membri in timeout\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Informazioni\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrizione del server\"],\"v1kQyJ\":[\"Webhook\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profilo\"],\"vJum3e\":[\"Sostieni il progetto donando - grazie!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Modifica identità\"],\"vXIe7J\":[\"Lingua\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Salvali in un luogo sicuro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaggistica\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entra nel canale\"],\"wL3cK8\":[\"Più recenti\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membri\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Travestirsi\"],\"xDAtGP\":[\"Messaggia\"],\"xGVfLh\":[\"Continua\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banditi\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termini di Servizio\"],\"xpgPPI\":[\"I miei bot\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accetta la richiesta di amicizia\"],\"y1eoq1\":[\"Copia link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confermo di avere almeno 18 anni.\"],\"yDOdwQ\":[\"Gestione dell'utente\"],\"yIBLq8\":[\"Parlare\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Chiudi\"],\"z0hW8A\":[\"Visualizza Codici di Recupero\"],\"z0t9bb\":[\"Accedi\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Questo è l'inizio della tua conversazione.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Più vecchi\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/it/messages.po b/components/i18n/catalogs/it/messages.po
new file mode 100644
index 0000000..6b0f14e
--- /dev/null
+++ b/components/i18n/catalogs/it/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: it\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 persona ha reagito"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Informazioni"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Accetta la richiesta di amicizia"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Aggiungi agli amici"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avanzate"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Tutti i messaggi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Sei già amicə con questo utente."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Aspetto"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Assegnare ruoli"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Applicazione di autenticazione"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Distintivi"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Bandisci"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Bandisci membro"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Bannare membri"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Banditi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blocca utente"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloccate"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Utente bloccato"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Tracciatore di bug"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Annulla"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Annulla la richiesta d'amicizia"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Non è possibile eliminare un account finché tutti i suoi server non vengono cancellati o trasferiti."
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Modificare"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Cambiare avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Cambiare soprannome"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Descrizione del canale"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nome del Canale"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Canali"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Controlla la tua mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Cancella stato"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Impostazioni del client"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Chiudi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Conferma"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Conferma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Connettersi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Il contenuto viola una o altre leggi"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continua"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversazioni"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copia ID del canale"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copia ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copia link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copia ID del messaggio"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copia ID del server"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copia testo"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copia ID dell'utente"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Crea"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Crea un gruppo"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Crea un nuovo bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Crea un nuovo ruolo"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Crea un account"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Crea categoria"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Crea canale"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Crea invito"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Password attuale"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Stato personalizzato"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalizzazione"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Disabilitare l'audio"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Predefinito"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Elimina"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Elimina il canale"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Elimina messaggio"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Cancella ruolo"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Disabilitare account"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Non disturbare"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Fatto"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Modifica identità"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Modifica messaggio"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Modifica la tua identità"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Abilita applicazione di autenticazione"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Abilita notifiche desktop"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Inserire una nuova password."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entra nel canale"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Inserisci Codice"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Inserisci la tua password attuale."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Inserisci il nome utente che preferisci."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "I link esterni potrebbero essere pericolosi!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Impossibile verificare!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Risposta"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Trova una community in base ai tuoi hobby o interessi."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Concentrazione"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amici"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Genera Codici di Recupero"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generazione dell'invito…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Torna al login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Vai al server dei tester"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nome del gruppo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Ciao!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Pagina iniziale"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Confermo di avere almeno 18 anni."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inattivo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisibile"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invita tutti i tuoi amici, qualche bot interessante, e fai partire una grande festa."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Codice d'invito"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invitare altri membri"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Invitante"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Inviti"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Torna al presente"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Vai all'inizio"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Caccia"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Espelli membro"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Espellere membri"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Lingua"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Più recenti"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Esci"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Esci dal gruppo"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Esci dal server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Facci sapere come possiamo migliorare la nostra app dandoci del feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Disconnettiti"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Esci da tutte le altre sessioni"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Accedi"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Gestire le personalizzazioni"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Gestire messaggi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Gestire soprannomi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Gestire i permessi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Gestire ruoli"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Gestire il server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Modificare webhook"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Segna come già letto"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Segna come non letto"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Travestirsi"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Membri"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Menziona"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Solo menzioni"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Messaggia"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Messaggio non caricato, fare clic per saltare"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Messaggio ricevuto"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Messaggio inviato"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Il messaggio è stato inviato su un'altra piattaforma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Messaggistica"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Spostare membri"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Silenziare membri"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Silenziato"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Amici in comune"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Gruppi in comune"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Il mio account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "I miei bot"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nuova Password"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Soprannome"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nessuna"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifiche"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Disattivato"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Comunicazione Ufficiale"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Server ufficiale"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ok"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Più vecchi"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Attivato"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Una volta cancellato, non potrai tornare più indietro."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Apri le impostazioni"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Panoramica"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Password"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permessi"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Scegli un nome utente con cui vuoi che le persone possano trovarti, questo può essere modificato in seguito nelle impostazioni."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Conferma utilizzando il metodo selezionato."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Inserisci il tuo indirizzo email."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Salvali in un luogo sicuro."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Scansiona o utilizza il token in basso nella tua app di autenticazione."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Seleziona un metodo per autenticare la tua richiesta."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Informativa Privacy"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profilo"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Leggere la cronologia dei messaggi"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Motivazione"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Codice di recupero"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrati"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rifiuta la richiesta di amicizia"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Rilevanza"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Rimuovi Autenticatore"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Rimuovere avatar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Rimuovi amicizia"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Rispondi"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Rispondendo a"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Segnala"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Segnala messaggio"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Segnala server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Segnala utente"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Rinvia la verifica"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reimposta"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Resetta la password"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Resetta Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nome del ruolo"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Ruoli"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Salva"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Salva nelle tue note"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Note salvate"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Seleziona la tua lingua"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Inviare embed"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Inviare messaggi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Ha inviato un file"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Ha inviato diversi file"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Descrizione del server"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nome del server"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessioni"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Impostazioni"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Diverse persone stanno scrivendo…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Suoni"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Codice sorgente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Parlare"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Invia suggerimento per funzionalità"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Invia feedback"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Sostieni il progetto donando - grazie!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Termini di Servizio"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Canale testuale"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Questo è l'inizio della tua conversazione."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Questo l'inizio delle tue note."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Questo utente ti ha bloccatə."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Piazzare membri in timeout"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Sblocca utente"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Caricare file"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Utente"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Un utente si è unito alla chiamata"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Un utente ha lasciato la chiamata"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gestione dell'utente"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Impostazioni utente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nome utente"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verificando il tuo account…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Visualizzare canali"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Visualizza qui le segnalazioni di bug attualmente attive."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Visualizza gli aggiornamenti precedenti"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Visualizza Codici di Recupero"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Visualizzazione dei messaggi più vecchi"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Canale vocale"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Ti abbiamo inviato un'email di verifica. Per favore, attendi almeno 10 minuti per l'arrivo della mail."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhook"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Benvenutə a"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Bentornatə!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Puoi anche premere sull'icona utente in alto a sinistra con un click destro, o con un click sinistro se sei già nella home."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Potrai riaprirla in seguito ma scomparirà su entrambi i lati."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Puoi segnalare problemi e discutere miglioramenti con noi direttamente da qui."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Non puoi annullare questa azione."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Non sei autorizzato ad inviare messaggi in questo canale."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Non sarai in grado di accedere al tuo account a meno che non contatti il supporto - Tuttavia, i tuoi dati non verranno cancellati."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Non potrai rientrare se non sarai invitato nuovamente."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Il tuo account è stato verificato!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "I tuoi codici di recupero"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ja/messages.js b/components/i18n/catalogs/ja/messages.js
new file mode 100644
index 0000000..52bcc4b
--- /dev/null
+++ b/components/i18n/catalogs/ja/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"ミュート\"],\"+YFgJi\":[\"バッジ\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"既読にする\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"新規ロールの作成\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"他のすべてのセッションからログアウトする\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"他のユーザーから検索されるように名前を決めましょう。この名前は後でもユーザーの設定から変更できます。\"],\"/qQDwm\":[\"招待コードを作成中…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"メッセージを報告\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"フィードバックを送信する\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"メッセージIDをコピー\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"グループ離脱\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"こちらで直接、問題の報告や改善点の相談ができます。\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ブロック\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"再招待されない限り、参加することはできません。\"],\"3QuNUr\":[\"複数人が入力中…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"このユーザーとはすでに友達です。\"],\"3T8ziB\":[\"アカウントを作成\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"セッション\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"ニックネーム\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"言語の選択\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"自分の趣味や関心に基づいたコミュニティを見つける。\"],\"572q5a\":[\"ユーザーを報告\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"未読にする\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"ニックネームの変更\"],\"5dJK4M\":[\"ロール\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"概要\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"オフライン\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"ユーザー\"],\"7SU2U9\":[\"サーバーIDをコピー\"],\"7VpPHA\":[\"確認\"],\"7dZnmw\":[\"関連性\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ユーザー名\"],\"7vhWI8\":[\"新しいパスワード\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"サーバーの管理\"],\"8FE4JE\":[\"認証アプリを使えるようにする\"],\"8VGnad\":[\"リカバリ コードの生成\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"パスワード\"],\"8aTiea\":[\"カスタマイズ\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"好きなユーザー名を入力してください。\"],\"9D85wC\":[\"ユーザーIDをコピー\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"トークンをリセット\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"権限\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"BAN\"],\"9nffag\":[\"古いメッセージを表示しています\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ユーザーのブロック解除\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"グループの作成\"],\"A9Rhec\":[\"チャンネル名\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"新しいパスワードを入力してください。\"],\"AU7IRi\":[\"テキストチャンネル\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ボイスチャンネル\"],\"BHsrDx\":[\"招待\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"別のプラットフォームでメッセージが送信された\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"チャンネルを見る\"],\"CK7kdd\":[\"ステータスのクリア\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"チャンネルの説明\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"メッセージの送信\"],\"CkIs/i\":[\"メンバーをミュート\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"現在のパスワード\"],\"DDpDsO\":[\"招待コード\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"公式コミュニティー\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"完了\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"メッセージが読み込まれていません、クリックするとジャンプします\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"機能を提案する\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"キック\"],\"EdQY6l\":[\"なし\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"会話\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"添付ファイルが送信されました\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"カテゴリーを作成\"],\"F1uGNS\":[\"ニックネームの管理\"],\"FEr96N\":[\"テーマ\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"アバターの削除\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"デスクトップ通知を有効にする\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"集中\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"チャンネルIDをコピー\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"共通のグループ\"],\"GhCPk1\":[\"一度削除してしまうと、元に戻すことはできません。\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"現在のパスワードを入力してください。\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"要求を認証する方法を選んでください。\"],\"HAKBY9\":[\"ファイルのアップロード\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"保存されたノート\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"認証コードを再送信する\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"メンバーの移動\"],\"ImOQa9\":[\"返信\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"複数の添付ファイルが送信されました\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"サーバーが削除または譲渡されるまで、アカウントを削除することはできません\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"確認する\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"過去のアップデートを見る\"],\"JUJmXm\":[\"選択された方法でこの活動を確認してください。\"],\"JW8mxK\":[\"ノートに保存\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"ようこそ\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"左上のユーザーアイコンを右クリックするか、すでにホームにいる場合は左クリックしてください。\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"メッセージの削除\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"コンテンツが1つまたは複数の規約に違反しています\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"サウンド\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"公式サーバー\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"友人の削除\"],\"LcET2C\":[\"プライバシーポリシー\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"確認メールを送信しました。 到着まで最大 10 分ほどお待ちください。\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"サーバー名\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"離脱する\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"現在進行中のバグレポートはこちら。\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"私たちのアプリをどのように改善するか、フィードバックをお寄せください。\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"あなたのアカウントが検証されました!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"メールアドレス\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"このチャンネルでメッセージを送信する権限がありません。\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"元に戻す\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"フレンド申請を拒否\"],\"PSP1MZ\":[\"ロール名\"],\"PWOA0E\":[\"メンションのみ\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"埋め込み\"],\"PnzsrT\":[\"ソースコード\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"最新のメッセージへ\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"離席中\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"メッセージの編集\"],\"QqoBlW\":[\"メールをチェック!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"パスワードをリセットする\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"バグトラッカー\"],\"S3bIKF\":[\"IDをコピー\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"お使いの認証アプリで、下記のトークンをスキャンもしくは入力してください。\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"二要素認証を無効化\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"メッセージの管理\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"ロールの管理\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"設定\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"友達全員と素敵なボットを招待して盛大なパーティーを開きましょう。\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"アバターの変更\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"メッセージ送信\"],\"VJScHU\":[\"理由\"],\"VKsaTi\":[\"への返信:\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"メンバーを聞こえなくする\"],\"VsHxv+\":[\"テキストをコピー\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"アカウントを検証中…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"外部リンクは危険な場合があります!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"クライアント設定\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"二段階認証アプリ\"],\"YcVBkL\":[\"メッセージ受信\"],\"YirHq7\":[\"フィードバック\"],\"YlFpiA\":[\"認証に失敗しました!\"],\"Yp+Hi/\":[\"設定を開く\"],\"Z5HWHd\":[\"オン\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"あなたの回復コード\"],\"aAIQg2\":[\"外観\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"この操作は元に戻せません。\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"オフ\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"アカウントの無効化\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"メッセージ履歴を閲覧\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"メンバーをBAN\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"権限の管理\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"招待者\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"削除\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"キャンセル\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"ボットを新規作成\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"他のユーザーを招待する\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"オンライン状態を隠す\"],\"ekfzWq\":[\"ユーザー設定\"],\"etgedT\":[\"絵文字\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"カスタマイズの管理\"],\"fTMMeD\":[\"招待を作成\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"登録\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"友達のリクエストをキャンセル\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ロールを付与する\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"報告\"],\"gkBHk/\":[\"チャンネルを作成\"],\"gkmjYT\":[\"サーバーを離脱\"],\"go1IWB\":[\"このユーザーはあなたをブロックしました。\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"チャンネルを削除\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"メールアドレスを入力してください。\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"作成\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"ホーム\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"接続\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"言及\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ボット\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"ログイン画面に戻る\"],\"jpJ5AL\":[\"リカバリーコード\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"アバター\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"ようこそ!\"],\"knjY+b\":[\"また開き直すことは可能ですが、両者ともに消えてしまいます。\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"友達に追加\"],\"lSGjX7\":[\"ユーザーが通話に参加\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"チャンネル\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"グループ名\"],\"mAYvqA\":[\"こんにちは!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"自己情報を編集する\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"サポートに連絡しない限り、アカウントにアクセスすることはできません。ただし、データは削除されません。\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"カスタムステータス\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"共通の友人\"],\"nbzz1A\":[\"コード入力\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"これがノートの始まりです。\"],\"o+XJ9D\":[\"変更\"],\"oB4OOq\":[\"メンバーをBAN\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"オンライン\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"メンバーをキック\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"デフォルト\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"ログアウト\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"既読にする\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"ユーザーが通話から退出\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"自分のアカウント\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"すべてのメッセージ\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"一人が反応しました\"],\"rxaY+5\":[\"取り込み中\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"アドバンス\"],\"t43mBk\":[\"サーバーを報告\"],\"tBmnPU\":[\"友達\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhookの管理\"],\"tdTuUv\":[\"ユーザーのブロック\"],\"tfDRzk\":[\"保存\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ブロックされたユーザー\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"テスターサーバーに移動する\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"メンバーをキック\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"ロールを削除\"],\"utrCh2\":[\"メンバーをタイムアウト\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"概要\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"サーバーの説明\"],\"v1kQyJ\":[\"ウェブフック\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"プロフィール\"],\"vJum3e\":[\"寄付でプロジェクトを支援する - ありがとうございます!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"動画\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"プロフィールの編集\"],\"vXIe7J\":[\"言語\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"安全な場所に保存しておいてください。\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"メッセージ\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"チャンネルに入る\"],\"wL3cK8\":[\"最新\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"メンバー\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"マスカレード\"],\"xDAtGP\":[\"メッセージ\"],\"xGVfLh\":[\"続ける\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"BANされたユーザー\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"利用規約\"],\"xpgPPI\":[\"自分のボット\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"フレンド申請を承認\"],\"y1eoq1\":[\"リンクをコピー\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"私は18歳以上です。\"],\"yDOdwQ\":[\"ユーザー管理\"],\"yIBLq8\":[\"発言する\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"閉じる\"],\"z0hW8A\":[\"リカバリコードを表示\"],\"z0t9bb\":[\"ログイン\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"これが会話の始まりです。\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"最古\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ja/messages.mjs b/components/i18n/catalogs/ja/messages.mjs
new file mode 100644
index 0000000..2a675e4
--- /dev/null
+++ b/components/i18n/catalogs/ja/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"ミュート\"],\"+YFgJi\":[\"バッジ\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"既読にする\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"新規ロールの作成\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"他のすべてのセッションからログアウトする\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"他のユーザーから検索されるように名前を決めましょう。この名前は後でもユーザーの設定から変更できます。\"],\"/qQDwm\":[\"招待コードを作成中…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"メッセージを報告\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"フィードバックを送信する\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"メッセージIDをコピー\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"グループ離脱\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"こちらで直接、問題の報告や改善点の相談ができます。\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ブロック\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"再招待されない限り、参加することはできません。\"],\"3QuNUr\":[\"複数人が入力中…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"このユーザーとはすでに友達です。\"],\"3T8ziB\":[\"アカウントを作成\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"セッション\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"ニックネーム\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"言語の選択\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"自分の趣味や関心に基づいたコミュニティを見つける。\"],\"572q5a\":[\"ユーザーを報告\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"未読にする\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"ニックネームの変更\"],\"5dJK4M\":[\"ロール\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"概要\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"オフライン\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"ユーザー\"],\"7SU2U9\":[\"サーバーIDをコピー\"],\"7VpPHA\":[\"確認\"],\"7dZnmw\":[\"関連性\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ユーザー名\"],\"7vhWI8\":[\"新しいパスワード\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"サーバーの管理\"],\"8FE4JE\":[\"認証アプリを使えるようにする\"],\"8VGnad\":[\"リカバリ コードの生成\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"パスワード\"],\"8aTiea\":[\"カスタマイズ\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"好きなユーザー名を入力してください。\"],\"9D85wC\":[\"ユーザーIDをコピー\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"トークンをリセット\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"権限\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"BAN\"],\"9nffag\":[\"古いメッセージを表示しています\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ユーザーのブロック解除\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"グループの作成\"],\"A9Rhec\":[\"チャンネル名\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"新しいパスワードを入力してください。\"],\"AU7IRi\":[\"テキストチャンネル\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ボイスチャンネル\"],\"BHsrDx\":[\"招待\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"別のプラットフォームでメッセージが送信された\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"チャンネルを見る\"],\"CK7kdd\":[\"ステータスのクリア\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"チャンネルの説明\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"メッセージの送信\"],\"CkIs/i\":[\"メンバーをミュート\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"現在のパスワード\"],\"DDpDsO\":[\"招待コード\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"公式コミュニティー\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"完了\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"メッセージが読み込まれていません、クリックするとジャンプします\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"機能を提案する\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"キック\"],\"EdQY6l\":[\"なし\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"会話\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"添付ファイルが送信されました\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"カテゴリーを作成\"],\"F1uGNS\":[\"ニックネームの管理\"],\"FEr96N\":[\"テーマ\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"アバターの削除\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"デスクトップ通知を有効にする\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"集中\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"チャンネルIDをコピー\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"共通のグループ\"],\"GhCPk1\":[\"一度削除してしまうと、元に戻すことはできません。\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"現在のパスワードを入力してください。\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"要求を認証する方法を選んでください。\"],\"HAKBY9\":[\"ファイルのアップロード\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"保存されたノート\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"認証コードを再送信する\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"メンバーの移動\"],\"ImOQa9\":[\"返信\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"複数の添付ファイルが送信されました\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"サーバーが削除または譲渡されるまで、アカウントを削除することはできません\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"確認する\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"過去のアップデートを見る\"],\"JUJmXm\":[\"選択された方法でこの活動を確認してください。\"],\"JW8mxK\":[\"ノートに保存\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"ようこそ\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"左上のユーザーアイコンを右クリックするか、すでにホームにいる場合は左クリックしてください。\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"メッセージの削除\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"コンテンツが1つまたは複数の規約に違反しています\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"サウンド\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"公式サーバー\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"友人の削除\"],\"LcET2C\":[\"プライバシーポリシー\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"確認メールを送信しました。 到着まで最大 10 分ほどお待ちください。\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"サーバー名\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"離脱する\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"現在進行中のバグレポートはこちら。\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"私たちのアプリをどのように改善するか、フィードバックをお寄せください。\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"あなたのアカウントが検証されました!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"メールアドレス\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"このチャンネルでメッセージを送信する権限がありません。\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"元に戻す\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"フレンド申請を拒否\"],\"PSP1MZ\":[\"ロール名\"],\"PWOA0E\":[\"メンションのみ\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"埋め込み\"],\"PnzsrT\":[\"ソースコード\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"最新のメッセージへ\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"離席中\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"メッセージの編集\"],\"QqoBlW\":[\"メールをチェック!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"パスワードをリセットする\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"バグトラッカー\"],\"S3bIKF\":[\"IDをコピー\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"お使いの認証アプリで、下記のトークンをスキャンもしくは入力してください。\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"二要素認証を無効化\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"メッセージの管理\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"ロールの管理\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"設定\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"友達全員と素敵なボットを招待して盛大なパーティーを開きましょう。\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"アバターの変更\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"メッセージ送信\"],\"VJScHU\":[\"理由\"],\"VKsaTi\":[\"への返信:\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"メンバーを聞こえなくする\"],\"VsHxv+\":[\"テキストをコピー\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"アカウントを検証中…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"外部リンクは危険な場合があります!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"クライアント設定\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"二段階認証アプリ\"],\"YcVBkL\":[\"メッセージ受信\"],\"YirHq7\":[\"フィードバック\"],\"YlFpiA\":[\"認証に失敗しました!\"],\"Yp+Hi/\":[\"設定を開く\"],\"Z5HWHd\":[\"オン\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"あなたの回復コード\"],\"aAIQg2\":[\"外観\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"この操作は元に戻せません。\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"オフ\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"アカウントの無効化\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"メッセージ履歴を閲覧\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"メンバーをBAN\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"権限の管理\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"招待者\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"削除\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"キャンセル\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"ボットを新規作成\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"他のユーザーを招待する\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"オンライン状態を隠す\"],\"ekfzWq\":[\"ユーザー設定\"],\"etgedT\":[\"絵文字\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"カスタマイズの管理\"],\"fTMMeD\":[\"招待を作成\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"登録\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"友達のリクエストをキャンセル\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ロールを付与する\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"報告\"],\"gkBHk/\":[\"チャンネルを作成\"],\"gkmjYT\":[\"サーバーを離脱\"],\"go1IWB\":[\"このユーザーはあなたをブロックしました。\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"チャンネルを削除\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"メールアドレスを入力してください。\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"作成\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"ホーム\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"接続\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"言及\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ボット\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"ログイン画面に戻る\"],\"jpJ5AL\":[\"リカバリーコード\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"アバター\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"ようこそ!\"],\"knjY+b\":[\"また開き直すことは可能ですが、両者ともに消えてしまいます。\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"友達に追加\"],\"lSGjX7\":[\"ユーザーが通話に参加\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"チャンネル\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"グループ名\"],\"mAYvqA\":[\"こんにちは!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"自己情報を編集する\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"サポートに連絡しない限り、アカウントにアクセスすることはできません。ただし、データは削除されません。\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"カスタムステータス\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"共通の友人\"],\"nbzz1A\":[\"コード入力\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"これがノートの始まりです。\"],\"o+XJ9D\":[\"変更\"],\"oB4OOq\":[\"メンバーをBAN\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"オンライン\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"メンバーをキック\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"デフォルト\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"ログアウト\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"既読にする\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"ユーザーが通話から退出\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"自分のアカウント\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"すべてのメッセージ\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"一人が反応しました\"],\"rxaY+5\":[\"取り込み中\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"アドバンス\"],\"t43mBk\":[\"サーバーを報告\"],\"tBmnPU\":[\"友達\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhookの管理\"],\"tdTuUv\":[\"ユーザーのブロック\"],\"tfDRzk\":[\"保存\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ブロックされたユーザー\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"テスターサーバーに移動する\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"メンバーをキック\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"ロールを削除\"],\"utrCh2\":[\"メンバーをタイムアウト\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"概要\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"サーバーの説明\"],\"v1kQyJ\":[\"ウェブフック\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"プロフィール\"],\"vJum3e\":[\"寄付でプロジェクトを支援する - ありがとうございます!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"動画\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"プロフィールの編集\"],\"vXIe7J\":[\"言語\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"安全な場所に保存しておいてください。\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"メッセージ\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"チャンネルに入る\"],\"wL3cK8\":[\"最新\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"メンバー\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"マスカレード\"],\"xDAtGP\":[\"メッセージ\"],\"xGVfLh\":[\"続ける\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"BANされたユーザー\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"利用規約\"],\"xpgPPI\":[\"自分のボット\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"フレンド申請を承認\"],\"y1eoq1\":[\"リンクをコピー\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"私は18歳以上です。\"],\"yDOdwQ\":[\"ユーザー管理\"],\"yIBLq8\":[\"発言する\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"閉じる\"],\"z0hW8A\":[\"リカバリコードを表示\"],\"z0t9bb\":[\"ログイン\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"これが会話の始まりです。\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"最古\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ja/messages.po b/components/i18n/catalogs/ja/messages.po
new file mode 100644
index 0000000..9167a35
--- /dev/null
+++ b/components/i18n/catalogs/ja/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ja\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "一人が反応しました"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "概要"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "フレンド申請を承認"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "友達に追加"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "アドバンス"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "すべてのメッセージ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "このユーザーとはすでに友達です。"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "外観"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "ロールを付与する"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "二段階認証アプリ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "アバター"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "バッジ"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "BAN"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "メンバーをBAN"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "メンバーをBAN"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "BANされたユーザー"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "ユーザーのブロック"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "ブロック"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "ブロックされたユーザー"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "ボット"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "バグトラッカー"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "キャンセル"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "友達のリクエストをキャンセル"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "サーバーが削除または譲渡されるまで、アカウントを削除することはできません"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "変更"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "アバターの変更"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "ニックネームの変更"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "チャンネルの説明"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "チャンネル名"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "チャンネル"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "メールをチェック!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "ステータスのクリア"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "クライアント設定"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "閉じる"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "確認"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "確認する"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "接続"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "コンテンツが1つまたは複数の規約に違反しています"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "続ける"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "会話"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "チャンネルIDをコピー"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "IDをコピー"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "リンクをコピー"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "メッセージIDをコピー"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "サーバーIDをコピー"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "テキストをコピー"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "ユーザーIDをコピー"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "作成"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "グループの作成"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "ボットを新規作成"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "新規ロールの作成"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "アカウントを作成"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "カテゴリーを作成"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "チャンネルを作成"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "招待を作成"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "現在のパスワード"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "カスタムステータス"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "カスタマイズ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "メンバーを聞こえなくする"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "デフォルト"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "削除"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "チャンネルを削除"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "メッセージの削除"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "ロールを削除"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "アカウントの無効化"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "取り込み中"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "完了"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "プロフィールの編集"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "メッセージの編集"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "自己情報を編集する"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "メールアドレス"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "絵文字"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "認証アプリを使えるようにする"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "デスクトップ通知を有効にする"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "新しいパスワードを入力してください。"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "チャンネルに入る"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "コード入力"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "現在のパスワードを入力してください。"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "好きなユーザー名を入力してください。"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "外部リンクは危険な場合があります!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "認証に失敗しました!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "フィードバック"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "自分の趣味や関心に基づいたコミュニティを見つける。"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "集中"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "友達"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "リカバリ コードの生成"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "招待コードを作成中…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "ログイン画面に戻る"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "テスターサーバーに移動する"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "グループ名"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "こんにちは!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "ホーム"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "私は18歳以上です。"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "離席中"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "オンライン状態を隠す"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "友達全員と素敵なボットを招待して盛大なパーティーを開きましょう。"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "招待コード"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "他のユーザーを招待する"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "招待者"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "招待"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "最新のメッセージへ"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "既読にする"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "キック"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "メンバーをキック"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "メンバーをキック"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "言語"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "最新"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "離脱する"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "グループ離脱"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "サーバーを離脱"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "私たちのアプリをどのように改善するか、フィードバックをお寄せください。"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "ログアウト"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "他のすべてのセッションからログアウトする"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "ログイン"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "カスタマイズの管理"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "メッセージの管理"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "ニックネームの管理"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "権限の管理"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "ロールの管理"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "サーバーの管理"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Webhookの管理"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "既読にする"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "未読にする"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "マスカレード"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "メンバー"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "言及"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "メンションのみ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "メッセージ"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "メッセージが読み込まれていません、クリックするとジャンプします"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "メッセージ受信"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "メッセージ送信"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "別のプラットフォームでメッセージが送信された"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "メッセージ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "メンバーの移動"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "メンバーをミュート"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "ミュート"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "共通の友人"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "共通のグループ"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "自分のアカウント"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "自分のボット"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "新しいパスワード"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "ニックネーム"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "なし"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "通知"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "オフ"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "公式コミュニティー"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "公式サーバー"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "オフライン"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "最古"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "オン"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "一度削除してしまうと、元に戻すことはできません。"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "オンライン"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "設定を開く"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "概要"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "パスワード"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "権限"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "他のユーザーから検索されるように名前を決めましょう。この名前は後でもユーザーの設定から変更できます。"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "選択された方法でこの活動を確認してください。"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "メールアドレスを入力してください。"
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "安全な場所に保存しておいてください。"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "お使いの認証アプリで、下記のトークンをスキャンもしくは入力してください。"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "要求を認証する方法を選んでください。"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "プライバシーポリシー"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "プロフィール"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "メッセージ履歴を閲覧"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "理由"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "リカバリーコード"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "登録"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "フレンド申請を拒否"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "関連性"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "二要素認証を無効化"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "アバターの削除"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "友人の削除"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "返信"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "への返信:"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "報告"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "メッセージを報告"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "サーバーを報告"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "ユーザーを報告"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "認証コードを再送信する"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "元に戻す"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "パスワードをリセットする"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "トークンをリセット"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "ロール名"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "ロール"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "保存"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "ノートに保存"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "保存されたノート"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "言語の選択"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "埋め込み"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "メッセージの送信"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "添付ファイルが送信されました"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "複数の添付ファイルが送信されました"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "サーバーの説明"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "サーバー名"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "セッション"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "設定"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "複数人が入力中…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "サウンド"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "ソースコード"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "発言する"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "機能を提案する"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "フィードバックを送信する"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "寄付でプロジェクトを支援する - ありがとうございます!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "利用規約"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "テキストチャンネル"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "テーマ"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "これが会話の始まりです。"
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "これがノートの始まりです。"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "このユーザーはあなたをブロックしました。"
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "メンバーをタイムアウト"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "ユーザーのブロック解除"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "ファイルのアップロード"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "ユーザー"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "ユーザーが通話に参加"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "ユーザーが通話から退出"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "ユーザー管理"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "ユーザー設定"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "ユーザー名"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "アカウントを検証中…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "動画"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "チャンネルを見る"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "現在進行中のバグレポートはこちら。"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "過去のアップデートを見る"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "リカバリコードを表示"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "古いメッセージを表示しています"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "ボイスチャンネル"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "確認メールを送信しました。 到着まで最大 10 分ほどお待ちください。"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "ウェブフック"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "ようこそ"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "ようこそ!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "左上のユーザーアイコンを右クリックするか、すでにホームにいる場合は左クリックしてください。"
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "また開き直すことは可能ですが、両者ともに消えてしまいます。"
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "こちらで直接、問題の報告や改善点の相談ができます。"
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "この操作は元に戻せません。"
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "このチャンネルでメッセージを送信する権限がありません。"
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "サポートに連絡しない限り、アカウントにアクセスすることはできません。ただし、データは削除されません。"
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "再招待されない限り、参加することはできません。"
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "あなたのアカウントが検証されました!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "あなたの回復コード"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ko/messages.js b/components/i18n/catalogs/ko/messages.js
new file mode 100644
index 0000000..f4ffb9c
--- /dev/null
+++ b/components/i18n/catalogs/ko/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"음소거됨\"],\"+YFgJi\":[\"뱃지\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"읽음으로 표시하기\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"새 역할 만들기\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"다른 모든 세션에서 로그아웃\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"사람들이 나를 찾을 수 있는 사용자 이름을 선택하세요. 나중에 설정에서 변경할 수 있어요.\"],\"/qQDwm\":[\"초대 코드 생성 중…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"메시지 신고하기\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"피드백 제출\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"메세지 ID 복사\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"그룹에서 나가기\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"여기서 문제점을 제보하고 개선 사항에 대해 논의할 수 있어요.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"차단됨\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"다시 초대되지 않는 이상 다시 들어올 수 없어요.\"],\"3QuNUr\":[\"여러 사람이 입력 중이에요…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"이미 이 사용자와 친구입니다.\"],\"3T8ziB\":[\"계정 생성\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"세션\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"닉네임\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"언어 선택\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"나의 취미와 흥미에 맞는 커뮤니티를 찾아보세요.\"],\"572q5a\":[\"사용자 신고하기\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"읽지 않음으로 표시\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"별명 변경하기\"],\"5dJK4M\":[\"역할\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"개요\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"오프라인\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"사용자\"],\"7SU2U9\":[\"서버 ID 복사\"],\"7VpPHA\":[\"확인\"],\"7dZnmw\":[\"관련성순\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"사용자명\"],\"7vhWI8\":[\"새로운 비밀번호\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"서버 관리\"],\"8FE4JE\":[\"인증앱 활성화\"],\"8VGnad\":[\"복구 코드 생성\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"비밀번호\"],\"8aTiea\":[\"커스터마이징\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"사용자명을 입력하세요.\"],\"9D85wC\":[\"유저 ID 복사\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"토큰 초기화\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"권한\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"차단\"],\"9nffag\":[\"오래된 메시지를 보고 있어요\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"사용자 차단 해제\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"그룹 만들기\"],\"A9Rhec\":[\"채널 이름\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"새로운 비밀번호를 입력하세요.\"],\"AU7IRi\":[\"채팅 채널\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"음성 채널\"],\"BHsrDx\":[\"초대\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"다른 플랫폼에서 전송된 메시지\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"채널 보기\"],\"CK7kdd\":[\"상태 삭제\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"채널 설명\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"메세지 보내기\"],\"CkIs/i\":[\"멤버 뮤트\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"현재 비밀번호\"],\"DDpDsO\":[\"초대 주소\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"공식 대화\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"완료\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"메시지를 불러오지 못했어요. 최신 메시지로 이동하려면 클릭하세요\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"기능 제안하기\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"추방\"],\"EdQY6l\":[\"없음\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"대화\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"첨부파일을 보냈어요\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"카테고리 만들기\"],\"F1uGNS\":[\"별명 관리하기\"],\"FEr96N\":[\"테마\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"아바타 삭제\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"데스크탑 알림 활성화\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"집중 중\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"채널 ID 복사\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"같이 있는 그룹\"],\"GhCPk1\":[\"한번 삭제되면 되돌릴 수 없어요.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"현재 비밀번호를 입력하세요.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"귀하의 요청을 인증할 방법을 선택하세요.\"],\"HAKBY9\":[\"파일 업로드\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"저장된 메모\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"인증 메일 재전송\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"멤버 이동\"],\"ImOQa9\":[\"답장\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"여러 개의 첨부파일을 보냈어요\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"모든 서버가 삭제되거나 이전될 때까지 계정을 삭제할 수 없습니다\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"작업 확인\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"이전 업데이트 보기\"],\"JUJmXm\":[\"선택한 방법으로 확인하세요.\"],\"JW8mxK\":[\"내 메모에 저장\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"환영합니다\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"왼쪽 상단에 있는 사용자 아이콘을 우클릭하거나, 홈에 있는 경우 좌클릭할 수도 있어요.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"메시지 삭제하기\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"콘텐츠가 하나 이상의 법률을 위반함\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"소리\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"공식 서버\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"친구 삭제\"],\"LcET2C\":[\"개인정보 처리방침\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"발송까지 10분 정도 소요될 수 있어요.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"서버 이름\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"떠나기\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"여기에서 현재 활성화된 버그 보고서를 봅니다.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"여러분의 의견으로 앱을 개선할 수 있는 방법을 알려주세요.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"계정이 확인 되었어요!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"이메일\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"이 채널에 메시지를 보낼 권한이 없어요.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"초기화\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"친구 요청 거절\"],\"PSP1MZ\":[\"역할 이름\"],\"PWOA0E\":[\"멘션만\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"임베드 전송\"],\"PnzsrT\":[\"소스 코드\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"최근으로 이동하기\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"자리 비움\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"메시지 수정하기\"],\"QqoBlW\":[\"메일함을 확인하세요!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"비밀번호 재설정\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"버그 트래커\"],\"S3bIKF\":[\"ID 복사\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"인증 앱에서 아래 토큰을 스캔하거나 사용하세요.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"인증기 제거\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"메세지 관리\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"역할 관리\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"설정\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"내 친구들과 멋진 봇을 초대해서 큰 파티를 열어보세요.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"아바타 변경\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"메시지를 보냈을 때\"],\"VJScHU\":[\"이유\"],\"VKsaTi\":[\"답장:\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"사용자 음소거\"],\"VsHxv+\":[\"텍스트 복사\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"계정을 확인 중입니다…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"외부 링크는 위험할 수 있어요!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"클라이언트 설정\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"인증 앱\"],\"YcVBkL\":[\"메시지를 받았을 때\"],\"YirHq7\":[\"피드백\"],\"YlFpiA\":[\"인증하지 못했어요!\"],\"Yp+Hi/\":[\"설정 열기\"],\"Z5HWHd\":[\"켜짐\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"나의 복구 코드\"],\"aAIQg2\":[\"모양\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"이 행동은 되돌릴수 없습니다.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"꺼짐\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"계정 비활성화\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"메시지 기록 읽기\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"멤버 차단하기\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"권한 관리\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"초대자\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"삭제\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"취소\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"새로운 봇 만들기\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"사용자 초대\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"오프라인으로 표시\"],\"ekfzWq\":[\"사용자 설정\"],\"etgedT\":[\"이모지\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"커스터마이징 관리\"],\"fTMMeD\":[\"초대 코드 만들기\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"가입\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"요청 취소\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"역할 부여 하기\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"신고\"],\"gkBHk/\":[\"채널 만들기\"],\"gkmjYT\":[\"서버에서 나가기\"],\"go1IWB\":[\"이 사용자가 당신을 차단했습니다.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"채널 삭제\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"이메일을 입력하세요.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"생성\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"홈\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"연결\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"멘션\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"봇\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"로그인으로 돌아가기\"],\"jpJ5AL\":[\"복구 코드\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"아바타\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"환영합니다!\"],\"knjY+b\":[\"나중에 다시 열 수 있지만 서로에게서 사라집니다.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"친구 추가\"],\"lSGjX7\":[\"사용자가 음성 채널에 참가했을 때\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"채널\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"그룹 이름\"],\"mAYvqA\":[\"환영해요!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"지원팀에 문의하지 않으면 귀하의 계정에 액세스할 수 없습니다. 그러나 귀하의 데이터는 삭제되지 않습니다.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"사용자 지정 상태\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"같이 아는 친구\"],\"nbzz1A\":[\"코드 입력\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"내 노트의 시작이에요.\"],\"o+XJ9D\":[\"변경\"],\"oB4OOq\":[\"멤버 차단\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"온라인\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"멤버 추방\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"기본 역할\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"로그아웃\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"처음으로 돌아가기\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"사용자가 음성 채널에서 나갔을 때\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"내 계정\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"모든 메시지\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1명이 반응했어요\"],\"rxaY+5\":[\"다른 용무 중\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"고급 모드\"],\"t43mBk\":[\"서버 신고하기\"],\"tBmnPU\":[\"친구\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"웹훅 관리\"],\"tdTuUv\":[\"사용자 차단\"],\"tfDRzk\":[\"저장\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"차단된 사용자\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"테스트 서버로 이동\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"멤버 추방하기\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"역할 삭제\"],\"utrCh2\":[\"타임아웃\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"소개\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"서버 설명\"],\"v1kQyJ\":[\"웹훅\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"프로필\"],\"vJum3e\":[\"기부로 프로젝트를 지원해 주세요. 감사드려요!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"동영상\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"서버별 프로필 수정\"],\"vXIe7J\":[\"언어\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"안전한 위치에 저장해 주세요.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"메시징\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"채널 입장\"],\"wL3cK8\":[\"최신순\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"멤버\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"프로필 위장\"],\"xDAtGP\":[\"메세지\"],\"xGVfLh\":[\"계속\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"차단\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"이용약관\"],\"xpgPPI\":[\"내 봇\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"친구 요청 수락\"],\"y1eoq1\":[\"링크 복사\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"전 18세 이상이에요!\"],\"yDOdwQ\":[\"사용자 관리\"],\"yIBLq8\":[\"말하기\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"닫기\"],\"z0hW8A\":[\"복구 코드 보기\"],\"z0t9bb\":[\"로그인\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"확인\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"내 대화의 시작이에요.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"오래된 순\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ko/messages.mjs b/components/i18n/catalogs/ko/messages.mjs
new file mode 100644
index 0000000..d077631
--- /dev/null
+++ b/components/i18n/catalogs/ko/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"음소거됨\"],\"+YFgJi\":[\"뱃지\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"읽음으로 표시하기\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"새 역할 만들기\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"다른 모든 세션에서 로그아웃\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"사람들이 나를 찾을 수 있는 사용자 이름을 선택하세요. 나중에 설정에서 변경할 수 있어요.\"],\"/qQDwm\":[\"초대 코드 생성 중…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"메시지 신고하기\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"피드백 제출\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"메세지 ID 복사\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"그룹에서 나가기\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"여기서 문제점을 제보하고 개선 사항에 대해 논의할 수 있어요.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"차단됨\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"다시 초대되지 않는 이상 다시 들어올 수 없어요.\"],\"3QuNUr\":[\"여러 사람이 입력 중이에요…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"이미 이 사용자와 친구입니다.\"],\"3T8ziB\":[\"계정 생성\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"세션\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"닉네임\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"언어 선택\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"나의 취미와 흥미에 맞는 커뮤니티를 찾아보세요.\"],\"572q5a\":[\"사용자 신고하기\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"읽지 않음으로 표시\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"별명 변경하기\"],\"5dJK4M\":[\"역할\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"개요\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"오프라인\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"사용자\"],\"7SU2U9\":[\"서버 ID 복사\"],\"7VpPHA\":[\"확인\"],\"7dZnmw\":[\"관련성순\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"사용자명\"],\"7vhWI8\":[\"새로운 비밀번호\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"서버 관리\"],\"8FE4JE\":[\"인증앱 활성화\"],\"8VGnad\":[\"복구 코드 생성\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"비밀번호\"],\"8aTiea\":[\"커스터마이징\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"사용자명을 입력하세요.\"],\"9D85wC\":[\"유저 ID 복사\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"토큰 초기화\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"권한\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"차단\"],\"9nffag\":[\"오래된 메시지를 보고 있어요\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"사용자 차단 해제\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"그룹 만들기\"],\"A9Rhec\":[\"채널 이름\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"새로운 비밀번호를 입력하세요.\"],\"AU7IRi\":[\"채팅 채널\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"음성 채널\"],\"BHsrDx\":[\"초대\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"다른 플랫폼에서 전송된 메시지\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"채널 보기\"],\"CK7kdd\":[\"상태 삭제\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"채널 설명\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"메세지 보내기\"],\"CkIs/i\":[\"멤버 뮤트\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"현재 비밀번호\"],\"DDpDsO\":[\"초대 주소\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"공식 대화\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"완료\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"메시지를 불러오지 못했어요. 최신 메시지로 이동하려면 클릭하세요\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"기능 제안하기\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"추방\"],\"EdQY6l\":[\"없음\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"대화\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"첨부파일을 보냈어요\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"카테고리 만들기\"],\"F1uGNS\":[\"별명 관리하기\"],\"FEr96N\":[\"테마\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"아바타 삭제\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"데스크탑 알림 활성화\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"집중 중\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"채널 ID 복사\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"같이 있는 그룹\"],\"GhCPk1\":[\"한번 삭제되면 되돌릴 수 없어요.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"현재 비밀번호를 입력하세요.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"귀하의 요청을 인증할 방법을 선택하세요.\"],\"HAKBY9\":[\"파일 업로드\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"저장된 메모\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"인증 메일 재전송\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"멤버 이동\"],\"ImOQa9\":[\"답장\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"여러 개의 첨부파일을 보냈어요\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"모든 서버가 삭제되거나 이전될 때까지 계정을 삭제할 수 없습니다\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"작업 확인\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"이전 업데이트 보기\"],\"JUJmXm\":[\"선택한 방법으로 확인하세요.\"],\"JW8mxK\":[\"내 메모에 저장\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"환영합니다\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"왼쪽 상단에 있는 사용자 아이콘을 우클릭하거나, 홈에 있는 경우 좌클릭할 수도 있어요.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"메시지 삭제하기\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"콘텐츠가 하나 이상의 법률을 위반함\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"소리\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"공식 서버\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"친구 삭제\"],\"LcET2C\":[\"개인정보 처리방침\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"발송까지 10분 정도 소요될 수 있어요.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"서버 이름\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"떠나기\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"여기에서 현재 활성화된 버그 보고서를 봅니다.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"여러분의 의견으로 앱을 개선할 수 있는 방법을 알려주세요.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"계정이 확인 되었어요!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"이메일\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"이 채널에 메시지를 보낼 권한이 없어요.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"초기화\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"친구 요청 거절\"],\"PSP1MZ\":[\"역할 이름\"],\"PWOA0E\":[\"멘션만\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"임베드 전송\"],\"PnzsrT\":[\"소스 코드\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"최근으로 이동하기\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"자리 비움\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"메시지 수정하기\"],\"QqoBlW\":[\"메일함을 확인하세요!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"비밀번호 재설정\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"버그 트래커\"],\"S3bIKF\":[\"ID 복사\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"인증 앱에서 아래 토큰을 스캔하거나 사용하세요.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"인증기 제거\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"메세지 관리\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"역할 관리\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"설정\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"내 친구들과 멋진 봇을 초대해서 큰 파티를 열어보세요.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"아바타 변경\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"메시지를 보냈을 때\"],\"VJScHU\":[\"이유\"],\"VKsaTi\":[\"답장:\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"사용자 음소거\"],\"VsHxv+\":[\"텍스트 복사\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"계정을 확인 중입니다…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"외부 링크는 위험할 수 있어요!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"클라이언트 설정\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"인증 앱\"],\"YcVBkL\":[\"메시지를 받았을 때\"],\"YirHq7\":[\"피드백\"],\"YlFpiA\":[\"인증하지 못했어요!\"],\"Yp+Hi/\":[\"설정 열기\"],\"Z5HWHd\":[\"켜짐\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"나의 복구 코드\"],\"aAIQg2\":[\"모양\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"이 행동은 되돌릴수 없습니다.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"꺼짐\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"계정 비활성화\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"메시지 기록 읽기\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"멤버 차단하기\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"권한 관리\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"초대자\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"삭제\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"취소\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"새로운 봇 만들기\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"사용자 초대\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"오프라인으로 표시\"],\"ekfzWq\":[\"사용자 설정\"],\"etgedT\":[\"이모지\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"커스터마이징 관리\"],\"fTMMeD\":[\"초대 코드 만들기\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"가입\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"요청 취소\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"역할 부여 하기\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"신고\"],\"gkBHk/\":[\"채널 만들기\"],\"gkmjYT\":[\"서버에서 나가기\"],\"go1IWB\":[\"이 사용자가 당신을 차단했습니다.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"채널 삭제\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"이메일을 입력하세요.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"생성\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"홈\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"연결\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"멘션\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"봇\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"로그인으로 돌아가기\"],\"jpJ5AL\":[\"복구 코드\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"아바타\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"환영합니다!\"],\"knjY+b\":[\"나중에 다시 열 수 있지만 서로에게서 사라집니다.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"친구 추가\"],\"lSGjX7\":[\"사용자가 음성 채널에 참가했을 때\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"채널\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"그룹 이름\"],\"mAYvqA\":[\"환영해요!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"지원팀에 문의하지 않으면 귀하의 계정에 액세스할 수 없습니다. 그러나 귀하의 데이터는 삭제되지 않습니다.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"사용자 지정 상태\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"같이 아는 친구\"],\"nbzz1A\":[\"코드 입력\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"내 노트의 시작이에요.\"],\"o+XJ9D\":[\"변경\"],\"oB4OOq\":[\"멤버 차단\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"온라인\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"멤버 추방\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"기본 역할\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"로그아웃\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"처음으로 돌아가기\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"사용자가 음성 채널에서 나갔을 때\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"내 계정\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"모든 메시지\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1명이 반응했어요\"],\"rxaY+5\":[\"다른 용무 중\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"고급 모드\"],\"t43mBk\":[\"서버 신고하기\"],\"tBmnPU\":[\"친구\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"웹훅 관리\"],\"tdTuUv\":[\"사용자 차단\"],\"tfDRzk\":[\"저장\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"차단된 사용자\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"테스트 서버로 이동\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"멤버 추방하기\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"역할 삭제\"],\"utrCh2\":[\"타임아웃\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"소개\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"서버 설명\"],\"v1kQyJ\":[\"웹훅\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"프로필\"],\"vJum3e\":[\"기부로 프로젝트를 지원해 주세요. 감사드려요!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"동영상\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"서버별 프로필 수정\"],\"vXIe7J\":[\"언어\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"안전한 위치에 저장해 주세요.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"메시징\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"채널 입장\"],\"wL3cK8\":[\"최신순\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"멤버\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"프로필 위장\"],\"xDAtGP\":[\"메세지\"],\"xGVfLh\":[\"계속\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"차단\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"이용약관\"],\"xpgPPI\":[\"내 봇\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"친구 요청 수락\"],\"y1eoq1\":[\"링크 복사\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"전 18세 이상이에요!\"],\"yDOdwQ\":[\"사용자 관리\"],\"yIBLq8\":[\"말하기\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"닫기\"],\"z0hW8A\":[\"복구 코드 보기\"],\"z0t9bb\":[\"로그인\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"확인\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"내 대화의 시작이에요.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"오래된 순\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ko/messages.po b/components/i18n/catalogs/ko/messages.po
new file mode 100644
index 0000000..b736266
--- /dev/null
+++ b/components/i18n/catalogs/ko/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ko\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1명이 반응했어요"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "소개"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "친구 요청 수락"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "친구 추가"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "고급 모드"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "모든 메시지"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "이미 이 사용자와 친구입니다."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "모양"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "역할 부여 하기"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "인증 앱"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "아바타"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "뱃지"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "차단"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "멤버 차단하기"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "멤버 차단"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "차단"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "사용자 차단"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "차단됨"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "차단된 사용자"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "봇"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "버그 트래커"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "취소"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "요청 취소"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "모든 서버가 삭제되거나 이전될 때까지 계정을 삭제할 수 없습니다"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "변경"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "아바타 변경"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "별명 변경하기"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "채널 설명"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "채널 이름"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "채널"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "메일함을 확인하세요!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "상태 삭제"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "클라이언트 설정"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "닫기"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "확인"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "작업 확인"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "연결"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "콘텐츠가 하나 이상의 법률을 위반함"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "계속"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "대화"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "채널 ID 복사"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "ID 복사"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "링크 복사"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "메세지 ID 복사"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "서버 ID 복사"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "텍스트 복사"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "유저 ID 복사"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "생성"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "그룹 만들기"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "새로운 봇 만들기"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "새 역할 만들기"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "계정 생성"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "카테고리 만들기"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "채널 만들기"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "초대 코드 만들기"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "현재 비밀번호"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "사용자 지정 상태"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "커스터마이징"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "사용자 음소거"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "기본 역할"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "삭제"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "채널 삭제"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "메시지 삭제하기"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "역할 삭제"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "계정 비활성화"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "다른 용무 중"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "완료"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "서버별 프로필 수정"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "메시지 수정하기"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "이메일"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "이모지"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "인증앱 활성화"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "데스크탑 알림 활성화"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "새로운 비밀번호를 입력하세요."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "채널 입장"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "코드 입력"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "현재 비밀번호를 입력하세요."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "사용자명을 입력하세요."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "외부 링크는 위험할 수 있어요!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "인증하지 못했어요!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "피드백"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "나의 취미와 흥미에 맞는 커뮤니티를 찾아보세요."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "집중 중"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "친구"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "복구 코드 생성"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "초대 코드 생성 중…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "로그인으로 돌아가기"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "테스트 서버로 이동"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "그룹 이름"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "환영해요!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "홈"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "전 18세 이상이에요!"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "자리 비움"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "오프라인으로 표시"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "내 친구들과 멋진 봇을 초대해서 큰 파티를 열어보세요."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "초대 주소"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "사용자 초대"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "초대자"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "초대"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "최근으로 이동하기"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "처음으로 돌아가기"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "추방"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "멤버 추방하기"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "멤버 추방"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "언어"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "최신순"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "떠나기"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "그룹에서 나가기"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "서버에서 나가기"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "여러분의 의견으로 앱을 개선할 수 있는 방법을 알려주세요."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "로그아웃"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "다른 모든 세션에서 로그아웃"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "로그인"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "커스터마이징 관리"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "메세지 관리"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "별명 관리하기"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "권한 관리"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "역할 관리"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "서버 관리"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "웹훅 관리"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "읽음으로 표시하기"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "읽지 않음으로 표시"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "프로필 위장"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "멤버"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "멘션"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "멘션만"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "메세지"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "메시지를 불러오지 못했어요. 최신 메시지로 이동하려면 클릭하세요"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "메시지를 받았을 때"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "메시지를 보냈을 때"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "다른 플랫폼에서 전송된 메시지"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "메시징"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "멤버 이동"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "멤버 뮤트"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "음소거됨"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "같이 아는 친구"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "같이 있는 그룹"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "내 계정"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "내 봇"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "새로운 비밀번호"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "닉네임"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "없음"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "알림"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "꺼짐"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "공식 대화"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "공식 서버"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "오프라인"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "확인"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "오래된 순"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "켜짐"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "한번 삭제되면 되돌릴 수 없어요."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "온라인"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "설정 열기"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "개요"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "비밀번호"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "권한"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "사람들이 나를 찾을 수 있는 사용자 이름을 선택하세요. 나중에 설정에서 변경할 수 있어요."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "선택한 방법으로 확인하세요."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "이메일을 입력하세요."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "안전한 위치에 저장해 주세요."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "인증 앱에서 아래 토큰을 스캔하거나 사용하세요."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "귀하의 요청을 인증할 방법을 선택하세요."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "개인정보 처리방침"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "프로필"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "메시지 기록 읽기"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "이유"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "복구 코드"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "가입"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "친구 요청 거절"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "관련성순"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "인증기 제거"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "아바타 삭제"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "친구 삭제"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "답장"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "답장:"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "신고"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "메시지 신고하기"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "서버 신고하기"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "사용자 신고하기"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "인증 메일 재전송"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "초기화"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "비밀번호 재설정"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "토큰 초기화"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "역할 이름"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "역할"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "저장"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "내 메모에 저장"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "저장된 메모"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "언어 선택"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "임베드 전송"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "메세지 보내기"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "첨부파일을 보냈어요"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "여러 개의 첨부파일을 보냈어요"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "서버 설명"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "서버 이름"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "세션"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "설정"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "여러 사람이 입력 중이에요…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "소리"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "소스 코드"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "말하기"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "기능 제안하기"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "피드백 제출"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "기부로 프로젝트를 지원해 주세요. 감사드려요!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "이용약관"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "채팅 채널"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "테마"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "내 대화의 시작이에요."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "내 노트의 시작이에요."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "이 사용자가 당신을 차단했습니다."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "타임아웃"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "사용자 차단 해제"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "파일 업로드"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "사용자"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "사용자가 음성 채널에 참가했을 때"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "사용자가 음성 채널에서 나갔을 때"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "사용자 관리"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "사용자 설정"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "사용자명"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "계정을 확인 중입니다…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "동영상"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "채널 보기"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "여기에서 현재 활성화된 버그 보고서를 봅니다."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "이전 업데이트 보기"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "복구 코드 보기"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "오래된 메시지를 보고 있어요"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "음성 채널"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "발송까지 10분 정도 소요될 수 있어요."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "웹훅"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "환영합니다"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "환영합니다!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "왼쪽 상단에 있는 사용자 아이콘을 우클릭하거나, 홈에 있는 경우 좌클릭할 수도 있어요."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "나중에 다시 열 수 있지만 서로에게서 사라집니다."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "여기서 문제점을 제보하고 개선 사항에 대해 논의할 수 있어요."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "이 행동은 되돌릴수 없습니다."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "이 채널에 메시지를 보낼 권한이 없어요."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "지원팀에 문의하지 않으면 귀하의 계정에 액세스할 수 없습니다. 그러나 귀하의 데이터는 삭제되지 않습니다."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "다시 초대되지 않는 이상 다시 들어올 수 없어요."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "계정이 확인 되었어요!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "나의 복구 코드"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/lb/messages.js b/components/i18n/catalogs/lb/messages.js
new file mode 100644
index 0000000..68799b1
--- /dev/null
+++ b/components/i18n/catalogs/lb/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Gemuted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Eng nei Roll erstellen\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log aus all aner Sessiounen\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Wielt e Benotzernumm deen Dir wëllt datt d'Leit Iech fäeg sinn ze fannen, dëst kann méi spéit am Astellunge geännert ginn.\"],\"/qQDwm\":[\"Generéieren invitéieren…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blockéiert\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Dir kënnt net fäeg sinn ze rejoin ausser Dir sidd nei invitéiert.\"],\"3QuNUr\":[\"E puer Leit schreiwen…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Ee Kont uleeën\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessiounen\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Wielt Är Sprooch\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Benotzer\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevanz\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Notzernumm\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passwuert\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Gëff däi gewënschten Notzernumm an.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissiounen\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Eeler Messagen kucken\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblokkeer gebruiker\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Erstellt e Grupp\"],\"A9Rhec\":[\"Kanal Numm\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Kanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Stëmm Kanal\"],\"BHsrDx\":[\"Invitatiounen\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanal Beschreiwung\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuellt Passwuert\"],\"DDpDsO\":[\"Invitéiere Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Gitt Feature Virschlag\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Keen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Gesprekken\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Huet en Uschloss geschéckt\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktivéiert Desktop Notifikatiounen.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Allgemeng Gruppéie\"],\"GhCPk1\":[\"Eemol ass et geläscht, et gëtt kee Réck.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Gëff däin aktuellt Passwuert an.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Opgeslagen notities\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Bestätigung nachenkéier schecken\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Huet verschidde Uschlëss geschéckt\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Opslaan in uw notities\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Wëllkomm no\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Bericht verwijderen\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Verwijder vriend\"],\"LcET2C\":[\"Dateschutzpolitik\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Et ka bis zu 10 Minuten daueren bis d‘E-Mail ukennt.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Numm\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Loosst\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Show aktiv Bug Rapport hei.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-Mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Dir hutt keng Erlaabnis fir Messagen an dësem Kanal ze schécken.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Numm vum Roll\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Quellecocode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Bericht bewerken\"],\"QqoBlW\":[\"Kontroléier deng E-Mail-Boîte!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Passwuert zerécksetzen\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Ewechzehuelen Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Astellunge\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message geschéckt\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Extern Links kënne geféierlech sinn!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Cliente-Astellungen\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authentifizéierungsapp\"],\"YcVBkL\":[\"Message kritt\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"Un\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Aus\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desaktivéiere Kont\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban lid\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Läschen\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ofbriechen\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Onsichtbar\"],\"ekfzWq\":[\"Benotzer -stellungen\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registréieren\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Verzoek annuleren\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Gëff deng E-Mailsadress un.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Zeréck zum Login\"],\"jpJ5AL\":[\"Wiederherstellungscode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Wëllkomm zeréck!\"],\"knjY+b\":[\"Dir kënnt se méi spéit opmaachen, awer et gëtt op béide Säiten verschwonnen.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Vriend toevoegen\"],\"lSGjX7\":[\"Benotzer ass bäikomm Ruff\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalen\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupp Numm\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Allgemeng Frënn\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of your notes.\"],\"o+XJ9D\":[\"Änneren\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Ausloggen\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Benotzer lénks Ruff\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mäi Kont\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messagen\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Net stéieren\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Vrienden\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Gebruiker blokkeren\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blockéiert Benotzer\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick lid\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Iwwer\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Beschreiwung\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Sprooche\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Kanal matmaachen\"],\"wL3cK8\":[\"Lescht\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Memberen\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Weidergitt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Notzungsbedingungen\"],\"xpgPPI\":[\"Meng Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopieer link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ech konfirméieren datt ech op d'mannst 18 Joer al sinn.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zoumaachen\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dëst ass de Start vun Ärem Gespréich.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/lb/messages.mjs b/components/i18n/catalogs/lb/messages.mjs
new file mode 100644
index 0000000..23028f0
--- /dev/null
+++ b/components/i18n/catalogs/lb/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Gemuted\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Eng nei Roll erstellen\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log aus all aner Sessiounen\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Wielt e Benotzernumm deen Dir wëllt datt d'Leit Iech fäeg sinn ze fannen, dëst kann méi spéit am Astellunge geännert ginn.\"],\"/qQDwm\":[\"Generéieren invitéieren…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blockéiert\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Dir kënnt net fäeg sinn ze rejoin ausser Dir sidd nei invitéiert.\"],\"3QuNUr\":[\"E puer Leit schreiwen…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Ee Kont uleeën\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessiounen\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Wielt Är Sprooch\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Benotzer\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Relevanz\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Notzernumm\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passwuert\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Gëff däi gewënschten Notzernumm an.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissiounen\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Eeler Messagen kucken\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblokkeer gebruiker\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Erstellt e Grupp\"],\"A9Rhec\":[\"Kanal Numm\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Text Kanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Stëmm Kanal\"],\"BHsrDx\":[\"Invitatiounen\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanal Beschreiwung\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuellt Passwuert\"],\"DDpDsO\":[\"Invitéiere Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Gitt Feature Virschlag\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Keen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Gesprekken\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Huet en Uschloss geschéckt\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktivéiert Desktop Notifikatiounen.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Allgemeng Gruppéie\"],\"GhCPk1\":[\"Eemol ass et geläscht, et gëtt kee Réck.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Gëff däin aktuellt Passwuert an.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Opgeslagen notities\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Bestätigung nachenkéier schecken\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Huet verschidde Uschlëss geschéckt\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Opslaan in uw notities\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Wëllkomm no\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Bericht verwijderen\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Verwijder vriend\"],\"LcET2C\":[\"Dateschutzpolitik\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Et ka bis zu 10 Minuten daueren bis d‘E-Mail ukennt.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Numm\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Loosst\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Show aktiv Bug Rapport hei.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-Mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Dir hutt keng Erlaabnis fir Messagen an dësem Kanal ze schécken.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Numm vum Roll\"],\"PWOA0E\":[\"Mentions Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Quellecocode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump to present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Bericht bewerken\"],\"QqoBlW\":[\"Kontroléier deng E-Mail-Boîte!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Passwuert zerécksetzen\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Ewechzehuelen Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Astellunge\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message geschéckt\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Extern Links kënne geféierlech sinn!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Cliente-Astellungen\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authentifizéierungsapp\"],\"YcVBkL\":[\"Message kritt\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Open settings\"],\"Z5HWHd\":[\"Un\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Aus\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desaktivéiere Kont\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban lid\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Läschen\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ofbriechen\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Onsichtbar\"],\"ekfzWq\":[\"Benotzer -stellungen\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registréieren\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Verzoek annuleren\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Gëff deng E-Mailsadress un.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Zeréck zum Login\"],\"jpJ5AL\":[\"Wiederherstellungscode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Wëllkomm zeréck!\"],\"knjY+b\":[\"Dir kënnt se méi spéit opmaachen, awer et gëtt op béide Säiten verschwonnen.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Vriend toevoegen\"],\"lSGjX7\":[\"Benotzer ass bäikomm Ruff\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalen\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupp Numm\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Allgemeng Frënn\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of your notes.\"],\"o+XJ9D\":[\"Änneren\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Ausloggen\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump to the beginning\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Benotzer lénks Ruff\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mäi Kont\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"All Messagen\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Net stéieren\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Vrienden\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Gebruiker blokkeren\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blockéiert Benotzer\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick lid\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Iwwer\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server Beschreiwung\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Sprooche\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Kanal matmaachen\"],\"wL3cK8\":[\"Lescht\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Memberen\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Weidergitt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Notzungsbedingungen\"],\"xpgPPI\":[\"Meng Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopieer link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ech konfirméieren datt ech op d'mannst 18 Joer al sinn.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zoumaachen\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dëst ass de Start vun Ärem Gespréich.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oldest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/lb/messages.po b/components/i18n/catalogs/lb/messages.po
new file mode 100644
index 0000000..0c2e675
--- /dev/null
+++ b/components/i18n/catalogs/lb/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: lb\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Iwwer"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Vriend toevoegen"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "All Messagen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authentifizéierungsapp"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ban lid"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bans"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Gebruiker blokkeren"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blockéiert"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blockéiert Benotzer"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bug Tracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Ofbriechen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Verzoek annuleren"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Änneren"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr ""
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanal Beschreiwung"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanal Numm"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanalen"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Kontroléier deng E-Mail-Boîte!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Cliente-Astellungen"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Zoumaachen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Weidergitt"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Gesprekken"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopieer link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Erstellt e Grupp"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr ""
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Eng nei Roll erstellen"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Ee Kont uleeën"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Aktuellt Passwuert"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Läschen"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Bericht verwijderen"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Desaktivéiere Kont"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Net stéieren"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Bericht bewerken"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-Mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Aktivéiert Desktop Notifikatiounen."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Kanal matmaachen"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Gëff däin aktuellt Passwuert an."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Gëff däi gewënschten Notzernumm an."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Extern Links kënne geféierlech sinn!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Vrienden"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generéieren invitéieren…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Zeréck zum Login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Grupp Numm"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hallo!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Home"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Ech konfirméieren datt ech op d'mannst 18 Joer al sinn."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inaktiv"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Onsichtbar"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Invitéiere Code"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Inviter"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitatiounen"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Kick"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Kick lid"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Sprooche"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Lescht"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Loosst"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Ausloggen"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Log aus all aner Sessiounen"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Login"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Memberen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Message kritt"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Message geschéckt"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Gemuted"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Allgemeng Frënn"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Allgemeng Gruppéie"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mäi Kont"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Meng Bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Keen"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifikatiounen"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Aus"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ok"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Un"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Eemol ass et geläscht, et gëtt kee Réck."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Passwuert"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permissiounen"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Wielt e Benotzernumm deen Dir wëllt datt d'Leit Iech fäeg sinn ze fannen, dëst kann méi spéit am Astellunge geännert ginn."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Gëff deng E-Mailsadress un."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Dateschutzpolitik"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Wiederherstellungscode"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registréieren"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevanz"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Ewechzehuelen Authenticator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Verwijder vriend"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Bestätigung nachenkéier schecken"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Passwuert zerécksetzen"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Numm vum Roll"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roles"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Opslaan in uw notities"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Opgeslagen notities"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Wielt Är Sprooch"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Huet en Uschloss geschéckt"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Huet verschidde Uschlëss geschéckt"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Server Beschreiwung"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Server Numm"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessiounen"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Astellunge"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "E puer Leit schreiwen…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Quellecocode"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Gitt Feature Virschlag"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Notzungsbedingungen"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Text Kanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Theme"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Dëst ass de Start vun Ärem Gespréich."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Deblokkeer gebruiker"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Benotzer"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Benotzer ass bäikomm Ruff"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Benotzer lénks Ruff"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Benotzer -stellungen"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Notzernumm"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Show aktiv Bug Rapport hei."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Eeler Messagen kucken"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Stëmm Kanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Et ka bis zu 10 Minuten daueren bis d‘E-Mail ukennt."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Wëllkomm no"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Wëllkomm zeréck!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr ""
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Dir kënnt se méi spéit opmaachen, awer et gëtt op béide Säiten verschwonnen."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Dir hutt keng Erlaabnis fir Messagen an dësem Kanal ze schécken."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Dir kënnt net fäeg sinn ze rejoin ausser Dir sidd nei invitéiert."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/leet/messages.js b/components/i18n/catalogs/leet/messages.js
new file mode 100644
index 0000000..c266e73
--- /dev/null
+++ b/components/i18n/catalogs/leet/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"MU73D\"],\"+YFgJi\":[\"84D635\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"M42K 45 234D\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"C23473 4 N3W 20L3\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"L06 0U7 0F 4LL 07H32 535510N5\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"P1CK 4 U532N4M3 7H47 Y0U W4N7 P30PL3 70 83 48L3 70 F1ND Y0U 8Y. 7H15 C4N 83 CH4N63D L4732 1N Y0U2 U532 53771N65.\"],\"/qQDwm\":[\"63N32471N6 1NV173…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"23P027 M355463\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"5U8M17 F33D84CK\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"C0PY M355463 1D\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"L34V3 620UP\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Y0U C4N 23P027 155U35 4ND D15CU55 1MP20V3M3N75 W17H U5 D123C7LY H323.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"8L0CK3D\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Y0U W0N'7 83 48L3 70 23J01N UNL355 Y0U 423 23-1NV173D.\"],\"3QuNUr\":[\"53V324L P30PL3 423 7YP1N6…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"4L234DY F213ND5 W17H 7H15 U532.\"],\"3T8ziB\":[\"C23473 4N 4CC0UN7\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"535510N5\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"N1CKN4M3\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"53L3C7 Y0U2 L4N6U463\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"F1ND 4 C0MMUN17Y 8453D 0N Y0U2 H088135 02 1N7323575.\"],\"572q5a\":[\"23P027 U532\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"M42K 45 UN234D\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"CH4N63 N1CKN4M3\"],\"5dJK4M\":[\"20L35\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"0V32V13W\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"0FFL1N3\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"U532\"],\"7SU2U9\":[\"C0PY 532V32 1D\"],\"7VpPHA\":[\"C0NF12M\"],\"7dZnmw\":[\"23L3V4NC3\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"U532N4M3\"],\"7vhWI8\":[\"N3W P455W02D\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"M4N463 532V32\"],\"8FE4JE\":[\"3N48L3 4U7H3N71C4702 4PP\"],\"8VGnad\":[\"63N32473 23C0V32Y C0D35\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"P455W02D\"],\"8aTiea\":[\"CU570M154710N\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"3N732 Y0U2 P23F3223D U532N4M3.\"],\"9D85wC\":[\"C0PY U532 1D\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"23537 70K3N\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"P32M15510N5\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"84N\"],\"9nffag\":[\"V13W1N6 0LD32 M3554635\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"UN8L0CK U532\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"C23473 4 620UP\"],\"A9Rhec\":[\"CH4NN3L N4M3\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"3N732 4 N3W P455W02D.\"],\"AU7IRi\":[\"73X7 CH4NN3L\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"V01C3 CH4NN3L\"],\"BHsrDx\":[\"1NV1735\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"M355463 W45 53N7 0N 4N07H32 PL47F02M\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"V13W CH4NN3L\"],\"CK7kdd\":[\"CL342 5747U5\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"CH4NN3L D35C21P710N\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"53ND M3554635\"],\"CkIs/i\":[\"MU73 M3M8325\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"CU223N7 P455W02D\"],\"DDpDsO\":[\"1NV173 C0D3\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"0FF1C14L C0MMUN1C4710N\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"D0N3\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"M355463 N07 L04D3D, CL1CK 70 JUMP\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"5U8M17 F347U23 5U6635710N\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"K1CK\"],\"EdQY6l\":[\"N0N3\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"C0NV3254710N5\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"53N7 4N 4774CHM3N7\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"C23473 C473602Y\"],\"F1uGNS\":[\"M4N463 N1CKN4M35\"],\"FEr96N\":[\"7H3M3\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"23M0V3 4V47425\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"3N48L3 D35K70P N071F1C4710N5\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"F0CU5\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"C0PY CH4NN3L 1D\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"MU7U4L 620UP5\"],\"GhCPk1\":[\"0NC3 17'5 D3L373D, 7H323'5 N0 601N6 84CK.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"3N732 Y0U2 CU223N7 P455W02D.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"PL3453 53L3C7 4 M37H0D 70 4U7H3N71C473 Y0U2 23QU357.\"],\"HAKBY9\":[\"UPL04D F1L35\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"54V3D N0735\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"2353ND V321F1C4710N\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"M0V3 M3M8325\"],\"ImOQa9\":[\"23PLY\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"53N7 MUL71PL3 4774CHM3N75\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"C4NN07 D3L373 4CC0UN7 UN71L 532V325 423 D3L373D 02 724N5F3223D\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"C0NF12M 4C710N\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"V13W 0LD32 UPD4735\"],\"JUJmXm\":[\"PL3453 C0NF12M 7H15 4C710N U51N6 7H3 53L3C73D M37H0D.\"],\"JW8mxK\":[\"54V3 70 Y0U2 N0735\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"W3LC0M3 70\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Y0U C4N 4L50 216H7-CL1CK 7H3 U532 1C0N 1N 7H3 70P L3F7, 02 L3F7 CL1CK 17 1F Y0U'23 4L234DY H0M3.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"D3L373 M355463\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"C0N73N7 8234K5 0N3 02 M023 L4W5\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"50UND5\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"0FF1C14L 532V32\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"23M0V3 F213ND\"],\"LcET2C\":[\"P21V4CY P0L1CY\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"W3'V3 53N7 Y0U 4 V321F1C4710N 3M41L. PL3453 4LL0W UP 70 10 M1NU735 F02 17 70 4221V3.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"532V32 N4M3\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"L34V3\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"V13W CU223N7LY 4C71V3 8U6 23P0275 H323.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"L37 U5 KN0W H0W W3 C4N 1MP20V3 0U2 4PP 8Y 61V1N6 U5 F33D84CK.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Y0U2 4CC0UN7 H45 833N V321F13D!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"3M41L\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Y0U D0N'7 H4V3 P32M15510N 70 53ND M3554635 1N 7H15 CH4NN3L.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"23537\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"23J3C7 F213ND 23QU357\"],\"PSP1MZ\":[\"20L3 N4M3\"],\"PWOA0E\":[\"M3N710N5 0NLY\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"53ND 3M83D5\"],\"PnzsrT\":[\"50U2C3 C0D3\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"JUMP 70 P2353N7\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"1DL3\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"3D17 M355463\"],\"QqoBlW\":[\"CH3CK Y0U2 M41L!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"23537 P455W02D\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"8U6 724CK32\"],\"S3bIKF\":[\"C0PY 1D\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"PL3453 5C4N 02 U53 7H3 70K3N 83L0W 1N Y0U2 4U7H3N71C4702 4PP.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"23M0V3 4U7H3N71C4702\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"M4N463 M3554635\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"M4N463 20L35\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"53771N65\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"1NV173 4LL 0F Y0U2 F213ND5, 50M3 C00L 8075, 4ND 7H20W 4 816 P427Y.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"CH4N63 4V4742\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"M355463 53N7\"],\"VJScHU\":[\"23450N\"],\"VKsaTi\":[\"23PLY1N6 70\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"D34F3N M3M8325\"],\"VsHxv+\":[\"C0PY 73X7\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"V321FY1N6 Y0U2 4CC0UN7…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"3X732N4L L1NK5 C4N 83 D4N6320U5!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"CL13N7 53771N65\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"4U7H3N71C4702 4PP\"],\"YcVBkL\":[\"M355463 23C31V3D\"],\"YirHq7\":[\"F33D84CK\"],\"YlFpiA\":[\"F41L3D 70 V321FY!\"],\"Yp+Hi/\":[\"0P3N 53771N65\"],\"Z5HWHd\":[\"0N\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Y0U2 23C0V32Y C0D35\"],\"aAIQg2\":[\"4PP3424NC3\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Y0U C4NN07 UND0 7H15 4C710N.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"0FF\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"D1548L3 4CC0UN7\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"234D M355463 H15702Y\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"84N M3M832\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"M4N463 P32M15510N5\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"1NV1732\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"D3L373\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"C4NC3L\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"C23473 4 N3W 807\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"1NV173 07H325\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"1NV1518L3\"],\"ekfzWq\":[\"U532 53771N65\"],\"etgedT\":[\"3M0J15\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"M4N463 CU570M154710N\"],\"fTMMeD\":[\"C23473 1NV173\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"23615732\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"C4NC3L F213ND 23QU357\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"45516N 20L35\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"23P027\"],\"gkBHk/\":[\"C23473 CH4NN3L\"],\"gkmjYT\":[\"L34V3 532V32\"],\"go1IWB\":[\"7H15 U532 H45 8L0CK3D Y0U.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"D3L373 CH4NN3L\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"PL3453 3N732 Y0U2 3M41L.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"C23473\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"H0M3\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"N071F1C4710N5\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"C0NN3C7\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"M3N710N\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"807\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"60 84CK 70 L061N\"],\"jpJ5AL\":[\"23C0V32Y C0D3\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"4V4742\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"W3LC0M3!\"],\"knjY+b\":[\"Y0U C4N 23-0P3N 17 L4732, 8U7 17 W1LL D154PP342 0N 807H 51D35.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"4DD F213ND\"],\"lSGjX7\":[\"U532 J01N3D C4LL\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"CH4NN3L5\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"620UP N4M3\"],\"mAYvqA\":[\"H3LL0!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"3D17 Y0U2 1D3N717Y\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Y0U W0N'7 83 48L3 70 4CC355 Y0U2 4CC0UN7 UNL355 Y0U C0N74C7 5UPP027 - H0W3V32, Y0U2 D474 W1LL N07 83 D3L373D.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"CU570M 5747U5\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"MU7U4L F213ND5\"],\"nbzz1A\":[\"3N732 C0D3\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"7H15 15 7H3 57427 0F Y0U2 N0735.\"],\"o+XJ9D\":[\"CH4N63\"],\"oB4OOq\":[\"84N M3M8325\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"0NL1N3\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"K1CK M3M8325\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"D3F4UL7\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"L06 0U7\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"JUMP 70 7H3 8361NN1N6\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"U532 L3F7 C4LL\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"MY 4CC0UN7\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"4LL M3554635\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 P3250N 234C73D\"],\"rxaY+5\":[\"D0 N07 D157U28\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"4DV4NC3D\"],\"t43mBk\":[\"23P027 532V32\"],\"tBmnPU\":[\"F213ND5\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"M4N463 W38H00K5\"],\"tdTuUv\":[\"8L0CK U532\"],\"tfDRzk\":[\"54V3\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"8L0CK3D U532\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"60 70 7H3 7357325 532V32\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"K1CK M3M832\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"D3L373 20L3\"],\"utrCh2\":[\"71M30U7 M3M8325\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"480U7\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"532V32 D35C21P710N\"],\"v1kQyJ\":[\"W38H00K5\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"P20F1L3\"],\"vJum3e\":[\"5UPP027 7H3 P20J3C7 8Y D0N471N6 - 7H4NK Y0U!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"V1D30\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"3D17 1D3N717Y\"],\"vXIe7J\":[\"L4N6U463\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"PL3453 54V3 7H353 70 4 54F3 L0C4710N.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"M355461N6\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"3N732 CH4NN3L\"],\"wL3cK8\":[\"L47357\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"M3M8325\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"M45QU324D3\"],\"xDAtGP\":[\"M355463\"],\"xGVfLh\":[\"C0N71NU3\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"84N5\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"732M5 0F 532V1C3\"],\"xpgPPI\":[\"MY 8075\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"4CC3P7 F213ND 23QU357\"],\"y1eoq1\":[\"C0PY L1NK\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"1 C0NF12M 7H47 1 4M 47 L3457 18 Y3425 0LD.\"],\"yDOdwQ\":[\"U532 M4N463M3N7\"],\"yIBLq8\":[\"5P34K\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"CL053\"],\"z0hW8A\":[\"V13W 23C0V32Y C0D35\"],\"z0t9bb\":[\"L061N\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"0K\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"7H15 15 7H3 57427 0F Y0U2 C0NV3254710N.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"0LD357\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/leet/messages.mjs b/components/i18n/catalogs/leet/messages.mjs
new file mode 100644
index 0000000..1f9a33f
--- /dev/null
+++ b/components/i18n/catalogs/leet/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"MU73D\"],\"+YFgJi\":[\"84D635\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"M42K 45 234D\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"C23473 4 N3W 20L3\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"L06 0U7 0F 4LL 07H32 535510N5\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"P1CK 4 U532N4M3 7H47 Y0U W4N7 P30PL3 70 83 48L3 70 F1ND Y0U 8Y. 7H15 C4N 83 CH4N63D L4732 1N Y0U2 U532 53771N65.\"],\"/qQDwm\":[\"63N32471N6 1NV173…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"23P027 M355463\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"5U8M17 F33D84CK\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"C0PY M355463 1D\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"L34V3 620UP\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Y0U C4N 23P027 155U35 4ND D15CU55 1MP20V3M3N75 W17H U5 D123C7LY H323.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"8L0CK3D\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Y0U W0N'7 83 48L3 70 23J01N UNL355 Y0U 423 23-1NV173D.\"],\"3QuNUr\":[\"53V324L P30PL3 423 7YP1N6…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"4L234DY F213ND5 W17H 7H15 U532.\"],\"3T8ziB\":[\"C23473 4N 4CC0UN7\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"535510N5\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"N1CKN4M3\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"53L3C7 Y0U2 L4N6U463\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"F1ND 4 C0MMUN17Y 8453D 0N Y0U2 H088135 02 1N7323575.\"],\"572q5a\":[\"23P027 U532\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"M42K 45 UN234D\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"CH4N63 N1CKN4M3\"],\"5dJK4M\":[\"20L35\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"0V32V13W\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"0FFL1N3\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"U532\"],\"7SU2U9\":[\"C0PY 532V32 1D\"],\"7VpPHA\":[\"C0NF12M\"],\"7dZnmw\":[\"23L3V4NC3\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"U532N4M3\"],\"7vhWI8\":[\"N3W P455W02D\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"M4N463 532V32\"],\"8FE4JE\":[\"3N48L3 4U7H3N71C4702 4PP\"],\"8VGnad\":[\"63N32473 23C0V32Y C0D35\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"P455W02D\"],\"8aTiea\":[\"CU570M154710N\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"3N732 Y0U2 P23F3223D U532N4M3.\"],\"9D85wC\":[\"C0PY U532 1D\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"23537 70K3N\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"P32M15510N5\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"84N\"],\"9nffag\":[\"V13W1N6 0LD32 M3554635\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"UN8L0CK U532\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"C23473 4 620UP\"],\"A9Rhec\":[\"CH4NN3L N4M3\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"3N732 4 N3W P455W02D.\"],\"AU7IRi\":[\"73X7 CH4NN3L\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"V01C3 CH4NN3L\"],\"BHsrDx\":[\"1NV1735\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"M355463 W45 53N7 0N 4N07H32 PL47F02M\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"V13W CH4NN3L\"],\"CK7kdd\":[\"CL342 5747U5\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"CH4NN3L D35C21P710N\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"53ND M3554635\"],\"CkIs/i\":[\"MU73 M3M8325\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"CU223N7 P455W02D\"],\"DDpDsO\":[\"1NV173 C0D3\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"0FF1C14L C0MMUN1C4710N\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"D0N3\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"M355463 N07 L04D3D, CL1CK 70 JUMP\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"5U8M17 F347U23 5U6635710N\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"K1CK\"],\"EdQY6l\":[\"N0N3\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"C0NV3254710N5\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"53N7 4N 4774CHM3N7\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"C23473 C473602Y\"],\"F1uGNS\":[\"M4N463 N1CKN4M35\"],\"FEr96N\":[\"7H3M3\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"23M0V3 4V47425\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"3N48L3 D35K70P N071F1C4710N5\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"F0CU5\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"C0PY CH4NN3L 1D\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"MU7U4L 620UP5\"],\"GhCPk1\":[\"0NC3 17'5 D3L373D, 7H323'5 N0 601N6 84CK.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"3N732 Y0U2 CU223N7 P455W02D.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"PL3453 53L3C7 4 M37H0D 70 4U7H3N71C473 Y0U2 23QU357.\"],\"HAKBY9\":[\"UPL04D F1L35\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"54V3D N0735\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"2353ND V321F1C4710N\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"M0V3 M3M8325\"],\"ImOQa9\":[\"23PLY\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"53N7 MUL71PL3 4774CHM3N75\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"C4NN07 D3L373 4CC0UN7 UN71L 532V325 423 D3L373D 02 724N5F3223D\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"C0NF12M 4C710N\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"V13W 0LD32 UPD4735\"],\"JUJmXm\":[\"PL3453 C0NF12M 7H15 4C710N U51N6 7H3 53L3C73D M37H0D.\"],\"JW8mxK\":[\"54V3 70 Y0U2 N0735\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"W3LC0M3 70\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Y0U C4N 4L50 216H7-CL1CK 7H3 U532 1C0N 1N 7H3 70P L3F7, 02 L3F7 CL1CK 17 1F Y0U'23 4L234DY H0M3.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"D3L373 M355463\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"C0N73N7 8234K5 0N3 02 M023 L4W5\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"50UND5\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"0FF1C14L 532V32\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"23M0V3 F213ND\"],\"LcET2C\":[\"P21V4CY P0L1CY\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"W3'V3 53N7 Y0U 4 V321F1C4710N 3M41L. PL3453 4LL0W UP 70 10 M1NU735 F02 17 70 4221V3.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"532V32 N4M3\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"L34V3\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"V13W CU223N7LY 4C71V3 8U6 23P0275 H323.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"L37 U5 KN0W H0W W3 C4N 1MP20V3 0U2 4PP 8Y 61V1N6 U5 F33D84CK.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Y0U2 4CC0UN7 H45 833N V321F13D!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"3M41L\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Y0U D0N'7 H4V3 P32M15510N 70 53ND M3554635 1N 7H15 CH4NN3L.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"23537\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"23J3C7 F213ND 23QU357\"],\"PSP1MZ\":[\"20L3 N4M3\"],\"PWOA0E\":[\"M3N710N5 0NLY\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"53ND 3M83D5\"],\"PnzsrT\":[\"50U2C3 C0D3\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"JUMP 70 P2353N7\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"1DL3\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"3D17 M355463\"],\"QqoBlW\":[\"CH3CK Y0U2 M41L!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"23537 P455W02D\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"8U6 724CK32\"],\"S3bIKF\":[\"C0PY 1D\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"PL3453 5C4N 02 U53 7H3 70K3N 83L0W 1N Y0U2 4U7H3N71C4702 4PP.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"23M0V3 4U7H3N71C4702\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"M4N463 M3554635\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"M4N463 20L35\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"53771N65\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"1NV173 4LL 0F Y0U2 F213ND5, 50M3 C00L 8075, 4ND 7H20W 4 816 P427Y.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"CH4N63 4V4742\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"M355463 53N7\"],\"VJScHU\":[\"23450N\"],\"VKsaTi\":[\"23PLY1N6 70\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"D34F3N M3M8325\"],\"VsHxv+\":[\"C0PY 73X7\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"V321FY1N6 Y0U2 4CC0UN7…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"3X732N4L L1NK5 C4N 83 D4N6320U5!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"CL13N7 53771N65\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"4U7H3N71C4702 4PP\"],\"YcVBkL\":[\"M355463 23C31V3D\"],\"YirHq7\":[\"F33D84CK\"],\"YlFpiA\":[\"F41L3D 70 V321FY!\"],\"Yp+Hi/\":[\"0P3N 53771N65\"],\"Z5HWHd\":[\"0N\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Y0U2 23C0V32Y C0D35\"],\"aAIQg2\":[\"4PP3424NC3\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Y0U C4NN07 UND0 7H15 4C710N.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"0FF\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"D1548L3 4CC0UN7\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"234D M355463 H15702Y\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"84N M3M832\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"M4N463 P32M15510N5\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"1NV1732\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"D3L373\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"C4NC3L\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"C23473 4 N3W 807\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"1NV173 07H325\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"1NV1518L3\"],\"ekfzWq\":[\"U532 53771N65\"],\"etgedT\":[\"3M0J15\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"M4N463 CU570M154710N\"],\"fTMMeD\":[\"C23473 1NV173\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"23615732\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"C4NC3L F213ND 23QU357\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"45516N 20L35\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"23P027\"],\"gkBHk/\":[\"C23473 CH4NN3L\"],\"gkmjYT\":[\"L34V3 532V32\"],\"go1IWB\":[\"7H15 U532 H45 8L0CK3D Y0U.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"D3L373 CH4NN3L\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"PL3453 3N732 Y0U2 3M41L.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"C23473\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"H0M3\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"N071F1C4710N5\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"C0NN3C7\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"M3N710N\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"807\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"60 84CK 70 L061N\"],\"jpJ5AL\":[\"23C0V32Y C0D3\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"4V4742\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"W3LC0M3!\"],\"knjY+b\":[\"Y0U C4N 23-0P3N 17 L4732, 8U7 17 W1LL D154PP342 0N 807H 51D35.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"4DD F213ND\"],\"lSGjX7\":[\"U532 J01N3D C4LL\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"CH4NN3L5\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"620UP N4M3\"],\"mAYvqA\":[\"H3LL0!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"3D17 Y0U2 1D3N717Y\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Y0U W0N'7 83 48L3 70 4CC355 Y0U2 4CC0UN7 UNL355 Y0U C0N74C7 5UPP027 - H0W3V32, Y0U2 D474 W1LL N07 83 D3L373D.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"CU570M 5747U5\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"MU7U4L F213ND5\"],\"nbzz1A\":[\"3N732 C0D3\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"7H15 15 7H3 57427 0F Y0U2 N0735.\"],\"o+XJ9D\":[\"CH4N63\"],\"oB4OOq\":[\"84N M3M8325\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"0NL1N3\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"K1CK M3M8325\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"D3F4UL7\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"L06 0U7\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"JUMP 70 7H3 8361NN1N6\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"U532 L3F7 C4LL\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"MY 4CC0UN7\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"4LL M3554635\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 P3250N 234C73D\"],\"rxaY+5\":[\"D0 N07 D157U28\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"4DV4NC3D\"],\"t43mBk\":[\"23P027 532V32\"],\"tBmnPU\":[\"F213ND5\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"M4N463 W38H00K5\"],\"tdTuUv\":[\"8L0CK U532\"],\"tfDRzk\":[\"54V3\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"8L0CK3D U532\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"60 70 7H3 7357325 532V32\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"K1CK M3M832\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"D3L373 20L3\"],\"utrCh2\":[\"71M30U7 M3M8325\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"480U7\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"532V32 D35C21P710N\"],\"v1kQyJ\":[\"W38H00K5\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"P20F1L3\"],\"vJum3e\":[\"5UPP027 7H3 P20J3C7 8Y D0N471N6 - 7H4NK Y0U!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"V1D30\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"3D17 1D3N717Y\"],\"vXIe7J\":[\"L4N6U463\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"PL3453 54V3 7H353 70 4 54F3 L0C4710N.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"M355461N6\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"3N732 CH4NN3L\"],\"wL3cK8\":[\"L47357\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"M3M8325\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"M45QU324D3\"],\"xDAtGP\":[\"M355463\"],\"xGVfLh\":[\"C0N71NU3\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"84N5\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"732M5 0F 532V1C3\"],\"xpgPPI\":[\"MY 8075\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"4CC3P7 F213ND 23QU357\"],\"y1eoq1\":[\"C0PY L1NK\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"1 C0NF12M 7H47 1 4M 47 L3457 18 Y3425 0LD.\"],\"yDOdwQ\":[\"U532 M4N463M3N7\"],\"yIBLq8\":[\"5P34K\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"CL053\"],\"z0hW8A\":[\"V13W 23C0V32Y C0D35\"],\"z0t9bb\":[\"L061N\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"0K\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"7H15 15 7H3 57427 0F Y0U2 C0NV3254710N.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"0LD357\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/leet/messages.po b/components/i18n/catalogs/leet/messages.po
new file mode 100644
index 0000000..f107601
--- /dev/null
+++ b/components/i18n/catalogs/leet/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: leet\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 P3250N 234C73D"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "480U7"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "4CC3P7 F213ND 23QU357"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "4DD F213ND"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "4DV4NC3D"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "4LL M3554635"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "4L234DY F213ND5 W17H 7H15 U532."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "4PP3424NC3"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "45516N 20L35"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "4U7H3N71C4702 4PP"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "4V4742"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "84D635"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "84N"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "84N M3M832"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "84N M3M8325"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "84N5"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "8L0CK U532"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "8L0CK3D"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "8L0CK3D U532"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "807"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "8U6 724CK32"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "C4NC3L"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "C4NC3L F213ND 23QU357"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "C4NN07 D3L373 4CC0UN7 UN71L 532V325 423 D3L373D 02 724N5F3223D"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "CH4N63"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "CH4N63 4V4742"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "CH4N63 N1CKN4M3"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "CH4NN3L D35C21P710N"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "CH4NN3L N4M3"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "CH4NN3L5"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "CH3CK Y0U2 M41L!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "CL342 5747U5"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "CL13N7 53771N65"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "CL053"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "C0NF12M"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "C0NF12M 4C710N"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "C0NN3C7"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "C0N73N7 8234K5 0N3 02 M023 L4W5"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "C0N71NU3"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "C0NV3254710N5"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "C0PY CH4NN3L 1D"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "C0PY 1D"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "C0PY L1NK"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "C0PY M355463 1D"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "C0PY 532V32 1D"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "C0PY 73X7"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "C0PY U532 1D"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "C23473"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "C23473 4 620UP"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "C23473 4 N3W 807"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "C23473 4 N3W 20L3"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "C23473 4N 4CC0UN7"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "C23473 C473602Y"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "C23473 CH4NN3L"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "C23473 1NV173"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "CU223N7 P455W02D"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "CU570M 5747U5"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "CU570M154710N"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "D34F3N M3M8325"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "D3F4UL7"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "D3L373"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "D3L373 CH4NN3L"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "D3L373 M355463"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "D3L373 20L3"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "D1548L3 4CC0UN7"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "D0 N07 D157U28"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "D0N3"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "3D17 1D3N717Y"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "3D17 M355463"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "3D17 Y0U2 1D3N717Y"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "3M41L"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "3M0J15"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "3N48L3 4U7H3N71C4702 4PP"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "3N48L3 D35K70P N071F1C4710N5"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "3N732 4 N3W P455W02D."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "3N732 CH4NN3L"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "3N732 C0D3"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "3N732 Y0U2 CU223N7 P455W02D."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "3N732 Y0U2 P23F3223D U532N4M3."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "3X732N4L L1NK5 C4N 83 D4N6320U5!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "F41L3D 70 V321FY!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "F33D84CK"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "F1ND 4 C0MMUN17Y 8453D 0N Y0U2 H088135 02 1N7323575."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "F0CU5"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "F213ND5"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "63N32473 23C0V32Y C0D35"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "63N32471N6 1NV173…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "60 84CK 70 L061N"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "60 70 7H3 7357325 532V32"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "620UP N4M3"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "H3LL0!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "H0M3"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "1 C0NF12M 7H47 1 4M 47 L3457 18 Y3425 0LD."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "1DL3"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "1NV1518L3"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "1NV173 4LL 0F Y0U2 F213ND5, 50M3 C00L 8075, 4ND 7H20W 4 816 P427Y."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "1NV173 C0D3"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "1NV173 07H325"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "1NV1732"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "1NV1735"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "JUMP 70 P2353N7"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "JUMP 70 7H3 8361NN1N6"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "K1CK"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "K1CK M3M832"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "K1CK M3M8325"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "L4N6U463"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "L47357"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "L34V3"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "L34V3 620UP"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "L34V3 532V32"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "L37 U5 KN0W H0W W3 C4N 1MP20V3 0U2 4PP 8Y 61V1N6 U5 F33D84CK."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "L06 0U7"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "L06 0U7 0F 4LL 07H32 535510N5"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "L061N"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "M4N463 CU570M154710N"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "M4N463 M3554635"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "M4N463 N1CKN4M35"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "M4N463 P32M15510N5"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "M4N463 20L35"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "M4N463 532V32"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "M4N463 W38H00K5"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "M42K 45 234D"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "M42K 45 UN234D"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "M45QU324D3"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "M3M8325"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "M3N710N"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "M3N710N5 0NLY"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "M355463"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "M355463 N07 L04D3D, CL1CK 70 JUMP"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "M355463 23C31V3D"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "M355463 53N7"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "M355463 W45 53N7 0N 4N07H32 PL47F02M"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "M355461N6"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "M0V3 M3M8325"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "MU73 M3M8325"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "MU73D"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "MU7U4L F213ND5"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "MU7U4L 620UP5"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "MY 4CC0UN7"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "MY 8075"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "N3W P455W02D"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "N1CKN4M3"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "N0N3"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "N071F1C4710N5"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "0FF"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "0FF1C14L C0MMUN1C4710N"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "0FF1C14L 532V32"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "0FFL1N3"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "0K"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "0LD357"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "0N"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "0NC3 17'5 D3L373D, 7H323'5 N0 601N6 84CK."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "0NL1N3"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "0P3N 53771N65"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "0V32V13W"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "P455W02D"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "P32M15510N5"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "P1CK 4 U532N4M3 7H47 Y0U W4N7 P30PL3 70 83 48L3 70 F1ND Y0U 8Y. 7H15 C4N 83 CH4N63D L4732 1N Y0U2 U532 53771N65."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "PL3453 C0NF12M 7H15 4C710N U51N6 7H3 53L3C73D M37H0D."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "PL3453 3N732 Y0U2 3M41L."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "PL3453 54V3 7H353 70 4 54F3 L0C4710N."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "PL3453 5C4N 02 U53 7H3 70K3N 83L0W 1N Y0U2 4U7H3N71C4702 4PP."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "PL3453 53L3C7 4 M37H0D 70 4U7H3N71C473 Y0U2 23QU357."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "P21V4CY P0L1CY"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "P20F1L3"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "234D M355463 H15702Y"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "23450N"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "23C0V32Y C0D3"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "23615732"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "23J3C7 F213ND 23QU357"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "23L3V4NC3"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "23M0V3 4U7H3N71C4702"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "23M0V3 4V47425"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "23M0V3 F213ND"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "23PLY"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "23PLY1N6 70"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "23P027"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "23P027 M355463"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "23P027 532V32"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "23P027 U532"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "2353ND V321F1C4710N"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "23537"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "23537 P455W02D"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "23537 70K3N"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "20L3 N4M3"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "20L35"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "54V3"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "54V3 70 Y0U2 N0735"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "54V3D N0735"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "53L3C7 Y0U2 L4N6U463"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "53ND 3M83D5"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "53ND M3554635"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "53N7 4N 4774CHM3N7"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "53N7 MUL71PL3 4774CHM3N75"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "532V32 D35C21P710N"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "532V32 N4M3"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "535510N5"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "53771N65"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "53V324L P30PL3 423 7YP1N6…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "50UND5"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "50U2C3 C0D3"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "5P34K"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "5U8M17 F347U23 5U6635710N"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "5U8M17 F33D84CK"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "5UPP027 7H3 P20J3C7 8Y D0N471N6 - 7H4NK Y0U!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "732M5 0F 532V1C3"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "73X7 CH4NN3L"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "7H3M3"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "7H15 15 7H3 57427 0F Y0U2 C0NV3254710N."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "7H15 15 7H3 57427 0F Y0U2 N0735."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "7H15 U532 H45 8L0CK3D Y0U."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "71M30U7 M3M8325"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "UN8L0CK U532"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "UPL04D F1L35"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "U532"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "U532 J01N3D C4LL"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "U532 L3F7 C4LL"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "U532 M4N463M3N7"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "U532 53771N65"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "U532N4M3"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "V321FY1N6 Y0U2 4CC0UN7…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "V1D30"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "V13W CH4NN3L"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "V13W CU223N7LY 4C71V3 8U6 23P0275 H323."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "V13W 0LD32 UPD4735"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "V13W 23C0V32Y C0D35"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "V13W1N6 0LD32 M3554635"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "V01C3 CH4NN3L"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "W3'V3 53N7 Y0U 4 V321F1C4710N 3M41L. PL3453 4LL0W UP 70 10 M1NU735 F02 17 70 4221V3."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "W38H00K5"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "W3LC0M3 70"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "W3LC0M3!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Y0U C4N 4L50 216H7-CL1CK 7H3 U532 1C0N 1N 7H3 70P L3F7, 02 L3F7 CL1CK 17 1F Y0U'23 4L234DY H0M3."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Y0U C4N 23-0P3N 17 L4732, 8U7 17 W1LL D154PP342 0N 807H 51D35."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Y0U C4N 23P027 155U35 4ND D15CU55 1MP20V3M3N75 W17H U5 D123C7LY H323."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Y0U C4NN07 UND0 7H15 4C710N."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Y0U D0N'7 H4V3 P32M15510N 70 53ND M3554635 1N 7H15 CH4NN3L."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Y0U W0N'7 83 48L3 70 4CC355 Y0U2 4CC0UN7 UNL355 Y0U C0N74C7 5UPP027 - H0W3V32, Y0U2 D474 W1LL N07 83 D3L373D."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Y0U W0N'7 83 48L3 70 23J01N UNL355 Y0U 423 23-1NV173D."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Y0U2 4CC0UN7 H45 833N V321F13D!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Y0U2 23C0V32Y C0D35"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/lt/messages.js b/components/i18n/catalogs/lt/messages.js
new file mode 100644
index 0000000..8f36149
--- /dev/null
+++ b/components/i18n/catalogs/lt/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Nutildytas\"],\"+YFgJi\":[\"Ženkleliai\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Pažymėti kaip skaitytą\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Kurti naują vaidmenį\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Atsijungti nuo visų kitų sesijų\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pasirinkite naudotojo vardą, pagal kurį jus galėtų rasti žmonės. Jis galės būti pakeistas naudotojo nustatymuose.\"],\"/qQDwm\":[\"Generuojamas kvietimas…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Skųstis žinute\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Pateikti atsiliepimą\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopijuoti žinutės ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Išeiti iš grupės\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Galite pranešti apie problemas ir aptarti patobulinimus su mumis tiesiogiai čia.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Užblokuotas\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Negalėsite sugrįžti, nebent kas nors jus pakvies.\"],\"3QuNUr\":[\"Rašo keli žmonės…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Esate draugai su šiuo naudotoju.\"],\"3T8ziB\":[\"Kurti paskyrą\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesijos\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Pravardė\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Pasirinkite kalbą\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Raskite bendruomenę pagal savo hobius ar interesus.\"],\"572q5a\":[\"Skųstis naudotoju\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Pažymėti kaip neskaitytą\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Keisti pravardę\"],\"5dJK4M\":[\"Vaidmenys\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Apžvalga\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Atsijungęs\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Naudotojas\"],\"7SU2U9\":[\"Kopijuoti serverio ID\"],\"7VpPHA\":[\"Patvirtinti\"],\"7dZnmw\":[\"Aktualūs\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Naudotojo vardas\"],\"7vhWI8\":[\"Naujas slaptažodis\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Tvarkyti serverį\"],\"8FE4JE\":[\"Įjungti autentifikavimo programėlę\"],\"8VGnad\":[\"Generuoti atkūrimo kodus\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Slaptažodis\"],\"8aTiea\":[\"Tinkinimas\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Įveskite naudotojo vardą.\"],\"9D85wC\":[\"Kopijuoti naudotojo ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Leidimai\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Blokuoti\"],\"9nffag\":[\"Rodomos senesnės žinutės\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Atblokuoti naudotoją\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Kurti grupę\"],\"A9Rhec\":[\"Kanalo pavadinimas\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Įveskite naują slaptažodį.\"],\"AU7IRi\":[\"Teksto kanalas\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Balso kanalas\"],\"BHsrDx\":[\"Kvietimai\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Žinutė buvo išsiųsta kitoje platformoje\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Peržiūrėti kanalą\"],\"CK7kdd\":[\"Valyti būseną\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalo aprašymas\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Siųsti žinutes\"],\"CkIs/i\":[\"Nutildyti narius\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Dabartinis slaptažodis\"],\"DDpDsO\":[\"Kvietimo kodas\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficialus pranešimas\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Baigta\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Žinutė neįkelta, spustelėkite, kad pereitumėte\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Pateikti funkcijos pasiūlymą\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Išmesti\"],\"EdQY6l\":[\"Jokių\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Pokalbiai\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Išsiųstas priedas\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kurti kategoriją\"],\"F1uGNS\":[\"Tvarkyti pravardes\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Šalinti avatarus\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Įjungti pranešimus darbalaukyje\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Susikaupęs\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopijuoti kanalo ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Bendros grupės\"],\"GhCPk1\":[\"Panaikinus kelio atgal nėra.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Įveskite dabartinį slaptažodį.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pasirinkite užklausos autentifikavimo būdą.\"],\"HAKBY9\":[\"Įkelti failus\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Išsaugoti užrašai\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Iš naujo siųsti patvirtinimą\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Perkelti narius\"],\"ImOQa9\":[\"Atsakyti\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Išsiųsti keli priedai\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Paskyros negalima ištrinti kol serveriai nėra ištrinti arba perduota nuosavybė\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Patvirtinti veiksmą\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Rodyti senesnius naujinimus\"],\"JUJmXm\":[\"Patvirtinkite šį veiksmą pasirinktu būdu.\"],\"JW8mxK\":[\"Išsaugoti į savo užrašus\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Sveiki atvykę į\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Taip pat galite spustelėti dešinįjį pelės klavišą ant naudotojo piktogramos arba kairįjį, jei jau esate pagrindiniame puslapyje.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Naikinti žinutę\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Turinys pažeidžia vieną arba kelis įstatymus\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Garsai\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficialus serveris\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Šalinti iš draugų\"],\"LcET2C\":[\"Privatumo politika\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Mes išsiuntėme patvirtinimo el. laišką. Gali užtrukti iki 10 minučių, kol jį gausite.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Serverio pavadinimas\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Išeiti\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Peržiūrėkite šiuo metu aktyvius klaidų pranešimus čia.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Pateikite atsiliepimą, kad galėtume tobulinti mūsų programėlę.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Jūsų paskyra patvirtinta!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"El. paštas\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Neturite leidimo siųsti žinučių šiame kanale.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Atkurti\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Atmesti draugo prašymą\"],\"PSP1MZ\":[\"Vaidmens pavadinimas\"],\"PWOA0E\":[\"Tik paminėjimai\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Siųsti įterpimus\"],\"PnzsrT\":[\"Pirminis kodas\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Eiti į dabartį\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Pasitraukęs\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redaguoti žinutę\"],\"QqoBlW\":[\"Patikrinkite savo el. paštą!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Atkurti slaptažodį\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Klaidų seklys\"],\"S3bIKF\":[\"Kopijuoti ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Nuskaitykite arba panaudokite žemiau esantį raktą autentifikavimo programėlėje.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Šalinti autentifikatorių\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Tvarkyti žinutes\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Tvarkyti vaidmenis\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nustatymai\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pakvieskite visus savo draugus, keletą šaunių botų ir pasilinksminkite.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Keisti avatarą\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Žinutė išsiųsta\"],\"VJScHU\":[\"Priežastis\"],\"VKsaTi\":[\"Atsakoma\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Išjungti narių garsą\"],\"VsHxv+\":[\"Kopijuoti tekstą\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Patvirtinama jūsų paskyra…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Išorinės nuorodos gali būti pavojingos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Kliento nustatymai\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentifikavimo programėlė\"],\"YcVBkL\":[\"Žinutė gauta\"],\"YirHq7\":[\"Atsiliepimai\"],\"YlFpiA\":[\"Nepavyko patvirtinti!\"],\"Yp+Hi/\":[\"Atidarykite nustatymus\"],\"Z5HWHd\":[\"Įjungta\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Jūsų atkūrimo kodai\"],\"aAIQg2\":[\"Išvaizda\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Šis veiksmas yra negrįžtamas.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Išjungta\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Išjungti paskyrą\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Peržiūrėti žinučių istoriją\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Blokuoti narį\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Tvarkyti leidimus\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Kviečiantysis\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Naikinti\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Atšaukti\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Kurti naują botą\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Kviesti kitus\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nematomumas\"],\"ekfzWq\":[\"Naudotojo nustatymai\"],\"etgedT\":[\"Jaustukai\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Tvarkyti tinkinimą\"],\"fTMMeD\":[\"Kurti kvietimą\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registruotis\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Atšaukti draugo prašymą\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Priskirti vaidmenis\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Skųstis\"],\"gkBHk/\":[\"Kurti kanalą\"],\"gkmjYT\":[\"Išeiti iš serverio\"],\"go1IWB\":[\"Šis naudotojas jus užblokavo.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Naikinti kanalą\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Įveskite el. pašto adresą.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Kurti\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Pagrindinis\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Prisijungimas\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Paminėti\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Botas\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Grįžti prie prisijungimo\"],\"jpJ5AL\":[\"Atkūrimo kodas\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avataras\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Sveiki!\"],\"knjY+b\":[\"Vėliau galėsite jį vėl atidaryti, bet jis išnyks iš abiejų pusių.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Pridėti į draugus\"],\"lSGjX7\":[\"Naudotojas prisijungė prie skambučio\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalai\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupės pavadinimas\"],\"mAYvqA\":[\"Sveiki!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Redaguokite savo tapatybę\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Negalėsite prisijungti prie savo paskyros, nebent susisieksite su palaikymu – jūsų duomenys nebus panaikinti.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Tinkinta būsena\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Bendri draugai\"],\"nbzz1A\":[\"Įveskite kodą\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Tai yra jūsų užrašų pradžia.\"],\"o+XJ9D\":[\"Keisti\"],\"oB4OOq\":[\"Blokuoti narius\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Prisijungęs\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Išmesti narius\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Numatytasis\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Atsijungti\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Eiti į pradžią\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Naudotojas paliko skambutį\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mano paskyra\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Visos žinutės\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 žmogus sureagavo\"],\"rxaY+5\":[\"Netrukdyti\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Išplėstiniai\"],\"t43mBk\":[\"Skųstis serveriu\"],\"tBmnPU\":[\"Draugai\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Tvarkyti Webhooks\"],\"tdTuUv\":[\"Blokuoti naudotoją\"],\"tfDRzk\":[\"Išsaugoti\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Užblokuotas naudotojas\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Prisijunkite prie testuotojų serverio\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Išmesti narį\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Naikinti vaidmenį\"],\"utrCh2\":[\"Sulaikyti narius\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Apie\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverio aprašymas\"],\"v1kQyJ\":[\"Internetiniai Kabliukai\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profilis\"],\"vJum3e\":[\"Paremkite projektą paaukodami – ačiū!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vaizdo įrašai\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redaguoti tapatybę\"],\"vXIe7J\":[\"Kalba\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Išsaugokite juos saugioje vietoje.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Žinutės\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Eiti į kanalą\"],\"wL3cK8\":[\"Naujausi\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Nariai\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskaradas\"],\"xDAtGP\":[\"Žinutė\"],\"xGVfLh\":[\"Tęsti\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Blokavimai\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Naudojimo sąlygos\"],\"xpgPPI\":[\"Mano botai\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Priimti draugo prašymą\"],\"y1eoq1\":[\"Kopijuoti nuorodą\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Patvirtinu, kad man daugiau nei 18 metų.\"],\"yDOdwQ\":[\"Naudotojų valdymas\"],\"yIBLq8\":[\"Kalbėjimas\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Uždaryti\"],\"z0hW8A\":[\"Rodyti atkūrimo kodus\"],\"z0t9bb\":[\"Prisijungti\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Gerai\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Tai yra jūsų pokalbio pradžia.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Seniausi\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/lt/messages.mjs b/components/i18n/catalogs/lt/messages.mjs
new file mode 100644
index 0000000..220682b
--- /dev/null
+++ b/components/i18n/catalogs/lt/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Nutildytas\"],\"+YFgJi\":[\"Ženkleliai\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Pažymėti kaip skaitytą\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Kurti naują vaidmenį\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Atsijungti nuo visų kitų sesijų\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pasirinkite naudotojo vardą, pagal kurį jus galėtų rasti žmonės. Jis galės būti pakeistas naudotojo nustatymuose.\"],\"/qQDwm\":[\"Generuojamas kvietimas…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Skųstis žinute\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Pateikti atsiliepimą\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopijuoti žinutės ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Išeiti iš grupės\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Galite pranešti apie problemas ir aptarti patobulinimus su mumis tiesiogiai čia.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Užblokuotas\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Negalėsite sugrįžti, nebent kas nors jus pakvies.\"],\"3QuNUr\":[\"Rašo keli žmonės…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Esate draugai su šiuo naudotoju.\"],\"3T8ziB\":[\"Kurti paskyrą\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesijos\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Pravardė\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Pasirinkite kalbą\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Raskite bendruomenę pagal savo hobius ar interesus.\"],\"572q5a\":[\"Skųstis naudotoju\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Pažymėti kaip neskaitytą\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Keisti pravardę\"],\"5dJK4M\":[\"Vaidmenys\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Apžvalga\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Atsijungęs\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Naudotojas\"],\"7SU2U9\":[\"Kopijuoti serverio ID\"],\"7VpPHA\":[\"Patvirtinti\"],\"7dZnmw\":[\"Aktualūs\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Naudotojo vardas\"],\"7vhWI8\":[\"Naujas slaptažodis\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Tvarkyti serverį\"],\"8FE4JE\":[\"Įjungti autentifikavimo programėlę\"],\"8VGnad\":[\"Generuoti atkūrimo kodus\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Slaptažodis\"],\"8aTiea\":[\"Tinkinimas\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Įveskite naudotojo vardą.\"],\"9D85wC\":[\"Kopijuoti naudotojo ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Leidimai\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Blokuoti\"],\"9nffag\":[\"Rodomos senesnės žinutės\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Atblokuoti naudotoją\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Kurti grupę\"],\"A9Rhec\":[\"Kanalo pavadinimas\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Įveskite naują slaptažodį.\"],\"AU7IRi\":[\"Teksto kanalas\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Balso kanalas\"],\"BHsrDx\":[\"Kvietimai\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Žinutė buvo išsiųsta kitoje platformoje\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Peržiūrėti kanalą\"],\"CK7kdd\":[\"Valyti būseną\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalo aprašymas\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Siųsti žinutes\"],\"CkIs/i\":[\"Nutildyti narius\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Dabartinis slaptažodis\"],\"DDpDsO\":[\"Kvietimo kodas\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficialus pranešimas\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Baigta\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Žinutė neįkelta, spustelėkite, kad pereitumėte\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Pateikti funkcijos pasiūlymą\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Išmesti\"],\"EdQY6l\":[\"Jokių\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Pokalbiai\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Išsiųstas priedas\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Kurti kategoriją\"],\"F1uGNS\":[\"Tvarkyti pravardes\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Šalinti avatarus\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Įjungti pranešimus darbalaukyje\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Susikaupęs\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopijuoti kanalo ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Bendros grupės\"],\"GhCPk1\":[\"Panaikinus kelio atgal nėra.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Įveskite dabartinį slaptažodį.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pasirinkite užklausos autentifikavimo būdą.\"],\"HAKBY9\":[\"Įkelti failus\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Išsaugoti užrašai\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Iš naujo siųsti patvirtinimą\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Perkelti narius\"],\"ImOQa9\":[\"Atsakyti\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Išsiųsti keli priedai\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Paskyros negalima ištrinti kol serveriai nėra ištrinti arba perduota nuosavybė\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Patvirtinti veiksmą\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Rodyti senesnius naujinimus\"],\"JUJmXm\":[\"Patvirtinkite šį veiksmą pasirinktu būdu.\"],\"JW8mxK\":[\"Išsaugoti į savo užrašus\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Sveiki atvykę į\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Taip pat galite spustelėti dešinįjį pelės klavišą ant naudotojo piktogramos arba kairįjį, jei jau esate pagrindiniame puslapyje.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Naikinti žinutę\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Turinys pažeidžia vieną arba kelis įstatymus\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Garsai\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficialus serveris\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Šalinti iš draugų\"],\"LcET2C\":[\"Privatumo politika\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Mes išsiuntėme patvirtinimo el. laišką. Gali užtrukti iki 10 minučių, kol jį gausite.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Serverio pavadinimas\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Išeiti\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Peržiūrėkite šiuo metu aktyvius klaidų pranešimus čia.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Pateikite atsiliepimą, kad galėtume tobulinti mūsų programėlę.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Jūsų paskyra patvirtinta!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"El. paštas\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Neturite leidimo siųsti žinučių šiame kanale.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Atkurti\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Atmesti draugo prašymą\"],\"PSP1MZ\":[\"Vaidmens pavadinimas\"],\"PWOA0E\":[\"Tik paminėjimai\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Siųsti įterpimus\"],\"PnzsrT\":[\"Pirminis kodas\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Eiti į dabartį\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Pasitraukęs\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redaguoti žinutę\"],\"QqoBlW\":[\"Patikrinkite savo el. paštą!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Atkurti slaptažodį\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Klaidų seklys\"],\"S3bIKF\":[\"Kopijuoti ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Nuskaitykite arba panaudokite žemiau esantį raktą autentifikavimo programėlėje.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Šalinti autentifikatorių\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Tvarkyti žinutes\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Tvarkyti vaidmenis\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nustatymai\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pakvieskite visus savo draugus, keletą šaunių botų ir pasilinksminkite.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Keisti avatarą\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Žinutė išsiųsta\"],\"VJScHU\":[\"Priežastis\"],\"VKsaTi\":[\"Atsakoma\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Išjungti narių garsą\"],\"VsHxv+\":[\"Kopijuoti tekstą\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Patvirtinama jūsų paskyra…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Išorinės nuorodos gali būti pavojingos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Kliento nustatymai\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentifikavimo programėlė\"],\"YcVBkL\":[\"Žinutė gauta\"],\"YirHq7\":[\"Atsiliepimai\"],\"YlFpiA\":[\"Nepavyko patvirtinti!\"],\"Yp+Hi/\":[\"Atidarykite nustatymus\"],\"Z5HWHd\":[\"Įjungta\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Jūsų atkūrimo kodai\"],\"aAIQg2\":[\"Išvaizda\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Šis veiksmas yra negrįžtamas.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Išjungta\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Išjungti paskyrą\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Peržiūrėti žinučių istoriją\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Blokuoti narį\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Tvarkyti leidimus\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Kviečiantysis\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Naikinti\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Atšaukti\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Kurti naują botą\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Kviesti kitus\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nematomumas\"],\"ekfzWq\":[\"Naudotojo nustatymai\"],\"etgedT\":[\"Jaustukai\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Tvarkyti tinkinimą\"],\"fTMMeD\":[\"Kurti kvietimą\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registruotis\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Atšaukti draugo prašymą\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Priskirti vaidmenis\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Skųstis\"],\"gkBHk/\":[\"Kurti kanalą\"],\"gkmjYT\":[\"Išeiti iš serverio\"],\"go1IWB\":[\"Šis naudotojas jus užblokavo.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Naikinti kanalą\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Įveskite el. pašto adresą.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Kurti\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Pagrindinis\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Prisijungimas\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Paminėti\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Botas\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Grįžti prie prisijungimo\"],\"jpJ5AL\":[\"Atkūrimo kodas\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avataras\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Sveiki!\"],\"knjY+b\":[\"Vėliau galėsite jį vėl atidaryti, bet jis išnyks iš abiejų pusių.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Pridėti į draugus\"],\"lSGjX7\":[\"Naudotojas prisijungė prie skambučio\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalai\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupės pavadinimas\"],\"mAYvqA\":[\"Sveiki!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Redaguokite savo tapatybę\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Negalėsite prisijungti prie savo paskyros, nebent susisieksite su palaikymu – jūsų duomenys nebus panaikinti.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Tinkinta būsena\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Bendri draugai\"],\"nbzz1A\":[\"Įveskite kodą\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Tai yra jūsų užrašų pradžia.\"],\"o+XJ9D\":[\"Keisti\"],\"oB4OOq\":[\"Blokuoti narius\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Prisijungęs\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Išmesti narius\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Numatytasis\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Atsijungti\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Eiti į pradžią\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Naudotojas paliko skambutį\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mano paskyra\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Visos žinutės\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 žmogus sureagavo\"],\"rxaY+5\":[\"Netrukdyti\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Išplėstiniai\"],\"t43mBk\":[\"Skųstis serveriu\"],\"tBmnPU\":[\"Draugai\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Tvarkyti Webhooks\"],\"tdTuUv\":[\"Blokuoti naudotoją\"],\"tfDRzk\":[\"Išsaugoti\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Užblokuotas naudotojas\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Prisijunkite prie testuotojų serverio\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Išmesti narį\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Naikinti vaidmenį\"],\"utrCh2\":[\"Sulaikyti narius\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Apie\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverio aprašymas\"],\"v1kQyJ\":[\"Internetiniai Kabliukai\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profilis\"],\"vJum3e\":[\"Paremkite projektą paaukodami – ačiū!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vaizdo įrašai\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redaguoti tapatybę\"],\"vXIe7J\":[\"Kalba\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Išsaugokite juos saugioje vietoje.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Žinutės\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Eiti į kanalą\"],\"wL3cK8\":[\"Naujausi\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Nariai\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskaradas\"],\"xDAtGP\":[\"Žinutė\"],\"xGVfLh\":[\"Tęsti\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Blokavimai\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Naudojimo sąlygos\"],\"xpgPPI\":[\"Mano botai\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Priimti draugo prašymą\"],\"y1eoq1\":[\"Kopijuoti nuorodą\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Patvirtinu, kad man daugiau nei 18 metų.\"],\"yDOdwQ\":[\"Naudotojų valdymas\"],\"yIBLq8\":[\"Kalbėjimas\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Uždaryti\"],\"z0hW8A\":[\"Rodyti atkūrimo kodus\"],\"z0t9bb\":[\"Prisijungti\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Gerai\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Tai yra jūsų pokalbio pradžia.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Seniausi\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/lt/messages.po b/components/i18n/catalogs/lt/messages.po
new file mode 100644
index 0000000..45653f6
--- /dev/null
+++ b/components/i18n/catalogs/lt/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: lt\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 žmogus sureagavo"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Apie"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Priimti draugo prašymą"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Pridėti į draugus"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Išplėstiniai"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Visos žinutės"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Esate draugai su šiuo naudotoju."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Išvaizda"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Priskirti vaidmenis"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Autentifikavimo programėlė"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avataras"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Ženkleliai"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Blokuoti"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Blokuoti narį"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Blokuoti narius"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Blokavimai"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blokuoti naudotoją"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Užblokuotas"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Užblokuotas naudotojas"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Botas"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Klaidų seklys"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Atšaukti"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Atšaukti draugo prašymą"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Paskyros negalima ištrinti kol serveriai nėra ištrinti arba perduota nuosavybė"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Keisti"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Keisti avatarą"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Keisti pravardę"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanalo aprašymas"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanalo pavadinimas"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanalai"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Patikrinkite savo el. paštą!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Valyti būseną"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Kliento nustatymai"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Uždaryti"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Patvirtinti"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Patvirtinti veiksmą"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Prisijungimas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Turinys pažeidžia vieną arba kelis įstatymus"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Tęsti"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Pokalbiai"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopijuoti kanalo ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopijuoti ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopijuoti nuorodą"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopijuoti žinutės ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopijuoti serverio ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopijuoti tekstą"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopijuoti naudotojo ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Kurti"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Kurti grupę"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Kurti naują botą"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Kurti naują vaidmenį"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Kurti paskyrą"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Kurti kategoriją"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Kurti kanalą"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Kurti kvietimą"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Dabartinis slaptažodis"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Tinkinta būsena"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Tinkinimas"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Išjungti narių garsą"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Numatytasis"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Naikinti"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Naikinti kanalą"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Naikinti žinutę"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Naikinti vaidmenį"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Išjungti paskyrą"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Netrukdyti"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Baigta"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Redaguoti tapatybę"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Redaguoti žinutę"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Redaguokite savo tapatybę"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "El. paštas"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Jaustukai"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Įjungti autentifikavimo programėlę"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Įjungti pranešimus darbalaukyje"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Įveskite naują slaptažodį."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Eiti į kanalą"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Įveskite kodą"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Įveskite dabartinį slaptažodį."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Įveskite naudotojo vardą."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Išorinės nuorodos gali būti pavojingos!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Nepavyko patvirtinti!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Atsiliepimai"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Raskite bendruomenę pagal savo hobius ar interesus."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Susikaupęs"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Draugai"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generuoti atkūrimo kodus"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generuojamas kvietimas…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Grįžti prie prisijungimo"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Prisijunkite prie testuotojų serverio"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Grupės pavadinimas"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Sveiki!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Pagrindinis"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Patvirtinu, kad man daugiau nei 18 metų."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Pasitraukęs"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Nematomumas"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Pakvieskite visus savo draugus, keletą šaunių botų ir pasilinksminkite."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kvietimo kodas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Kviesti kitus"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Kviečiantysis"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Kvietimai"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Eiti į dabartį"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Eiti į pradžią"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Išmesti"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Išmesti narį"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Išmesti narius"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Kalba"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Naujausi"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Išeiti"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Išeiti iš grupės"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Išeiti iš serverio"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Pateikite atsiliepimą, kad galėtume tobulinti mūsų programėlę."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Atsijungti"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Atsijungti nuo visų kitų sesijų"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Prisijungti"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Tvarkyti tinkinimą"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Tvarkyti žinutes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Tvarkyti pravardes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Tvarkyti leidimus"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Tvarkyti vaidmenis"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Tvarkyti serverį"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Tvarkyti Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Pažymėti kaip skaitytą"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Pažymėti kaip neskaitytą"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskaradas"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Nariai"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Paminėti"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Tik paminėjimai"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Žinutė"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Žinutė neįkelta, spustelėkite, kad pereitumėte"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Žinutė gauta"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Žinutė išsiųsta"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Žinutė buvo išsiųsta kitoje platformoje"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Žinutės"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Perkelti narius"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Nutildyti narius"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Nutildytas"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Bendri draugai"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Bendros grupės"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mano paskyra"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mano botai"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Naujas slaptažodis"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Pravardė"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Jokių"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Pranešimai"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Išjungta"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Oficialus pranešimas"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Oficialus serveris"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Atsijungęs"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Gerai"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Seniausi"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Įjungta"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Panaikinus kelio atgal nėra."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Prisijungęs"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Atidarykite nustatymus"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Apžvalga"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Slaptažodis"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Leidimai"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Pasirinkite naudotojo vardą, pagal kurį jus galėtų rasti žmonės. Jis galės būti pakeistas naudotojo nustatymuose."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Patvirtinkite šį veiksmą pasirinktu būdu."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Įveskite el. pašto adresą."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Išsaugokite juos saugioje vietoje."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Nuskaitykite arba panaudokite žemiau esantį raktą autentifikavimo programėlėje."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Pasirinkite užklausos autentifikavimo būdą."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privatumo politika"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profilis"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Peržiūrėti žinučių istoriją"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Priežastis"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Atkūrimo kodas"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registruotis"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Atmesti draugo prašymą"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Aktualūs"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Šalinti autentifikatorių"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Šalinti avatarus"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Šalinti iš draugų"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Atsakyti"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Atsakoma"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Skųstis"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Skųstis žinute"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Skųstis serveriu"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Skųstis naudotoju"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Iš naujo siųsti patvirtinimą"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Atkurti"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Atkurti slaptažodį"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Vaidmens pavadinimas"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Vaidmenys"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Išsaugoti"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Išsaugoti į savo užrašus"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Išsaugoti užrašai"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Pasirinkite kalbą"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Siųsti įterpimus"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Siųsti žinutes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Išsiųstas priedas"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Išsiųsti keli priedai"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Serverio aprašymas"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Serverio pavadinimas"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesijos"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Nustatymai"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Rašo keli žmonės…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Garsai"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Pirminis kodas"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Kalbėjimas"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Pateikti funkcijos pasiūlymą"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Pateikti atsiliepimą"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Paremkite projektą paaukodami – ačiū!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Naudojimo sąlygos"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Teksto kanalas"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Tai yra jūsų pokalbio pradžia."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Tai yra jūsų užrašų pradžia."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Šis naudotojas jus užblokavo."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Sulaikyti narius"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Atblokuoti naudotoją"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Įkelti failus"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Naudotojas"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Naudotojas prisijungė prie skambučio"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Naudotojas paliko skambutį"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Naudotojų valdymas"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Naudotojo nustatymai"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Naudotojo vardas"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Patvirtinama jūsų paskyra…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Vaizdo įrašai"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Peržiūrėti kanalą"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Peržiūrėkite šiuo metu aktyvius klaidų pranešimus čia."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Rodyti senesnius naujinimus"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Rodyti atkūrimo kodus"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Rodomos senesnės žinutės"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Balso kanalas"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Mes išsiuntėme patvirtinimo el. laišką. Gali užtrukti iki 10 minučių, kol jį gausite."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Internetiniai Kabliukai"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Sveiki atvykę į"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Sveiki!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Taip pat galite spustelėti dešinįjį pelės klavišą ant naudotojo piktogramos arba kairįjį, jei jau esate pagrindiniame puslapyje."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Vėliau galėsite jį vėl atidaryti, bet jis išnyks iš abiejų pusių."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Galite pranešti apie problemas ir aptarti patobulinimus su mumis tiesiogiai čia."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Šis veiksmas yra negrįžtamas."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Neturite leidimo siųsti žinučių šiame kanale."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Negalėsite prisijungti prie savo paskyros, nebent susisieksite su palaikymu – jūsų duomenys nebus panaikinti."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Negalėsite sugrįžti, nebent kas nors jus pakvies."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Jūsų paskyra patvirtinta!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Jūsų atkūrimo kodai"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/lv/messages.js b/components/i18n/catalogs/lv/messages.js
new file mode 100644
index 0000000..d12c5ce
--- /dev/null
+++ b/components/i18n/catalogs/lv/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Klusināts\"],\"+YFgJi\":[\"Nozīmes\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Atzīmēt kā lasītu\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Izveidot jaunu lomu\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Izrakstieties no visām pārējām sesijām\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Izvēlieties lietotājvārdu, pēc kura vēlaties, lai cilvēki varētu jūs atrast. To var mainīt vēlāk jūsu lietotāja iestatījumos.\"],\"/qQDwm\":[\"Izveido ielūgumu…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Ziņot par ziņojumu\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Sūtīt atsauksmes\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopēt ziņas ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Pamest grupu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Šeit vari ziņot par problēmām uz pārrunāt uzlabojumus ar mums.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloķētie\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nevarēsi atkal pievienoties, ja tevi neuzlūgs.\"],\"3QuNUr\":[\"Vairāki cilvēki raksta…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Jau esi draugos ar šo lietotāju.\"],\"3T8ziB\":[\"Izveidot kontu\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesijas\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Iesauka\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Izvēlies savu valodu\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Atrodi kopienu ar līdzīgiem hobijiem un interesēm.\"],\"572q5a\":[\"Ziņot par lietotāju\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Atzīmēt kā nelasītu\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Mainīt iesauku\"],\"5dJK4M\":[\"Lomas\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Pārskats\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Bezsaistē\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Lietotājs\"],\"7SU2U9\":[\"Kopēt servera ID\"],\"7VpPHA\":[\"Apstiprināt\"],\"7dZnmw\":[\"Pēc atbilstības\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Lietotājvārds\"],\"7vhWI8\":[\"Jauna parole\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Pārvaldīt serveri\"],\"8FE4JE\":[\"Iespējot autentifikācijas lietotni\"],\"8VGnad\":[\"Izveidot piekļuves atgūšanas kodus\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Parole\"],\"8aTiea\":[\"Pielāgošana\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ievadi vēlamo lietotājvārdu.\"],\"9D85wC\":[\"Kopēt lietotāja ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Atļaujas\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Pastāvīgi izraidīt\"],\"9nffag\":[\"Redzamas vecākas ziņas\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Atcelt lietotāja bloķēšanu\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Izveidot grupu\"],\"A9Rhec\":[\"Kanāla vārds\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Ievadi jaunu paroli.\"],\"AU7IRi\":[\"Teksta kanāls\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Balss kanāls\"],\"BHsrDx\":[\"Uzaicinājumi\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Ziņa tika nosūtīta citā platformā\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Skatīt kanālu\"],\"CK7kdd\":[\"Notīrīt statusu\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanāla apraksts\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Sūtīt ziņas\"],\"CkIs/i\":[\"Izslēgt dalībniekiem mikrofonu\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Pašreizējā parole\"],\"DDpDsO\":[\"Ielūguma kods\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiālā saziņa\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Gatavs\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Ziņojums nav ielādēts, noklikšķiniet, lai pārietu\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Ieteikt jaunu funkcijas\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Noņemt\"],\"EdQY6l\":[\"Neviens\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Sarunas\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Nosūtīja pielikumu\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Izveidot kategoriju\"],\"F1uGNS\":[\"Pārvaldīt iesaukas\"],\"FEr96N\":[\"Motīvs\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Noņemt avatārus\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Iespējot darbvirsmas paziņojumus\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokusēt\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopēt kanāla ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Kopīgās grupas\"],\"GhCPk1\":[\"Izdzēšanai atpakaļceļa nav.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ievadi pašreizējo paroli.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Lūdzu izvēlies sistēmu, ar ko autentificēt savu pieprasījumu.\"],\"HAKBY9\":[\"Augšuplādēt failus\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saglabātās piezīmes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Sūtīt verifikācijas saiti vēlreiz\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Pārvietot dalībniekus\"],\"ImOQa9\":[\"Atbildēt\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Nosūtīja vairākus pielikumus\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Konta dzēšana nav iespējama līdz serveri netiek dzēsti vai pārnēsāti\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Apstiprināt darbību\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Skatīt vecākus atjauninājumus\"],\"JUJmXm\":[\"Lūdzu, apstipriniet šo darbību, izmantojot atlasīto metodi.\"],\"JW8mxK\":[\"Saglabāt savās piezīmēs\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Laipni lūgts\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Vari arī veikt labo klikšķi uz lietotāja ikonas augšējā kreisajā stūri, vai arī, ja jau esi sākumā – ar kreiso klikšķi.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Dzēst ziņu\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Saturs pārkāpj vienu vai vairākus likumus\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Skaņas\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiālais serveris\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Atsaukt draudzību\"],\"LcET2C\":[\"Privātuma politika\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lūdzu gaidiet līdz 10 minūtēm, lai atnāktu verifikācijas ēpasts.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servera nosaukums\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Pamest\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Skati aktīvos kļūdu ziņojumus šeit.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Pastāsti, kā mēs varam uzlabot mūsu lietotni, sniedzot mums atsauksmes.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Jūsu konts ir verificēts!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-pasta adrese\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Tev nav atļaujas sūtīt ziņas šajā kanālā.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Atiestatīt\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Noraidīt draudzības pieprasījumu\"],\"PSP1MZ\":[\"Lomas nosaukums\"],\"PWOA0E\":[\"Tikai pieminējumi\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Sūtīt ietverto saturu\"],\"PnzsrT\":[\"Avota kods\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Doties uz jaunākajām ziņām\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Brīvs\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Mainīt ziņu\"],\"QqoBlW\":[\"Pārbaudi savu e-pastu!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Atiestatīt paroli\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Kļūdu Meklētājs\"],\"S3bIKF\":[\"Kopēt ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Lūdzu, skenē vai ievadi zemāk esošo kodu savā autentifikācijas lietotnē.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Noņemt autentificētāju\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Pārvaldīt ziņas\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Pārvaldīt lomas\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Iestatījumi\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Uzaicini savus draugus un foršus robotus, un sāciet ballīti.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Mainīt avatāru\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Ziņa aizsūtīta\"],\"VJScHU\":[\"Iemesls\"],\"VKsaTi\":[\"Raksta atbildi\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Izslēgt dalībnieku klausuli\"],\"VsHxv+\":[\"Kopēt tekstu\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Notiek jūsu konta verificēšana…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Saites uz citām lapām var būt bīstamas!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klienta iestatījumi\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentifikācijas lietotne\"],\"YcVBkL\":[\"Ziņa saņemta\"],\"YirHq7\":[\"Atsauksmes\"],\"YlFpiA\":[\"Neizdevās verificēt!\"],\"Yp+Hi/\":[\"Atvērt iestatījumus\"],\"Z5HWHd\":[\"Ieslēgts\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Tavi piekļuves atgūšanas kodi\"],\"aAIQg2\":[\"Izskats\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Šo darbību nav iespējams atsaukt.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Izslēgts\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Atspējot kontu\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lasīt ziņa vēsture\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Pastāvīgi izraidīt dalībnieku\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Pārvaldīt atļaujas\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Ielūguma sūtītājs\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Dzēst\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Atcelt\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Izveidot robotu\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Ielūgt citus\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Neredzams\"],\"ekfzWq\":[\"Lietotāja iestatījumi\"],\"etgedT\":[\"Emocijzīmes\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Pārvaldīt pielāgošanu\"],\"fTMMeD\":[\"Izveidot ielūgumu\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Reģistrēties\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Atcelt draudzības pieprasījumu\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Piešķirt lomas\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Ziņot par pārkāpumu\"],\"gkBHk/\":[\"Izveidot kanālu\"],\"gkmjYT\":[\"Pamest serveri\"],\"go1IWB\":[\"Šis lietotājs tevi nobloķēja.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Dzēst kanālu\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Lūdzu, ievadiet savu e-pasta adresi.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Izveidot\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Sākums\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Savienot\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Pieminēšana\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robots\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Atgriezties ienākšanas lapā\"],\"jpJ5AL\":[\"Piekļuves atgūšanas kods\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatārs\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Laipni lūdzam!\"],\"knjY+b\":[\"Varat to atvērt vēlāk, taču tas pazudīs no abām pusēm.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Pievienot draugu\"],\"lSGjX7\":[\"Lietotājs pievienojās zvanam\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanāli\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupas nosaukums\"],\"mAYvqA\":[\"Sveiki!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Rediģējiet savu identitāti\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Jūs nevarēsiet piekļūt savam kontam, ja vien sazināsieties ar palīdzību - tomēr jūsu dati netiks dzēsti.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Pielāgots statuss\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Kopīgie draugi\"],\"nbzz1A\":[\"Ievadīt kodu\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Šis ir tavu piezīmju sākums.\"],\"o+XJ9D\":[\"Mainīt\"],\"oB4OOq\":[\"Pastāvīgi izraidīt dalībniekus\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Tiešsaistē\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Noņemt dalībniekus\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Noklusējums\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Iziet\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Doties uz sākumu\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Lietotājs atstāja zvanu\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mans konts\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Visas ziņas\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 cilvēks reaģēja\"],\"rxaY+5\":[\"Netraucēt\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Papildu\"],\"t43mBk\":[\"Ziņot par serveri\"],\"tBmnPU\":[\"Draugi\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Pārvaldīt Webhooks\"],\"tdTuUv\":[\"Bloķēt lietotāju\"],\"tfDRzk\":[\"Saglabāt\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Bloķēts lietotājs\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Doties uz testētāju serveri\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Noņemt dalībnieku\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Dzēst lomu\"],\"utrCh2\":[\"Īslaicīga dalībnieku bloķēšana\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Par\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Servera apraksts\"],\"v1kQyJ\":[\"Tīmekļa aizķeres\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profils\"],\"vJum3e\":[\"Atbalsti projektu ziedojot – paldies!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Mainīt identitāti\"],\"vXIe7J\":[\"Valoda\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Lūdzu, glabā tos drošā vietā.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Ziņapmaiņa\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Ienākt kanālā\"],\"wL3cK8\":[\"Jaunākās\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Dalībnieki\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskēties\"],\"xDAtGP\":[\"Ziņa\"],\"xGVfLh\":[\"Turpināt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Pastāvīgi izraidītie\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Lietošanas noteikumi\"],\"xpgPPI\":[\"Mani roboti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Pieņemiet draudzības pieprasījumu\"],\"y1eoq1\":[\"Kopēt saiti\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Apstiprinu, ka esmu vismaz 18 gadus vecs.\"],\"yDOdwQ\":[\"Lietotāju pārvaldība\"],\"yIBLq8\":[\"Runājiet\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Aizvērt\"],\"z0hW8A\":[\"Skatīt atgūšanas kodus\"],\"z0t9bb\":[\"Pieteikties\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Labi\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Šis ir tavas sarunas sākums.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vecākās\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/lv/messages.mjs b/components/i18n/catalogs/lv/messages.mjs
new file mode 100644
index 0000000..f87b0bf
--- /dev/null
+++ b/components/i18n/catalogs/lv/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Klusināts\"],\"+YFgJi\":[\"Nozīmes\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Atzīmēt kā lasītu\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Izveidot jaunu lomu\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Izrakstieties no visām pārējām sesijām\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Izvēlieties lietotājvārdu, pēc kura vēlaties, lai cilvēki varētu jūs atrast. To var mainīt vēlāk jūsu lietotāja iestatījumos.\"],\"/qQDwm\":[\"Izveido ielūgumu…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Ziņot par ziņojumu\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Sūtīt atsauksmes\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopēt ziņas ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Pamest grupu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Šeit vari ziņot par problēmām uz pārrunāt uzlabojumus ar mums.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloķētie\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nevarēsi atkal pievienoties, ja tevi neuzlūgs.\"],\"3QuNUr\":[\"Vairāki cilvēki raksta…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Jau esi draugos ar šo lietotāju.\"],\"3T8ziB\":[\"Izveidot kontu\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesijas\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Iesauka\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Izvēlies savu valodu\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Atrodi kopienu ar līdzīgiem hobijiem un interesēm.\"],\"572q5a\":[\"Ziņot par lietotāju\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Atzīmēt kā nelasītu\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Mainīt iesauku\"],\"5dJK4M\":[\"Lomas\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Pārskats\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Bezsaistē\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Lietotājs\"],\"7SU2U9\":[\"Kopēt servera ID\"],\"7VpPHA\":[\"Apstiprināt\"],\"7dZnmw\":[\"Pēc atbilstības\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Lietotājvārds\"],\"7vhWI8\":[\"Jauna parole\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Pārvaldīt serveri\"],\"8FE4JE\":[\"Iespējot autentifikācijas lietotni\"],\"8VGnad\":[\"Izveidot piekļuves atgūšanas kodus\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Parole\"],\"8aTiea\":[\"Pielāgošana\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Ievadi vēlamo lietotājvārdu.\"],\"9D85wC\":[\"Kopēt lietotāja ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Atļaujas\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Pastāvīgi izraidīt\"],\"9nffag\":[\"Redzamas vecākas ziņas\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Atcelt lietotāja bloķēšanu\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Izveidot grupu\"],\"A9Rhec\":[\"Kanāla vārds\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Ievadi jaunu paroli.\"],\"AU7IRi\":[\"Teksta kanāls\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Balss kanāls\"],\"BHsrDx\":[\"Uzaicinājumi\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Ziņa tika nosūtīta citā platformā\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Skatīt kanālu\"],\"CK7kdd\":[\"Notīrīt statusu\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanāla apraksts\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Sūtīt ziņas\"],\"CkIs/i\":[\"Izslēgt dalībniekiem mikrofonu\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Pašreizējā parole\"],\"DDpDsO\":[\"Ielūguma kods\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiālā saziņa\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Gatavs\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Ziņojums nav ielādēts, noklikšķiniet, lai pārietu\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Ieteikt jaunu funkcijas\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Noņemt\"],\"EdQY6l\":[\"Neviens\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Sarunas\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Nosūtīja pielikumu\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Izveidot kategoriju\"],\"F1uGNS\":[\"Pārvaldīt iesaukas\"],\"FEr96N\":[\"Motīvs\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Noņemt avatārus\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Iespējot darbvirsmas paziņojumus\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokusēt\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopēt kanāla ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Kopīgās grupas\"],\"GhCPk1\":[\"Izdzēšanai atpakaļceļa nav.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ievadi pašreizējo paroli.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Lūdzu izvēlies sistēmu, ar ko autentificēt savu pieprasījumu.\"],\"HAKBY9\":[\"Augšuplādēt failus\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Saglabātās piezīmes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Sūtīt verifikācijas saiti vēlreiz\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Pārvietot dalībniekus\"],\"ImOQa9\":[\"Atbildēt\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Nosūtīja vairākus pielikumus\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Konta dzēšana nav iespējama līdz serveri netiek dzēsti vai pārnēsāti\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Apstiprināt darbību\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Skatīt vecākus atjauninājumus\"],\"JUJmXm\":[\"Lūdzu, apstipriniet šo darbību, izmantojot atlasīto metodi.\"],\"JW8mxK\":[\"Saglabāt savās piezīmēs\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Laipni lūgts\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Vari arī veikt labo klikšķi uz lietotāja ikonas augšējā kreisajā stūri, vai arī, ja jau esi sākumā – ar kreiso klikšķi.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Dzēst ziņu\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Saturs pārkāpj vienu vai vairākus likumus\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Skaņas\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiālais serveris\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Atsaukt draudzību\"],\"LcET2C\":[\"Privātuma politika\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lūdzu gaidiet līdz 10 minūtēm, lai atnāktu verifikācijas ēpasts.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servera nosaukums\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Pamest\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Skati aktīvos kļūdu ziņojumus šeit.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Pastāsti, kā mēs varam uzlabot mūsu lietotni, sniedzot mums atsauksmes.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Jūsu konts ir verificēts!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-pasta adrese\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Tev nav atļaujas sūtīt ziņas šajā kanālā.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Atiestatīt\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Noraidīt draudzības pieprasījumu\"],\"PSP1MZ\":[\"Lomas nosaukums\"],\"PWOA0E\":[\"Tikai pieminējumi\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Sūtīt ietverto saturu\"],\"PnzsrT\":[\"Avota kods\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Doties uz jaunākajām ziņām\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Brīvs\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Mainīt ziņu\"],\"QqoBlW\":[\"Pārbaudi savu e-pastu!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Atiestatīt paroli\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Kļūdu Meklētājs\"],\"S3bIKF\":[\"Kopēt ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Lūdzu, skenē vai ievadi zemāk esošo kodu savā autentifikācijas lietotnē.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Noņemt autentificētāju\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Pārvaldīt ziņas\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Pārvaldīt lomas\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Iestatījumi\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Uzaicini savus draugus un foršus robotus, un sāciet ballīti.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Mainīt avatāru\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Ziņa aizsūtīta\"],\"VJScHU\":[\"Iemesls\"],\"VKsaTi\":[\"Raksta atbildi\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Izslēgt dalībnieku klausuli\"],\"VsHxv+\":[\"Kopēt tekstu\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Notiek jūsu konta verificēšana…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Saites uz citām lapām var būt bīstamas!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klienta iestatījumi\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentifikācijas lietotne\"],\"YcVBkL\":[\"Ziņa saņemta\"],\"YirHq7\":[\"Atsauksmes\"],\"YlFpiA\":[\"Neizdevās verificēt!\"],\"Yp+Hi/\":[\"Atvērt iestatījumus\"],\"Z5HWHd\":[\"Ieslēgts\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Tavi piekļuves atgūšanas kodi\"],\"aAIQg2\":[\"Izskats\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Šo darbību nav iespējams atsaukt.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Izslēgts\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Atspējot kontu\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lasīt ziņa vēsture\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Pastāvīgi izraidīt dalībnieku\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Pārvaldīt atļaujas\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Ielūguma sūtītājs\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Dzēst\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Atcelt\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Izveidot robotu\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Ielūgt citus\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Neredzams\"],\"ekfzWq\":[\"Lietotāja iestatījumi\"],\"etgedT\":[\"Emocijzīmes\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Pārvaldīt pielāgošanu\"],\"fTMMeD\":[\"Izveidot ielūgumu\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Reģistrēties\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Atcelt draudzības pieprasījumu\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Piešķirt lomas\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Ziņot par pārkāpumu\"],\"gkBHk/\":[\"Izveidot kanālu\"],\"gkmjYT\":[\"Pamest serveri\"],\"go1IWB\":[\"Šis lietotājs tevi nobloķēja.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Dzēst kanālu\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Lūdzu, ievadiet savu e-pasta adresi.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Izveidot\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Sākums\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Savienot\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Pieminēšana\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robots\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Atgriezties ienākšanas lapā\"],\"jpJ5AL\":[\"Piekļuves atgūšanas kods\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatārs\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Laipni lūdzam!\"],\"knjY+b\":[\"Varat to atvērt vēlāk, taču tas pazudīs no abām pusēm.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Pievienot draugu\"],\"lSGjX7\":[\"Lietotājs pievienojās zvanam\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanāli\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Grupas nosaukums\"],\"mAYvqA\":[\"Sveiki!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Rediģējiet savu identitāti\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Jūs nevarēsiet piekļūt savam kontam, ja vien sazināsieties ar palīdzību - tomēr jūsu dati netiks dzēsti.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Pielāgots statuss\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Kopīgie draugi\"],\"nbzz1A\":[\"Ievadīt kodu\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Šis ir tavu piezīmju sākums.\"],\"o+XJ9D\":[\"Mainīt\"],\"oB4OOq\":[\"Pastāvīgi izraidīt dalībniekus\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Tiešsaistē\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Noņemt dalībniekus\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Noklusējums\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Iziet\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Doties uz sākumu\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Lietotājs atstāja zvanu\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mans konts\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Visas ziņas\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 cilvēks reaģēja\"],\"rxaY+5\":[\"Netraucēt\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Papildu\"],\"t43mBk\":[\"Ziņot par serveri\"],\"tBmnPU\":[\"Draugi\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Pārvaldīt Webhooks\"],\"tdTuUv\":[\"Bloķēt lietotāju\"],\"tfDRzk\":[\"Saglabāt\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Bloķēts lietotājs\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Doties uz testētāju serveri\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Noņemt dalībnieku\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Dzēst lomu\"],\"utrCh2\":[\"Īslaicīga dalībnieku bloķēšana\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Par\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Servera apraksts\"],\"v1kQyJ\":[\"Tīmekļa aizķeres\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profils\"],\"vJum3e\":[\"Atbalsti projektu ziedojot – paldies!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Mainīt identitāti\"],\"vXIe7J\":[\"Valoda\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Lūdzu, glabā tos drošā vietā.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Ziņapmaiņa\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Ienākt kanālā\"],\"wL3cK8\":[\"Jaunākās\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Dalībnieki\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskēties\"],\"xDAtGP\":[\"Ziņa\"],\"xGVfLh\":[\"Turpināt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Pastāvīgi izraidītie\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Lietošanas noteikumi\"],\"xpgPPI\":[\"Mani roboti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Pieņemiet draudzības pieprasījumu\"],\"y1eoq1\":[\"Kopēt saiti\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Apstiprinu, ka esmu vismaz 18 gadus vecs.\"],\"yDOdwQ\":[\"Lietotāju pārvaldība\"],\"yIBLq8\":[\"Runājiet\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Aizvērt\"],\"z0hW8A\":[\"Skatīt atgūšanas kodus\"],\"z0t9bb\":[\"Pieteikties\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Labi\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Šis ir tavas sarunas sākums.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vecākās\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/lv/messages.po b/components/i18n/catalogs/lv/messages.po
new file mode 100644
index 0000000..9f3513d
--- /dev/null
+++ b/components/i18n/catalogs/lv/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: lv\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 cilvēks reaģēja"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Par"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Pieņemiet draudzības pieprasījumu"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Pievienot draugu"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Papildu"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Visas ziņas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Jau esi draugos ar šo lietotāju."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Izskats"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Piešķirt lomas"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Autentifikācijas lietotne"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatārs"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Nozīmes"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Pastāvīgi izraidīt"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Pastāvīgi izraidīt dalībnieku"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Pastāvīgi izraidīt dalībniekus"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Pastāvīgi izraidītie"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloķēt lietotāju"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloķētie"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Bloķēts lietotājs"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robots"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Kļūdu Meklētājs"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Atcelt"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Atcelt draudzības pieprasījumu"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Konta dzēšana nav iespējama līdz serveri netiek dzēsti vai pārnēsāti"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Mainīt"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Mainīt avatāru"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Mainīt iesauku"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanāla apraksts"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanāla vārds"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanāli"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Pārbaudi savu e-pastu!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Notīrīt statusu"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Klienta iestatījumi"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Aizvērt"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Apstiprināt"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Apstiprināt darbību"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Savienot"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Saturs pārkāpj vienu vai vairākus likumus"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Turpināt"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Sarunas"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopēt kanāla ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopēt ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopēt saiti"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopēt ziņas ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopēt servera ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopēt tekstu"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopēt lietotāja ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Izveidot"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Izveidot grupu"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Izveidot robotu"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Izveidot jaunu lomu"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Izveidot kontu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Izveidot kategoriju"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Izveidot kanālu"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Izveidot ielūgumu"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Pašreizējā parole"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Pielāgots statuss"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Pielāgošana"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Izslēgt dalībnieku klausuli"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Noklusējums"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Dzēst"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Dzēst kanālu"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Dzēst ziņu"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Dzēst lomu"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Atspējot kontu"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Netraucēt"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Gatavs"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Mainīt identitāti"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Mainīt ziņu"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Rediģējiet savu identitāti"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-pasta adrese"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emocijzīmes"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Iespējot autentifikācijas lietotni"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Iespējot darbvirsmas paziņojumus"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Ievadi jaunu paroli."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Ienākt kanālā"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Ievadīt kodu"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Ievadi pašreizējo paroli."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Ievadi vēlamo lietotājvārdu."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Saites uz citām lapām var būt bīstamas!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Neizdevās verificēt!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Atsauksmes"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Atrodi kopienu ar līdzīgiem hobijiem un interesēm."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokusēt"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Draugi"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Izveidot piekļuves atgūšanas kodus"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Izveido ielūgumu…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Atgriezties ienākšanas lapā"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Doties uz testētāju serveri"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Grupas nosaukums"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Sveiki!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Sākums"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Apstiprinu, ka esmu vismaz 18 gadus vecs."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Brīvs"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Neredzams"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Uzaicini savus draugus un foršus robotus, un sāciet ballīti."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Ielūguma kods"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Ielūgt citus"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Ielūguma sūtītājs"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Uzaicinājumi"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Doties uz jaunākajām ziņām"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Doties uz sākumu"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Noņemt"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Noņemt dalībnieku"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Noņemt dalībniekus"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Valoda"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Jaunākās"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Pamest"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Pamest grupu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Pamest serveri"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Pastāsti, kā mēs varam uzlabot mūsu lietotni, sniedzot mums atsauksmes."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Iziet"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Izrakstieties no visām pārējām sesijām"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Pieteikties"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Pārvaldīt pielāgošanu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Pārvaldīt ziņas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Pārvaldīt iesaukas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Pārvaldīt atļaujas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Pārvaldīt lomas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Pārvaldīt serveri"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Pārvaldīt Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Atzīmēt kā lasītu"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Atzīmēt kā nelasītu"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskēties"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Dalībnieki"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Pieminēšana"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Tikai pieminējumi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Ziņa"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Ziņojums nav ielādēts, noklikšķiniet, lai pārietu"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Ziņa saņemta"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Ziņa aizsūtīta"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Ziņa tika nosūtīta citā platformā"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Ziņapmaiņa"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Pārvietot dalībniekus"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Izslēgt dalībniekiem mikrofonu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Klusināts"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Kopīgie draugi"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Kopīgās grupas"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mans konts"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mani roboti"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Jauna parole"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Iesauka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Neviens"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Paziņojumi"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Izslēgts"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Oficiālā saziņa"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Oficiālais serveris"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Bezsaistē"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Labi"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Vecākās"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Ieslēgts"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Izdzēšanai atpakaļceļa nav."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Tiešsaistē"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Atvērt iestatījumus"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Pārskats"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Parole"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Atļaujas"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Izvēlieties lietotājvārdu, pēc kura vēlaties, lai cilvēki varētu jūs atrast. To var mainīt vēlāk jūsu lietotāja iestatījumos."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Lūdzu, apstipriniet šo darbību, izmantojot atlasīto metodi."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Lūdzu, ievadiet savu e-pasta adresi."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Lūdzu, glabā tos drošā vietā."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Lūdzu, skenē vai ievadi zemāk esošo kodu savā autentifikācijas lietotnē."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Lūdzu izvēlies sistēmu, ar ko autentificēt savu pieprasījumu."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privātuma politika"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profils"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Lasīt ziņa vēsture"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Iemesls"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Piekļuves atgūšanas kods"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Reģistrēties"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Noraidīt draudzības pieprasījumu"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Pēc atbilstības"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Noņemt autentificētāju"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Noņemt avatārus"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Atsaukt draudzību"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Atbildēt"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Raksta atbildi"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Ziņot par pārkāpumu"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Ziņot par ziņojumu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Ziņot par serveri"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Ziņot par lietotāju"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Sūtīt verifikācijas saiti vēlreiz"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Atiestatīt"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Atiestatīt paroli"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Lomas nosaukums"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Lomas"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Saglabāt"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Saglabāt savās piezīmēs"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Saglabātās piezīmes"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Izvēlies savu valodu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Sūtīt ietverto saturu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Sūtīt ziņas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Nosūtīja pielikumu"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Nosūtīja vairākus pielikumus"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Servera apraksts"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Servera nosaukums"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesijas"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Iestatījumi"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Vairāki cilvēki raksta…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Skaņas"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Avota kods"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Runājiet"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Ieteikt jaunu funkcijas"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Sūtīt atsauksmes"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Atbalsti projektu ziedojot – paldies!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Lietošanas noteikumi"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Teksta kanāls"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Motīvs"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Šis ir tavas sarunas sākums."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Šis ir tavu piezīmju sākums."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Šis lietotājs tevi nobloķēja."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Īslaicīga dalībnieku bloķēšana"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Atcelt lietotāja bloķēšanu"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Augšuplādēt failus"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Lietotājs"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Lietotājs pievienojās zvanam"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Lietotājs atstāja zvanu"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Lietotāju pārvaldība"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Lietotāja iestatījumi"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Lietotājvārds"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Notiek jūsu konta verificēšana…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Skatīt kanālu"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Skati aktīvos kļūdu ziņojumus šeit."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Skatīt vecākus atjauninājumus"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Skatīt atgūšanas kodus"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Redzamas vecākas ziņas"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Balss kanāls"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Lūdzu gaidiet līdz 10 minūtēm, lai atnāktu verifikācijas ēpasts."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Tīmekļa aizķeres"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Laipni lūgts"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Laipni lūdzam!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Vari arī veikt labo klikšķi uz lietotāja ikonas augšējā kreisajā stūri, vai arī, ja jau esi sākumā – ar kreiso klikšķi."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Varat to atvērt vēlāk, taču tas pazudīs no abām pusēm."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Šeit vari ziņot par problēmām uz pārrunāt uzlabojumus ar mums."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Šo darbību nav iespējams atsaukt."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Tev nav atļaujas sūtīt ziņas šajā kanālā."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Jūs nevarēsiet piekļūt savam kontam, ja vien sazināsieties ar palīdzību - tomēr jūsu dati netiks dzēsti."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nevarēsi atkal pievienoties, ja tevi neuzlūgs."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Jūsu konts ir verificēts!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Tavi piekļuves atgūšanas kodi"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/mk/messages.js b/components/i18n/catalogs/mk/messages.js
new file mode 100644
index 0000000..edd975f
--- /dev/null
+++ b/components/i18n/catalogs/mk/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Исклучен звук\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Придружете се на серверот за тестирање.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Неколку луѓе пишуваат…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Креирај сметка\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Најдете заедница заснована на вашите хоби или интереси.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Офлајн\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Релевантност\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Корисничко име\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Лозинка\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Внеси корисничко име.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Гледате постари пораки\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Креирај група\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Текст канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Гласовен канал\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Сегашна лозинка\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Ниту еден\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Разговори\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Испрати прилог\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Внеси ја сегашната лозинка.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Зачувани белешки\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Препрати верификација.\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Испрати повеќе прилози\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Зачувајте на вашите белешки\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Можете исто така да кликнете со десното копче на иконата на корисникот во горниот лев агол или да кликнете лево на неа ако сте веќе дома.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Политика за приватност\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ве молиме дозволете 10 минути да пристигне.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Кажете ни како можеме да ја подобриме нашата апликација со давање повратни информации.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Епошта\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Немате дозвола да испраќате пораки во овој канал.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Само спомнувања\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Скокни до сегашноста\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактивен\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Провери си го е-маилот.\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ресетирај лозинка.\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Поставки\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Поканете ги сите ваши пријатели, неколку кул ботови и организирајте голема забава.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Одговарајќи на\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Поставки на клиентот\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Отвори поставки\"],\"Z5HWHd\":[\"Вклучено\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Исклучено\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидлив\"],\"ekfzWq\":[\"Кориснички поставки\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Регистрирај се\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Внесете ја вашата епошта.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Дома\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Врати се на најава.\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добредојде назад!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Канали\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Име на групата\"],\"mAYvqA\":[\"Здраво!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ова е почеток на вашите белешки.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Онлајн\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Скокни на почеток\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Сите пораки\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Не вознемирувај\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Другари\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Блокиран корисник\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"За\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Опис на серверот\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Поддржете го проектот со донирање - ви благодариме!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Внесете канал\"],\"wL3cK8\":[\"Најнови\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Услови за услуга\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Потврдувам дека имам најмалку 18 години.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Логирај Се\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ова е почетокот на вашиот разговор.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Најстар\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/mk/messages.mjs b/components/i18n/catalogs/mk/messages.mjs
new file mode 100644
index 0000000..b54d6d9
--- /dev/null
+++ b/components/i18n/catalogs/mk/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Исклучен звук\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out of all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Придружете се на серверот за тестирање.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"Неколку луѓе пишуваат…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"Креирај сметка\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select your language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Најдете заедница заснована на вашите хоби или интереси.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Офлајн\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Релевантност\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Корисничко име\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Лозинка\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Внеси корисничко име.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Гледате постари пораки\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Креирај група\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"Текст канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Гласовен канал\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Сегашна лозинка\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Ниту еден\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Разговори\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Испрати прилог\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enable Desktop Notifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Внеси ја сегашната лозинка.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Зачувани белешки\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Препрати верификација.\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Испрати повеќе прилози\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"Зачувајте на вашите белешки\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Можете исто така да кликнете со десното копче на иконата на корисникот во горниот лев агол или да кликнете лево на неа ако сте веќе дома.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"Политика за приватност\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ве молиме дозволете 10 минути да пристигне.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Кажете ни како можеме да ја подобриме нашата апликација со давање повратни информации.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Епошта\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Немате дозвола да испраќате пораки во овој канал.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Само спомнувања\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Source Code\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Скокни до сегашноста\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактивен\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Провери си го е-маилот.\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ресетирај лозинка.\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remove Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Поставки\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Поканете ги сите ваши пријатели, неколку кул ботови и организирајте голема забава.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Одговарајќи на\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Поставки на клиентот\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"Message Received\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"Отвори поставки\"],\"Z5HWHd\":[\"Вклучено\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"Appearance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Исклучено\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disable Account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидлив\"],\"ekfzWq\":[\"Кориснички поставки\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Регистрирај се\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Внесете ја вашата епошта.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Дома\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Врати се на најава.\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добредојде назад!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"User Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Канали\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Име на групата\"],\"mAYvqA\":[\"Здраво!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ова е почеток на вашите белешки.\"],\"o+XJ9D\":[\"Change\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Онлајн\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Default\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Скокни на почеток\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"User Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"My Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Сите пораки\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Не вознемирувај\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Другари\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Блокиран корисник\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go to the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"За\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Опис на серверот\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Поддржете го проектот со донирање - ви благодариме!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Language\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Внесете канал\"],\"wL3cK8\":[\"Најнови\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Услови за услуга\"],\"xpgPPI\":[\"My Bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Потврдувам дека имам најмалку 18 години.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"Логирај Се\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ова е почетокот на вашиот разговор.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Најстар\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/mk/messages.po b/components/i18n/catalogs/mk/messages.po
new file mode 100644
index 0000000..3a87c6b
--- /dev/null
+++ b/components/i18n/catalogs/mk/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: mk\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "За"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Сите пораки"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr ""
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Блокиран корисник"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "бот"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr ""
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Канали"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Провери си го е-маилот."
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Поставки на клиентот"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Разговори"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Креирај група"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr ""
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Креирај сметка"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Сегашна лозинка"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Не вознемирувај"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Епошта"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Внесете канал"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Внеси ја сегашната лозинка."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Внеси корисничко име."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Најдете заедница заснована на вашите хоби или интереси."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Другари"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Врати се на најава."
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Име на групата"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Здраво!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Дома"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Потврдувам дека имам најмалку 18 години."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Неактивен"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Невидлив"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Поканете ги сите ваши пријатели, неколку кул ботови и организирајте голема забава."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Скокни до сегашноста"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Скокни на почеток"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Најнови"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Кажете ни како можеме да ја подобриме нашата апликација со давање повратни информации."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Логирај Се"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Само спомнувања"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Исклучен звук"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr ""
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ниту еден"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Исклучено"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Офлајн"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Најстар"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Вклучено"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Онлајн"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Отвори поставки"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Лозинка"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Внесете ја вашата епошта."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Политика за приватност"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Регистрирај се"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Релевантност"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Одговарајќи на"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Препрати верификација."
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Ресетирај лозинка."
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Зачувајте на вашите белешки"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Зачувани белешки"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Испрати прилог"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Испрати повеќе прилози"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Опис на серверот"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Поставки"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Неколку луѓе пишуваат…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Поддржете го проектот со донирање - ви благодариме!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Услови за услуга"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Текст канал"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Ова е почетокот на вашиот разговор."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Ова е почеток на вашите белешки."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr ""
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Кориснички поставки"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Корисничко име"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Гледате постари пораки"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Гласовен канал"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Ве молиме дозволете 10 минути да пристигне."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Добредојде назад!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Можете исто така да кликнете со десното копче на иконата на корисникот во горниот лев агол или да кликнете лево на неа ако сте веќе дома."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Придружете се на серверот за тестирање."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Немате дозвола да испраќате пораки во овој канал."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ms/messages.js b/components/i18n/catalogs/ms/messages.js
new file mode 100644
index 0000000..f1f9757
--- /dev/null
+++ b/components/i18n/catalogs/ms/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Disenyapkan\"],\"+YFgJi\":[\"Lencana\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"tanda sebagai telah dibaca\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Cipta peranan baru\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log keluar dari semua sesi lain\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pilih nama pengguna yang anda mahukan untuk orang lain mengenal anda, ini boleh diubah kemudian dalam tetapan.\"],\"/qQDwm\":[\"Menjana jemputan…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Laporkan mesej\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Hantar maklum balas\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Salin ID mesej\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Keluar grup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Anda boleh melaporkan isu dan membincangkan penambahbaikan dengan kami terus di sini.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Disekat\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Anda tidak akan dapat menyertai semula kecuali anda dijemput semula.\"],\"3QuNUr\":[\"Beberapa orang sedang menaip…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Sudah berakan dengan pengguna ini.\"],\"3T8ziB\":[\"Cipta Akaun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesi\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nama samaran\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Pilih bahasa anda\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Cari komuniti berdasarkan hobi atau minat anda.\"],\"572q5a\":[\"Laporan pengguna\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"tanda sebagai tidak dibaca\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Tukar Nama Panggilan\"],\"5dJK4M\":[\"Peranan\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Gambaran keseluruhan\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Di Luar Talian\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Pengguna\"],\"7SU2U9\":[\"Salin ID server\"],\"7VpPHA\":[\"sahkan\"],\"7dZnmw\":[\"Perkaitan\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nama pengguna\"],\"7vhWI8\":[\"Kata Laluan Baharu\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Urus Server\"],\"8FE4JE\":[\"Dayakan aplikasi pengesah\"],\"8VGnad\":[\"Hasilkan Kod Pemulihan\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Kata laluan\"],\"8aTiea\":[\"Penyesuaian\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Masukkan nama pengguna pilihan anda.\"],\"9D85wC\":[\"Salin ID pengguna\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Kebenaran\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Larang\"],\"9nffag\":[\"Melihat mesej lama\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"nyahsekat pengguna\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Cipta grup\"],\"A9Rhec\":[\"Nama Saluran\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Masukkan Kata Laluan Baharu.\"],\"AU7IRi\":[\"Saluran Teks\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Saluran Suara\"],\"BHsrDx\":[\"Jemputan\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesej telah dihantar pada platform lain\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Lihat Saluran\"],\"CK7kdd\":[\"Kosongkan status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Penerangan Saluran\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Hantar Mesej\"],\"CkIs/i\":[\"Redam Ahli\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Kata Laluan Semasa\"],\"DDpDsO\":[\"Kod Jemputan\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Komunikasi rasmi\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Selesai\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesej tidak dimuatkan, klik untuk melompat\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Hantar cadangan ciri\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Tendang\"],\"EdQY6l\":[\"Tiada\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Perbualan\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"menghantar lampiran\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Cipta kategori\"],\"F1uGNS\":[\"Urus Nama Panggilan\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Keluarkan Avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Dayakan Pemberitahuan Desktop.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Salin ID saluran\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grup Bersama\"],\"GhCPk1\":[\"Setelah dipadamkan, tidak akan ada jalan kembali.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Masukkan kata laluan semasa anda.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Sila pilih kaedah untuk mengesahkan permintaan anda.\"],\"HAKBY9\":[\"Muat naik fail\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Simpanan Nota\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Hantar semula pengesahan\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Pindah Ahli\"],\"ImOQa9\":[\"Balas\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Menghantar beberapa lampiran\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Sahkan tindakan\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Lihat kemas kini yang lebih lama\"],\"JUJmXm\":[\"Sila sahkan menggunakan kaedah yang dipilih.\"],\"JW8mxK\":[\"Simpan ke nota anda\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Selamat datang ke\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Anda juga boleh mengklik kanan ikon pengguna di bahagian atas sebelah kiri, atau klik kiri jika anda sudah berada di rumah.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Padam mesej\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Kandungan melanggar satu atau lebih undang-undang\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Bunyi\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Pelayan Rasmi\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Buang rakan\"],\"LcET2C\":[\"Dasar Privasi\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Kami telah menghantar e-mel pengesahan. Sila tunggu sehingga 10 minit untuk sampai.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nama Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Keluar\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Lihat laporan pepijat yang sedang aktif di sini.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Beritahu kami cara kami boleh menambah baik aplikasi kami dengan memberi maklum balas kepada kami.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Akaun anda telah disahkan!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mel\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Anda tidak mempunyai kebenaran untuk menghantar mesej di saluran ini.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Tetapkan semula\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Nama Peranan\"],\"PWOA0E\":[\"Sebutan Sahaja\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Hantar Benam\"],\"PnzsrT\":[\"Kod sumber\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Lompat ke semasa\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Diam\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Ubah mesej\"],\"QqoBlW\":[\"Semak e-mel anda!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Tetap semula kata laluan\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Penjejak Bug\"],\"S3bIKF\":[\"Salin ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Sila imbas atau gunakan token di bawah dalam aplikasi pengesahan anda.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Buang Pengesah\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Urus Mesej\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Urus Peranan\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Tetapan\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Jemput semua rakan anda, beberapa bot yang hebat, dan buat parti besar-besaran.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Tukar Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesej dihantar\"],\"VJScHU\":[\"Sebab\"],\"VKsaTi\":[\"Membalas kepada\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Pekak ahli\"],\"VsHxv+\":[\"Salin teks\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Mengesahkan akaun anda…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Pautan luaran boleh membahayakan!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Tetapan Klien\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikasi pengesah\"],\"YcVBkL\":[\"Mesej diterima\"],\"YirHq7\":[\"Maklum balas\"],\"YlFpiA\":[\"Gagal mengesahkan!\"],\"Yp+Hi/\":[\"Buka Tetapan\"],\"Z5HWHd\":[\"Hidup\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Kod pemulihan anda\"],\"aAIQg2\":[\"Penampilan\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Anda tidak boleh membuat asal tindakan ini.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Mati\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Lumpuhkan Akaun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Baca Sejarah Mesej\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban ahli\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Urus Kebenaran\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Penjemput\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Padam\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Batal\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Mencipta bot baharu\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Jemput Orang Lain\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Tak terlihat\"],\"ekfzWq\":[\"Tetapan Pengguna\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Urus Penyesuaian\"],\"fTMMeD\":[\"Cipta jemputan\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Daftar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Batal permintaan\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Berikan Peranan\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Lapor\"],\"gkBHk/\":[\"Cipta saluran\"],\"gkmjYT\":[\"Keluar server\"],\"go1IWB\":[\"Pengguna ini telah menyekat anda.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Hapus saluran\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Masukkan e-mel anda.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Cipta\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Utama\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Sambung\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Sebut\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Kembali ke log masuk\"],\"jpJ5AL\":[\"Kod pemulihan\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Selamat Datang!\"],\"knjY+b\":[\"Anda boleh membukanya semula tetapi ia akan hilang di kedua-dua belah pihak.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Tambah rakan\"],\"lSGjX7\":[\"Pengguna Menyertai Panggilan\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Saluran\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nama Grup\"],\"mAYvqA\":[\"Hai!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Anda tidak dibenarkan untuk mengakses akaun anda melainkan anda hubungi support - Walaubagaimanapun, data anda tidak akan dipadam.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status khas\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Rakan bersama\"],\"nbzz1A\":[\"Masukkan kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ini adalah permulaan nota anda.\"],\"o+XJ9D\":[\"Tukar\"],\"oB4OOq\":[\"Ban Ahli\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Dalam Talian\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Tendang Ahli\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Lalai\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Keluar\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Lompat ke permulaan\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Pengguna Keluar Panggilan\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Akaun Saya\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Semua Mesej\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Jangan Ganggu\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Pelayan laporan\"],\"tBmnPU\":[\"Rakan\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Urus Webhooks\"],\"tdTuUv\":[\"Sekat pengguna\"],\"tfDRzk\":[\"Simpan\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Pengguna yang disekat\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pergi ke server penguji\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Tendang ahli\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Padam Peranan\"],\"utrCh2\":[\"tamat masa ahli\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Mengenai\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Penerangan server\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Sokong projek dengan menderma - terima kasih!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Ubah identiti\"],\"vXIe7J\":[\"Bahasa\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Sila simpan ini ke lokasi yang selamat.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Masuk Saluran\"],\"wL3cK8\":[\"Terkini\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Ahli\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"menyamar\"],\"xDAtGP\":[\"Mesej\"],\"xGVfLh\":[\"Teruskan\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Ban\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Syarat Perkhidmatan\"],\"xpgPPI\":[\"Bot Saya\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Salin pautan\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Saya mengesahkan bahawa saya berumur sekurang-kurangnya 18 tahun.\"],\"yDOdwQ\":[\"Pengurusan pengguna\"],\"yIBLq8\":[\"Cakap\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Tutup\"],\"z0hW8A\":[\"Lihat kod pemulihan\"],\"z0t9bb\":[\"Log masuk\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ini adalah permulaan perbualan anda.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Tertua\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ms/messages.mjs b/components/i18n/catalogs/ms/messages.mjs
new file mode 100644
index 0000000..1d19606
--- /dev/null
+++ b/components/i18n/catalogs/ms/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Disenyapkan\"],\"+YFgJi\":[\"Lencana\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"tanda sebagai telah dibaca\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Cipta peranan baru\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log keluar dari semua sesi lain\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pilih nama pengguna yang anda mahukan untuk orang lain mengenal anda, ini boleh diubah kemudian dalam tetapan.\"],\"/qQDwm\":[\"Menjana jemputan…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Laporkan mesej\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Hantar maklum balas\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Salin ID mesej\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Keluar grup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Anda boleh melaporkan isu dan membincangkan penambahbaikan dengan kami terus di sini.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Disekat\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Anda tidak akan dapat menyertai semula kecuali anda dijemput semula.\"],\"3QuNUr\":[\"Beberapa orang sedang menaip…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Sudah berakan dengan pengguna ini.\"],\"3T8ziB\":[\"Cipta Akaun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesi\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nama samaran\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Pilih bahasa anda\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Cari komuniti berdasarkan hobi atau minat anda.\"],\"572q5a\":[\"Laporan pengguna\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"tanda sebagai tidak dibaca\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Tukar Nama Panggilan\"],\"5dJK4M\":[\"Peranan\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Gambaran keseluruhan\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Di Luar Talian\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Pengguna\"],\"7SU2U9\":[\"Salin ID server\"],\"7VpPHA\":[\"sahkan\"],\"7dZnmw\":[\"Perkaitan\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nama pengguna\"],\"7vhWI8\":[\"Kata Laluan Baharu\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Urus Server\"],\"8FE4JE\":[\"Dayakan aplikasi pengesah\"],\"8VGnad\":[\"Hasilkan Kod Pemulihan\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Kata laluan\"],\"8aTiea\":[\"Penyesuaian\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Masukkan nama pengguna pilihan anda.\"],\"9D85wC\":[\"Salin ID pengguna\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Kebenaran\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Larang\"],\"9nffag\":[\"Melihat mesej lama\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"nyahsekat pengguna\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Cipta grup\"],\"A9Rhec\":[\"Nama Saluran\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Masukkan Kata Laluan Baharu.\"],\"AU7IRi\":[\"Saluran Teks\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Saluran Suara\"],\"BHsrDx\":[\"Jemputan\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesej telah dihantar pada platform lain\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Lihat Saluran\"],\"CK7kdd\":[\"Kosongkan status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Penerangan Saluran\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Hantar Mesej\"],\"CkIs/i\":[\"Redam Ahli\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Kata Laluan Semasa\"],\"DDpDsO\":[\"Kod Jemputan\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Komunikasi rasmi\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Selesai\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesej tidak dimuatkan, klik untuk melompat\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Hantar cadangan ciri\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Tendang\"],\"EdQY6l\":[\"Tiada\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Perbualan\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"menghantar lampiran\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Cipta kategori\"],\"F1uGNS\":[\"Urus Nama Panggilan\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Keluarkan Avatar\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Dayakan Pemberitahuan Desktop.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Salin ID saluran\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grup Bersama\"],\"GhCPk1\":[\"Setelah dipadamkan, tidak akan ada jalan kembali.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Masukkan kata laluan semasa anda.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Sila pilih kaedah untuk mengesahkan permintaan anda.\"],\"HAKBY9\":[\"Muat naik fail\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Simpanan Nota\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Hantar semula pengesahan\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Pindah Ahli\"],\"ImOQa9\":[\"Balas\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Menghantar beberapa lampiran\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Sahkan tindakan\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Lihat kemas kini yang lebih lama\"],\"JUJmXm\":[\"Sila sahkan menggunakan kaedah yang dipilih.\"],\"JW8mxK\":[\"Simpan ke nota anda\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Selamat datang ke\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Anda juga boleh mengklik kanan ikon pengguna di bahagian atas sebelah kiri, atau klik kiri jika anda sudah berada di rumah.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Padam mesej\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Kandungan melanggar satu atau lebih undang-undang\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Bunyi\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Pelayan Rasmi\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Buang rakan\"],\"LcET2C\":[\"Dasar Privasi\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Kami telah menghantar e-mel pengesahan. Sila tunggu sehingga 10 minit untuk sampai.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nama Server\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Keluar\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Lihat laporan pepijat yang sedang aktif di sini.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Beritahu kami cara kami boleh menambah baik aplikasi kami dengan memberi maklum balas kepada kami.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Akaun anda telah disahkan!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mel\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Anda tidak mempunyai kebenaran untuk menghantar mesej di saluran ini.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Tetapkan semula\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Nama Peranan\"],\"PWOA0E\":[\"Sebutan Sahaja\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Hantar Benam\"],\"PnzsrT\":[\"Kod sumber\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Lompat ke semasa\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Diam\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Ubah mesej\"],\"QqoBlW\":[\"Semak e-mel anda!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Tetap semula kata laluan\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Penjejak Bug\"],\"S3bIKF\":[\"Salin ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Sila imbas atau gunakan token di bawah dalam aplikasi pengesahan anda.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Buang Pengesah\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Urus Mesej\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Urus Peranan\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Tetapan\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Jemput semua rakan anda, beberapa bot yang hebat, dan buat parti besar-besaran.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Tukar Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesej dihantar\"],\"VJScHU\":[\"Sebab\"],\"VKsaTi\":[\"Membalas kepada\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Pekak ahli\"],\"VsHxv+\":[\"Salin teks\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Mengesahkan akaun anda…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Pautan luaran boleh membahayakan!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Tetapan Klien\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikasi pengesah\"],\"YcVBkL\":[\"Mesej diterima\"],\"YirHq7\":[\"Maklum balas\"],\"YlFpiA\":[\"Gagal mengesahkan!\"],\"Yp+Hi/\":[\"Buka Tetapan\"],\"Z5HWHd\":[\"Hidup\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Kod pemulihan anda\"],\"aAIQg2\":[\"Penampilan\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Anda tidak boleh membuat asal tindakan ini.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Mati\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Lumpuhkan Akaun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Baca Sejarah Mesej\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban ahli\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Urus Kebenaran\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Penjemput\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Padam\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Batal\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Mencipta bot baharu\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Jemput Orang Lain\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Tak terlihat\"],\"ekfzWq\":[\"Tetapan Pengguna\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Urus Penyesuaian\"],\"fTMMeD\":[\"Cipta jemputan\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Daftar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Batal permintaan\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Berikan Peranan\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Lapor\"],\"gkBHk/\":[\"Cipta saluran\"],\"gkmjYT\":[\"Keluar server\"],\"go1IWB\":[\"Pengguna ini telah menyekat anda.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Hapus saluran\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Masukkan e-mel anda.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Cipta\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Utama\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Sambung\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Sebut\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Kembali ke log masuk\"],\"jpJ5AL\":[\"Kod pemulihan\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Selamat Datang!\"],\"knjY+b\":[\"Anda boleh membukanya semula tetapi ia akan hilang di kedua-dua belah pihak.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Tambah rakan\"],\"lSGjX7\":[\"Pengguna Menyertai Panggilan\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Saluran\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nama Grup\"],\"mAYvqA\":[\"Hai!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Anda tidak dibenarkan untuk mengakses akaun anda melainkan anda hubungi support - Walaubagaimanapun, data anda tidak akan dipadam.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status khas\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Rakan bersama\"],\"nbzz1A\":[\"Masukkan kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ini adalah permulaan nota anda.\"],\"o+XJ9D\":[\"Tukar\"],\"oB4OOq\":[\"Ban Ahli\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Dalam Talian\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Tendang Ahli\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Lalai\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Keluar\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Lompat ke permulaan\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Pengguna Keluar Panggilan\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Akaun Saya\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Semua Mesej\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"Jangan Ganggu\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Pelayan laporan\"],\"tBmnPU\":[\"Rakan\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Urus Webhooks\"],\"tdTuUv\":[\"Sekat pengguna\"],\"tfDRzk\":[\"Simpan\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Pengguna yang disekat\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pergi ke server penguji\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Tendang ahli\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Padam Peranan\"],\"utrCh2\":[\"tamat masa ahli\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Mengenai\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Penerangan server\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Sokong projek dengan menderma - terima kasih!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Ubah identiti\"],\"vXIe7J\":[\"Bahasa\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Sila simpan ini ke lokasi yang selamat.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Masuk Saluran\"],\"wL3cK8\":[\"Terkini\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Ahli\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"menyamar\"],\"xDAtGP\":[\"Mesej\"],\"xGVfLh\":[\"Teruskan\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Ban\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Syarat Perkhidmatan\"],\"xpgPPI\":[\"Bot Saya\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Salin pautan\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Saya mengesahkan bahawa saya berumur sekurang-kurangnya 18 tahun.\"],\"yDOdwQ\":[\"Pengurusan pengguna\"],\"yIBLq8\":[\"Cakap\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Tutup\"],\"z0hW8A\":[\"Lihat kod pemulihan\"],\"z0t9bb\":[\"Log masuk\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ini adalah permulaan perbualan anda.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Tertua\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ms/messages.po b/components/i18n/catalogs/ms/messages.po
new file mode 100644
index 0000000..9945256
--- /dev/null
+++ b/components/i18n/catalogs/ms/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ms\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Mengenai"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Tambah rakan"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Semua Mesej"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Sudah berakan dengan pengguna ini."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Penampilan"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Berikan Peranan"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplikasi pengesah"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Lencana"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Larang"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ban ahli"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Ban Ahli"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Ban"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Sekat pengguna"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Disekat"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Pengguna yang disekat"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "robot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Penjejak Bug"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Batal"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Batal permintaan"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Tukar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Tukar Avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Tukar Nama Panggilan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Penerangan Saluran"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nama Saluran"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Saluran"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Semak e-mel anda!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Kosongkan status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Tetapan Klien"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Tutup"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "sahkan"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Sahkan tindakan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Sambung"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Kandungan melanggar satu atau lebih undang-undang"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Teruskan"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Perbualan"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Salin ID saluran"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Salin ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Salin pautan"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Salin ID mesej"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Salin ID server"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Salin teks"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Salin ID pengguna"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Cipta"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Cipta grup"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Mencipta bot baharu"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Cipta peranan baru"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Cipta Akaun"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Cipta kategori"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Cipta saluran"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Cipta jemputan"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Kata Laluan Semasa"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Status khas"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Penyesuaian"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Pekak ahli"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Lalai"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Padam"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Hapus saluran"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Padam mesej"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Padam Peranan"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Lumpuhkan Akaun"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Jangan Ganggu"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Selesai"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Ubah identiti"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Ubah mesej"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-mel"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Dayakan aplikasi pengesah"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Dayakan Pemberitahuan Desktop."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Masukkan Kata Laluan Baharu."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Masuk Saluran"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Masukkan kod"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Masukkan kata laluan semasa anda."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Masukkan nama pengguna pilihan anda."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Pautan luaran boleh membahayakan!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Gagal mengesahkan!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Maklum balas"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Cari komuniti berdasarkan hobi atau minat anda."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Rakan"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Hasilkan Kod Pemulihan"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Menjana jemputan…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Kembali ke log masuk"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Pergi ke server penguji"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nama Grup"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hai!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Utama"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Saya mengesahkan bahawa saya berumur sekurang-kurangnya 18 tahun."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Diam"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Tak terlihat"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Jemput semua rakan anda, beberapa bot yang hebat, dan buat parti besar-besaran."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kod Jemputan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Jemput Orang Lain"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Penjemput"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Jemputan"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Lompat ke semasa"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Lompat ke permulaan"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Tendang"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Tendang ahli"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Tendang Ahli"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Bahasa"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Terkini"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Keluar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Keluar grup"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Keluar server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Beritahu kami cara kami boleh menambah baik aplikasi kami dengan memberi maklum balas kepada kami."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Log Keluar"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Log keluar dari semua sesi lain"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Log masuk"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Urus Penyesuaian"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Urus Mesej"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Urus Nama Panggilan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Urus Kebenaran"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Urus Peranan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Urus Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Urus Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "tanda sebagai telah dibaca"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "tanda sebagai tidak dibaca"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "menyamar"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Ahli"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Sebut"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Sebutan Sahaja"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Mesej"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mesej tidak dimuatkan, klik untuk melompat"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Mesej diterima"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mesej dihantar"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Mesej telah dihantar pada platform lain"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Pindah Ahli"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Redam Ahli"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Disenyapkan"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Rakan bersama"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grup Bersama"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Akaun Saya"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Bot Saya"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Kata Laluan Baharu"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Nama samaran"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Tiada"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Pemberitahuan"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Mati"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Komunikasi rasmi"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Pelayan Rasmi"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Di Luar Talian"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Tertua"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Hidup"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Setelah dipadamkan, tidak akan ada jalan kembali."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Dalam Talian"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Buka Tetapan"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Gambaran keseluruhan"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Kata laluan"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Kebenaran"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Pilih nama pengguna yang anda mahukan untuk orang lain mengenal anda, ini boleh diubah kemudian dalam tetapan."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Sila sahkan menggunakan kaedah yang dipilih."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Masukkan e-mel anda."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Sila simpan ini ke lokasi yang selamat."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Sila imbas atau gunakan token di bawah dalam aplikasi pengesahan anda."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Sila pilih kaedah untuk mengesahkan permintaan anda."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Dasar Privasi"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Baca Sejarah Mesej"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Sebab"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Kod pemulihan"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Daftar"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Perkaitan"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Buang Pengesah"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Keluarkan Avatar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Buang rakan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Balas"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Membalas kepada"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Lapor"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Laporkan mesej"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Pelayan laporan"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Laporan pengguna"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Hantar semula pengesahan"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Tetapkan semula"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Tetap semula kata laluan"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nama Peranan"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Peranan"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Simpan"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Simpan ke nota anda"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Simpanan Nota"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Pilih bahasa anda"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Hantar Benam"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Hantar Mesej"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "menghantar lampiran"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Menghantar beberapa lampiran"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Penerangan server"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nama Server"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesi"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Tetapan"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Beberapa orang sedang menaip…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Bunyi"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Kod sumber"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Cakap"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Hantar cadangan ciri"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Hantar maklum balas"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Sokong projek dengan menderma - terima kasih!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Syarat Perkhidmatan"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Saluran Teks"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Ini adalah permulaan perbualan anda."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Ini adalah permulaan nota anda."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Pengguna ini telah menyekat anda."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "tamat masa ahli"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "nyahsekat pengguna"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Muat naik fail"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Pengguna"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Pengguna Menyertai Panggilan"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Pengguna Keluar Panggilan"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Pengurusan pengguna"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Tetapan Pengguna"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nama pengguna"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Mengesahkan akaun anda…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Lihat Saluran"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Lihat laporan pepijat yang sedang aktif di sini."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Lihat kemas kini yang lebih lama"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Lihat kod pemulihan"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Melihat mesej lama"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Saluran Suara"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Kami telah menghantar e-mel pengesahan. Sila tunggu sehingga 10 minit untuk sampai."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Selamat datang ke"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Selamat Datang!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Anda juga boleh mengklik kanan ikon pengguna di bahagian atas sebelah kiri, atau klik kiri jika anda sudah berada di rumah."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Anda boleh membukanya semula tetapi ia akan hilang di kedua-dua belah pihak."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Anda boleh melaporkan isu dan membincangkan penambahbaikan dengan kami terus di sini."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Anda tidak boleh membuat asal tindakan ini."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Anda tidak mempunyai kebenaran untuk menghantar mesej di saluran ini."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Anda tidak dibenarkan untuk mengakses akaun anda melainkan anda hubungi support - Walaubagaimanapun, data anda tidak akan dipadam."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Anda tidak akan dapat menyertai semula kecuali anda dijemput semula."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Akaun anda telah disahkan!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Kod pemulihan anda"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/nb_NO/messages.js b/components/i18n/catalogs/nb_NO/messages.js
new file mode 100644
index 0000000..a9330ed
--- /dev/null
+++ b/components/i18n/catalogs/nb_NO/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Forstummet\"],\"+YFgJi\":[\"Merke\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marker som lest\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Opprett en ny rolle\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logg ut av alle andre økter\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Velg et brukernavn du ønsker at folk skal finne deg med. Dette kan endres senere i Brukerinnstillinger.\"],\"/qQDwm\":[\"Genererer invitasjon …\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Rapporter melding\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Send tilbakemelding\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopier meldings-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Forlat gruppe\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Du kan foreslå forbedringer og rapportere inn feil til oss her.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokkert\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du vil ikke kunne bli med igjen med mindre du inviteres igjen.\"],\"3QuNUr\":[\"Flere personer skriver…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Vennskap med denne brukeren er allerede etablert.\"],\"3T8ziB\":[\"Opprett en konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Økter\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Kallenavn\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Velg språket ditt\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Finn et fellesskap basert på dine hobbyer eller interesser.\"],\"572q5a\":[\"Rapporter bruker\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Merk som ulest\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Endre kallenavn\"],\"5dJK4M\":[\"Roller\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Oversikt\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Frakoblet\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Bruker\"],\"7SU2U9\":[\"Kopier server-ID\"],\"7VpPHA\":[\"Bekreft\"],\"7dZnmw\":[\"Relevans\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Brukernavn\"],\"7vhWI8\":[\"Nytt Passord\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrer server\"],\"8FE4JE\":[\"Aktiver autentiseringsappen\"],\"8VGnad\":[\"Generer Gjenopprettingskoder\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passord\"],\"8aTiea\":[\"Tilpasning\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Skriv inn det foretrukne brukernavnet ditt.\"],\"9D85wC\":[\"Kopier bruker-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Tilbakestillingstoken\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Tilganger\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bannlys\"],\"9nffag\":[\"Viser eldre meldinger\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Avblokker bruker\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Opprett en gruppe\"],\"A9Rhec\":[\"Kanalnavn\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Skriv inn et nytt passord.\"],\"AU7IRi\":[\"Tekstkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Talekanal\"],\"BHsrDx\":[\"Invitasjoner\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Melding var sendt på en annen platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vis kanal\"],\"CK7kdd\":[\"Tøm status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeskrivelse\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send meldinger\"],\"CkIs/i\":[\"Demp medlemmer\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nåværende passord\"],\"DDpDsO\":[\"Invitasjonskode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Offisiell kommunikasjon\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Ferdig\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Melding er ikke lastet, trykk for å hoppe\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Send inn funksjonsforslag\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kast ut\"],\"EdQY6l\":[\"Ingen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Samtaler\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sendte et vedlegg\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Opprett kategori\"],\"F1uGNS\":[\"Håndter kallenavn\"],\"FEr96N\":[\"Drakt\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Fjern avatarer\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Skru på skrivebordsvarsler\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopier kanal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Felles Grupper\"],\"GhCPk1\":[\"Når den er slettet er det ingen vei tilbake.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Skriv inn ditt nåværende passord.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vennligst velg en metode for å autentisere forespørselen din.\"],\"HAKBY9\":[\"Last opp Filer\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Lagrede Notater\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Send bekreftelse på nytt\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Flytt medlemmer\"],\"ImOQa9\":[\"Svar\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sendte flere vedlegg\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kan ikke slette konto før servere er slettet eller overført\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Bekreft handling\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vis eldre oppdateringer\"],\"JUJmXm\":[\"Vennligst bekreft denne handlingen med den valgte metoden.\"],\"JW8mxK\":[\"Lagre i notater\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Velkommen til\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kan også høyre-klikke bruker ikonet øverst til venstre, eller venstre klikk den hvis du er hjemme allerede.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Slett melding\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Innhold bryter en eller flere lover\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Lyder\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Offisiell Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Fjern venn\"],\"LcET2C\":[\"Personvern\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Vi har sent deg en bekreftelses-e-post. Det kan ta opptil 10 minutter før den kommer frem.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernavn\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Forlat\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Vis aktive feilrapporter her.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Fortell oss hvordan vi kan forbedre appen vår ved å gi oss en tilbakemelding.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Kontoen din er bekreftet!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-post\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du har ikke tilgang til å sende meldinger i denne kanalen.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Nullstille\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rollenavn\"],\"PWOA0E\":[\"Kun når nevnt\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send innbygginger\"],\"PnzsrT\":[\"Kildekode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Hopp til nåtid\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Rediger melding\"],\"QqoBlW\":[\"Sjekk e-posten din!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Tilbakestill passord\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Feilsporer\"],\"S3bIKF\":[\"Kopier ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Vennligst skann eller bruk tokenet nedenfor i autentiseringsappen din.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Fjern identitetsbekrefter\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Håndter meldinger\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Håndter roller\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Innstillinger\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inviter alle vennene dine, noen kule roboter, og ha en stor fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Endre avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Melding sendt\"],\"VJScHU\":[\"Grunnen\"],\"VKsaTi\":[\"Svarer\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Døve medlemmer\"],\"VsHxv+\":[\"Kopier tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Bekrefter kontoen din…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Eksterne lenker kan være farlige!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientinnstillinger\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentiseringsapp\"],\"YcVBkL\":[\"Melding mottatt\"],\"YirHq7\":[\"Tilbakemelding\"],\"YlFpiA\":[\"Kunne ikke bekrefte!\"],\"Yp+Hi/\":[\"Åpne innstillinger\"],\"Z5HWHd\":[\"På\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Dine gjenopprettingskoder\"],\"aAIQg2\":[\"Utseende\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Du kan ikke angre denne handlingen.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Av\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktiver konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Les meldingshistorikk\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bannlys medlem\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Administrer tillatelser\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Innbyder\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Slett\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Avbryt\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Opprett en ny bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviter andre\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Usynlig\"],\"ekfzWq\":[\"Brukerinnstillinger\"],\"etgedT\":[\"Emojier\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Administrer Tilpasning\"],\"fTMMeD\":[\"Opprett invitasjon\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrer\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Avbryt forespørsel\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Tildel roller\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapporter\"],\"gkBHk/\":[\"Opprett kanal\"],\"gkmjYT\":[\"Forlat server\"],\"go1IWB\":[\"Denne brukeren har blokkert deg.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Slett kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Skriv inn e-postadressen din.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Opprett\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hjem\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Merknader\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Koble\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Nevn\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Gå tilbake til innlogging\"],\"jpJ5AL\":[\"Gjenopprettingskode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Velkommen!\"],\"knjY+b\":[\"Du kan gjenåpne den senere, men den vil forsvinne på begge sider.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Legg til venn\"],\"lSGjX7\":[\"Bruker Ble Med i Samtalen\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaler\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppenavn\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du får ikke tilgang til kontoen din før du tar kontakt med brukerstøtte. Men vær trygg, dataene dine vil ikke bli slettet.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Egendefinert status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Felles Venner\"],\"nbzz1A\":[\"Oppgi Kode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dette er begynnelsen av notatene dine.\"],\"o+XJ9D\":[\"Endre\"],\"oB4OOq\":[\"Bannlys medlemmer\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Pålogget\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kast ut medlemmer\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Forvalg\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logg ut\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hopp til begynnelsen\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Bruker Forlot Samtalen\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Min konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle meldinger\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reagerte\"],\"rxaY+5\":[\"Ikke Forstyrr\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avansert\"],\"t43mBk\":[\"Rapporter server\"],\"tBmnPU\":[\"Venner\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Administrer Webhooks\"],\"tdTuUv\":[\"Blokker bruker\"],\"tfDRzk\":[\"Lagre\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokkert bruker\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gå til tester serveren\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kast ut medlem\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Slett rolle\"],\"utrCh2\":[\"Timeout-medlemmer\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Om oss\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeskrivelse\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Støtt prosjektet ved å donere - takk!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Rediger identitet\"],\"vXIe7J\":[\"Språk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Vennligst lagre disse på et trygt sted.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Gå inn i kanal\"],\"wL3cK8\":[\"Seneste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Medlemmer\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Utkledning\"],\"xDAtGP\":[\"Melding\"],\"xGVfLh\":[\"Fortsett\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bannlysninger\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Tjenestevilkår\"],\"xpgPPI\":[\"Mine Roboter\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopier lenke\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Jeg bekrefter at jeg er over 18 år gammel.\"],\"yDOdwQ\":[\"Bruker administrering\"],\"yIBLq8\":[\"Snakke\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Lukk\"],\"z0hW8A\":[\"Vis Gjenopprettingskoder\"],\"z0t9bb\":[\"Logg inn\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dette er starten på din samtale.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Eldste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/nb_NO/messages.mjs b/components/i18n/catalogs/nb_NO/messages.mjs
new file mode 100644
index 0000000..c24bf01
--- /dev/null
+++ b/components/i18n/catalogs/nb_NO/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Forstummet\"],\"+YFgJi\":[\"Merke\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marker som lest\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Opprett en ny rolle\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logg ut av alle andre økter\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Velg et brukernavn du ønsker at folk skal finne deg med. Dette kan endres senere i Brukerinnstillinger.\"],\"/qQDwm\":[\"Genererer invitasjon …\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Rapporter melding\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Send tilbakemelding\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopier meldings-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Forlat gruppe\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Du kan foreslå forbedringer og rapportere inn feil til oss her.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokkert\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du vil ikke kunne bli med igjen med mindre du inviteres igjen.\"],\"3QuNUr\":[\"Flere personer skriver…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Vennskap med denne brukeren er allerede etablert.\"],\"3T8ziB\":[\"Opprett en konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Økter\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Kallenavn\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Velg språket ditt\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Finn et fellesskap basert på dine hobbyer eller interesser.\"],\"572q5a\":[\"Rapporter bruker\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Merk som ulest\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Endre kallenavn\"],\"5dJK4M\":[\"Roller\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Oversikt\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Frakoblet\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Bruker\"],\"7SU2U9\":[\"Kopier server-ID\"],\"7VpPHA\":[\"Bekreft\"],\"7dZnmw\":[\"Relevans\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Brukernavn\"],\"7vhWI8\":[\"Nytt Passord\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Administrer server\"],\"8FE4JE\":[\"Aktiver autentiseringsappen\"],\"8VGnad\":[\"Generer Gjenopprettingskoder\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passord\"],\"8aTiea\":[\"Tilpasning\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Skriv inn det foretrukne brukernavnet ditt.\"],\"9D85wC\":[\"Kopier bruker-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Tilbakestillingstoken\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Tilganger\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bannlys\"],\"9nffag\":[\"Viser eldre meldinger\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Avblokker bruker\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Opprett en gruppe\"],\"A9Rhec\":[\"Kanalnavn\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Skriv inn et nytt passord.\"],\"AU7IRi\":[\"Tekstkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Talekanal\"],\"BHsrDx\":[\"Invitasjoner\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Melding var sendt på en annen platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vis kanal\"],\"CK7kdd\":[\"Tøm status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeskrivelse\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send meldinger\"],\"CkIs/i\":[\"Demp medlemmer\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nåværende passord\"],\"DDpDsO\":[\"Invitasjonskode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Offisiell kommunikasjon\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Ferdig\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Melding er ikke lastet, trykk for å hoppe\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Send inn funksjonsforslag\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kast ut\"],\"EdQY6l\":[\"Ingen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Samtaler\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sendte et vedlegg\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Opprett kategori\"],\"F1uGNS\":[\"Håndter kallenavn\"],\"FEr96N\":[\"Drakt\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Fjern avatarer\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Skru på skrivebordsvarsler\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopier kanal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Felles Grupper\"],\"GhCPk1\":[\"Når den er slettet er det ingen vei tilbake.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Skriv inn ditt nåværende passord.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vennligst velg en metode for å autentisere forespørselen din.\"],\"HAKBY9\":[\"Last opp Filer\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Lagrede Notater\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Send bekreftelse på nytt\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Flytt medlemmer\"],\"ImOQa9\":[\"Svar\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sendte flere vedlegg\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kan ikke slette konto før servere er slettet eller overført\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Bekreft handling\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vis eldre oppdateringer\"],\"JUJmXm\":[\"Vennligst bekreft denne handlingen med den valgte metoden.\"],\"JW8mxK\":[\"Lagre i notater\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Velkommen til\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kan også høyre-klikke bruker ikonet øverst til venstre, eller venstre klikk den hvis du er hjemme allerede.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Slett melding\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Innhold bryter en eller flere lover\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Lyder\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Offisiell Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Fjern venn\"],\"LcET2C\":[\"Personvern\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Vi har sent deg en bekreftelses-e-post. Det kan ta opptil 10 minutter før den kommer frem.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernavn\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Forlat\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Vis aktive feilrapporter her.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Fortell oss hvordan vi kan forbedre appen vår ved å gi oss en tilbakemelding.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Kontoen din er bekreftet!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-post\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du har ikke tilgang til å sende meldinger i denne kanalen.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Nullstille\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rollenavn\"],\"PWOA0E\":[\"Kun når nevnt\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send innbygginger\"],\"PnzsrT\":[\"Kildekode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Hopp til nåtid\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Rediger melding\"],\"QqoBlW\":[\"Sjekk e-posten din!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Tilbakestill passord\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Feilsporer\"],\"S3bIKF\":[\"Kopier ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Vennligst skann eller bruk tokenet nedenfor i autentiseringsappen din.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Fjern identitetsbekrefter\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Håndter meldinger\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Håndter roller\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Innstillinger\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inviter alle vennene dine, noen kule roboter, og ha en stor fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Endre avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Melding sendt\"],\"VJScHU\":[\"Grunnen\"],\"VKsaTi\":[\"Svarer\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Døve medlemmer\"],\"VsHxv+\":[\"Kopier tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Bekrefter kontoen din…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Eksterne lenker kan være farlige!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientinnstillinger\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentiseringsapp\"],\"YcVBkL\":[\"Melding mottatt\"],\"YirHq7\":[\"Tilbakemelding\"],\"YlFpiA\":[\"Kunne ikke bekrefte!\"],\"Yp+Hi/\":[\"Åpne innstillinger\"],\"Z5HWHd\":[\"På\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Dine gjenopprettingskoder\"],\"aAIQg2\":[\"Utseende\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Du kan ikke angre denne handlingen.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Av\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktiver konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Les meldingshistorikk\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bannlys medlem\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Administrer tillatelser\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Innbyder\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Slett\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Avbryt\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Opprett en ny bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviter andre\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Usynlig\"],\"ekfzWq\":[\"Brukerinnstillinger\"],\"etgedT\":[\"Emojier\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Administrer Tilpasning\"],\"fTMMeD\":[\"Opprett invitasjon\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrer\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Avbryt forespørsel\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Tildel roller\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapporter\"],\"gkBHk/\":[\"Opprett kanal\"],\"gkmjYT\":[\"Forlat server\"],\"go1IWB\":[\"Denne brukeren har blokkert deg.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Slett kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Skriv inn e-postadressen din.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Opprett\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hjem\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Merknader\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Koble\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Nevn\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Gå tilbake til innlogging\"],\"jpJ5AL\":[\"Gjenopprettingskode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Velkommen!\"],\"knjY+b\":[\"Du kan gjenåpne den senere, men den vil forsvinne på begge sider.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Legg til venn\"],\"lSGjX7\":[\"Bruker Ble Med i Samtalen\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaler\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppenavn\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du får ikke tilgang til kontoen din før du tar kontakt med brukerstøtte. Men vær trygg, dataene dine vil ikke bli slettet.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Egendefinert status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Felles Venner\"],\"nbzz1A\":[\"Oppgi Kode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dette er begynnelsen av notatene dine.\"],\"o+XJ9D\":[\"Endre\"],\"oB4OOq\":[\"Bannlys medlemmer\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Pålogget\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kast ut medlemmer\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Forvalg\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logg ut\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Hopp til begynnelsen\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Bruker Forlot Samtalen\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Min konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle meldinger\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reagerte\"],\"rxaY+5\":[\"Ikke Forstyrr\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avansert\"],\"t43mBk\":[\"Rapporter server\"],\"tBmnPU\":[\"Venner\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Administrer Webhooks\"],\"tdTuUv\":[\"Blokker bruker\"],\"tfDRzk\":[\"Lagre\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokkert bruker\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gå til tester serveren\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kast ut medlem\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Slett rolle\"],\"utrCh2\":[\"Timeout-medlemmer\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Om oss\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeskrivelse\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Støtt prosjektet ved å donere - takk!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Rediger identitet\"],\"vXIe7J\":[\"Språk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Vennligst lagre disse på et trygt sted.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Gå inn i kanal\"],\"wL3cK8\":[\"Seneste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Medlemmer\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Utkledning\"],\"xDAtGP\":[\"Melding\"],\"xGVfLh\":[\"Fortsett\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bannlysninger\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Tjenestevilkår\"],\"xpgPPI\":[\"Mine Roboter\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopier lenke\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Jeg bekrefter at jeg er over 18 år gammel.\"],\"yDOdwQ\":[\"Bruker administrering\"],\"yIBLq8\":[\"Snakke\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Lukk\"],\"z0hW8A\":[\"Vis Gjenopprettingskoder\"],\"z0t9bb\":[\"Logg inn\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dette er starten på din samtale.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Eldste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/nb_NO/messages.po b/components/i18n/catalogs/nb_NO/messages.po
new file mode 100644
index 0000000..48d1578
--- /dev/null
+++ b/components/i18n/catalogs/nb_NO/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: nb_NO\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 person reagerte"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Om oss"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Legg til venn"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avansert"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Alle meldinger"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Vennskap med denne brukeren er allerede etablert."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Utseende"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Tildel roller"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Autentiseringsapp"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Merke"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Bannlys"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Bannlys medlem"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Bannlys medlemmer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bannlysninger"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blokker bruker"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blokkert"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blokkert bruker"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Feilsporer"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Avbryt forespørsel"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Kan ikke slette konto før servere er slettet eller overført"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Endre"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Endre avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Endre kallenavn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanalbeskrivelse"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanalnavn"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanaler"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Sjekk e-posten din!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Tøm status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Klientinnstillinger"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Lukk"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Bekreft"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Bekreft handling"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Koble"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Innhold bryter en eller flere lover"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Fortsett"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Samtaler"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopier kanal-ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopier ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopier lenke"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopier meldings-ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopier server-ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopier tekst"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopier bruker-ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Opprett"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Opprett en gruppe"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Opprett en ny bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Opprett en ny rolle"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Opprett en konto"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Opprett kategori"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Opprett kanal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Opprett invitasjon"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Nåværende passord"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Egendefinert status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Tilpasning"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Døve medlemmer"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Forvalg"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Slett"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Slett kanal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Slett melding"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Slett rolle"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Deaktiver konto"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ikke Forstyrr"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Ferdig"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Rediger identitet"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Rediger melding"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-post"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojier"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Aktiver autentiseringsappen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Skru på skrivebordsvarsler"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Skriv inn et nytt passord."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Gå inn i kanal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Oppgi Kode"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Skriv inn ditt nåværende passord."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Skriv inn det foretrukne brukernavnet ditt."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Eksterne lenker kan være farlige!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Kunne ikke bekrefte!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Tilbakemelding"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Finn et fellesskap basert på dine hobbyer eller interesser."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Venner"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generer Gjenopprettingskoder"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Genererer invitasjon …"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Gå tilbake til innlogging"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Gå til tester serveren"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Gruppenavn"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hallo!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Hjem"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Jeg bekrefter at jeg er over 18 år gammel."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inaktiv"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Usynlig"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Inviter alle vennene dine, noen kule roboter, og ha en stor fest."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Invitasjonskode"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Inviter andre"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Innbyder"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitasjoner"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Hopp til nåtid"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Hopp til begynnelsen"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Kast ut"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Kast ut medlem"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kast ut medlemmer"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Språk"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Seneste"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Forlat"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Forlat gruppe"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Forlat server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Fortell oss hvordan vi kan forbedre appen vår ved å gi oss en tilbakemelding."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Logg ut"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Logg ut av alle andre økter"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Logg inn"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Administrer Tilpasning"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Håndter meldinger"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Håndter kallenavn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Administrer tillatelser"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Håndter roller"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Administrer server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Administrer Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marker som lest"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Merk som ulest"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Utkledning"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Medlemmer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Nevn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Kun når nevnt"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Melding"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Melding er ikke lastet, trykk for å hoppe"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Melding mottatt"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Melding sendt"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Melding var sendt på en annen platform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Flytt medlemmer"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Demp medlemmer"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Forstummet"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Felles Venner"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Felles Grupper"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Min konto"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mine Roboter"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nytt Passord"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Kallenavn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ingen"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Merknader"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Av"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Offisiell kommunikasjon"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Offisiell Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Frakoblet"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Eldste"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "På"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Når den er slettet er det ingen vei tilbake."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Pålogget"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Åpne innstillinger"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Oversikt"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Passord"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Tilganger"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Velg et brukernavn du ønsker at folk skal finne deg med. Dette kan endres senere i Brukerinnstillinger."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Vennligst bekreft denne handlingen med den valgte metoden."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Skriv inn e-postadressen din."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Vennligst lagre disse på et trygt sted."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Vennligst skann eller bruk tokenet nedenfor i autentiseringsappen din."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Vennligst velg en metode for å autentisere forespørselen din."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Personvern"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Les meldingshistorikk"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Grunnen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Gjenopprettingskode"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrer"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevans"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Fjern identitetsbekrefter"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Fjern avatarer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Fjern venn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Svar"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Svarer"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Rapporter"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Rapporter melding"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Rapporter server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Rapporter bruker"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Send bekreftelse på nytt"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Nullstille"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Tilbakestill passord"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Tilbakestillingstoken"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rollenavn"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roller"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Lagre"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Lagre i notater"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Lagrede Notater"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Velg språket ditt"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Send innbygginger"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Send meldinger"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Sendte et vedlegg"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Sendte flere vedlegg"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Serverbeskrivelse"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Servernavn"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Økter"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Innstillinger"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Flere personer skriver…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Lyder"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Kildekode"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Snakke"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Send inn funksjonsforslag"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Send tilbakemelding"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Støtt prosjektet ved å donere - takk!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Tjenestevilkår"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Tekstkanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Drakt"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Dette er starten på din samtale."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Dette er begynnelsen av notatene dine."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Denne brukeren har blokkert deg."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout-medlemmer"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Avblokker bruker"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Last opp Filer"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Bruker"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Bruker Ble Med i Samtalen"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Bruker Forlot Samtalen"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Bruker administrering"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Brukerinnstillinger"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Brukernavn"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Bekrefter kontoen din…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Vis kanal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Vis aktive feilrapporter her."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Vis eldre oppdateringer"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Vis Gjenopprettingskoder"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Viser eldre meldinger"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Talekanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Vi har sent deg en bekreftelses-e-post. Det kan ta opptil 10 minutter før den kommer frem."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Velkommen til"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Velkommen!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Du kan også høyre-klikke bruker ikonet øverst til venstre, eller venstre klikk den hvis du er hjemme allerede."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Du kan gjenåpne den senere, men den vil forsvinne på begge sider."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Du kan foreslå forbedringer og rapportere inn feil til oss her."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Du kan ikke angre denne handlingen."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Du har ikke tilgang til å sende meldinger i denne kanalen."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Du får ikke tilgang til kontoen din før du tar kontakt med brukerstøtte. Men vær trygg, dataene dine vil ikke bli slettet."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Du vil ikke kunne bli med igjen med mindre du inviteres igjen."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Kontoen din er bekreftet!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Dine gjenopprettingskoder"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/nl/messages.js b/components/i18n/catalogs/nl/messages.js
new file mode 100644
index 0000000..452e6a3
--- /dev/null
+++ b/components/i18n/catalogs/nl/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Gedempt\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markeren als gelezen\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Creëer een nieuwe rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Uitloggen bij alle andere sessies\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Kies een gebruikersnaam waarmee je wil dat mensen je kunnen vinden. Dit kan later in de gebruikersinstellingen worden gewijzigd.\"],\"/qQDwm\":[\"Uitnodiging genereren…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Meld bericht\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Feedback sturen\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopieer bericht-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Verlaat groep\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Je kan hier problemen melden en verbeteringen direct met ons bespreken.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Geblokkeerd\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Je kunt pas weer deelnemen als je opnieuw wordt uitgenodigd.\"],\"3QuNUr\":[\"Meerdere mensen zijn aan het typen…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Reeds bevriend met deze gebruiker.\"],\"3T8ziB\":[\"Maak een account aan\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessies\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Gebruikersnaam\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Selecteer je taal\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Vind een community gebaseerd op je hobby's of interesses.\"],\"572q5a\":[\"Meld gebruiker\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markeer als gelezen\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Verander Bijnaam\"],\"5dJK4M\":[\"Rollen\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Algemeen\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Gebruiker\"],\"7SU2U9\":[\"Kopieer server-ID\"],\"7VpPHA\":[\"Bevestigen\"],\"7dZnmw\":[\"Relevantie\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Gebruikersnaam\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Beheer Server\"],\"8FE4JE\":[\"Authenticator app inschakelen\"],\"8VGnad\":[\"Nieuwe backupcodes genereren\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Wachtwoord\"],\"8aTiea\":[\"Aanpassingen\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Voer je gewenste gebruikersnaam in.\"],\"9D85wC\":[\"Kopieer gebruikers-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Token Resetten\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissies\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Verban\"],\"9nffag\":[\"Je bekijkt oudere berichten\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblokkeer gebruiker\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Maak een groep aan\"],\"A9Rhec\":[\"Kanaal naam\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Voer een nieuw wachtwoord in.\"],\"AU7IRi\":[\"Tekstkanaal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Spraakkanaal\"],\"BHsrDx\":[\"Uitnodigingen\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Bericht is gestuurd op een ander platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Bekijk Kanaal\"],\"CK7kdd\":[\"Status wissen\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanaalbeschrijving\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Verstuur Berichten\"],\"CkIs/i\":[\"Microfoon van leden dempen\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Huidig wachtwoord\"],\"DDpDsO\":[\"Uitnodigingscode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officiële Communicatie\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Klaar\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Bericht niet geladen, klik om te springen\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Dien functie suggestie in\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Geen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Gesprekken\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Heeft een bijlage gestuurd\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Categorie aanmaken\"],\"F1uGNS\":[\"Beheer Bijnamen\"],\"FEr96N\":[\"Thema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Verwijder Pictogrammen\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Schakel Bureaubladmeldingen in\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopieer kanaal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gemeenschappelijke groepen\"],\"GhCPk1\":[\"Als het eenmaal is verwijderd, is er geen weg meer terug.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Voer je huidige wachtwoord in.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Kies een methode om uw verzoek te bevestigen.\"],\"HAKBY9\":[\"Bestanden Uploaden\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Opgeslagen notities\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Stuur verificatie opnieuw\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Leden verplaatsen\"],\"ImOQa9\":[\"Reageer\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Heeft meerdere bijlagen gestuurd\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Account kan niet worden verwijderd totdat servers zijn verwijderd of overgedragen\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Actie bevestigen\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Oudere updates bekijken\"],\"JUJmXm\":[\"Bevestig deze actie met de gekozen methode.\"],\"JW8mxK\":[\"Opslaan in jouw notities\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welkom bij\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Je kunt ook het gebruikersicoon aanklikken links vanboven, of met de linkermuisklik als je al op het thuismenu zit.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Verwijder bericht\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Inhoud breekt een of meerdere regels\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Geluiden\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiële server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Vriend verwijderen\"],\"LcET2C\":[\"Privacybeleid\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We hebben je een bevestigings-email verstuurd. Het kan tot 10 minuten duren voor deze aankomt.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernaam\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Verlaat\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Bekijk hier de momenteel actieve bugrapporten.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Laat ons weten hoe we onze app kunnen verbeteren door ons feedback te geven.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Je account is geverifiëerd!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Je bent niet gemachtigd om berichten te sturen in dit kanaal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Resetten\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Wijs vriendschapsverzoek af\"],\"PSP1MZ\":[\"Naam van de rol\"],\"PWOA0E\":[\"Alleen vermeldigen\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Embeds versturen\"],\"PnzsrT\":[\"Broncode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Naar nu springen\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Afwezig\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Bewerkt bericht\"],\"QqoBlW\":[\"Check je mailbox!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset wachtwoord\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bugtracker\"],\"S3bIKF\":[\"Kopieer ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Scan of gebruik de onderstaande token in uw authenticatie-app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Authenticator verwijderen\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Beheer Berichten\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Beheer Rollen\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Instellingen\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Nodig al je vrienden uit, een paar coole bots, en geef een groot feest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Verander Pictogram\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Bericht verzonden\"],\"VJScHU\":[\"Reden\"],\"VKsaTi\":[\"Reageren op\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Geluid van leden onhoorbaar maken\"],\"VsHxv+\":[\"Kopieer tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Account aan het verifiëren…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externe links kunnen gevaarlijk zijn!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client instellingen\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticatie-app\"],\"YcVBkL\":[\"Bericht ontvangen\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Verificatie mislukt!\"],\"Yp+Hi/\":[\"Instellingen openen\"],\"Z5HWHd\":[\"Aan\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Jouw herstelcodes\"],\"aAIQg2\":[\"Uiterlijk\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Je kanniet deze actie niet ongedaan maken.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Uit\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Account uitschakelen\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Berichtgeschiedenis lezen\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Verban lid\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Machtigingen Beheren\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Uitnodiger\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Verwijder\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annuleren\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Maak een nieuwe bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Verander Bijnaam\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Onzichtbaar\"],\"ekfzWq\":[\"Gebruikersinstellingen\"],\"etgedT\":[\"Emoji's\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Aanpassingen Beheren\"],\"fTMMeD\":[\"Creëer uitnodiging\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registreer\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annuleer vriendschapsverzoek\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Rollen Toewijzen\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapporteer\"],\"gkBHk/\":[\"Creëer kanaal\"],\"gkmjYT\":[\"Verlaat server\"],\"go1IWB\":[\"Deze gebruiker heeft je geblokkeerd.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Verwijder kanaal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Voer je e-mail in.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Creëer\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Verbinden\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Vermelding\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Ga terug naar het inlogscherm\"],\"jpJ5AL\":[\"Herstel code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profielfoto\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welkom terug!\"],\"knjY+b\":[\"Je kunt het later opnieuw openen, maar het zal aan beide kanten verdwijnen.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Vriend toevoegen\"],\"lSGjX7\":[\"Gebruiker is toegetreden tot het gesprek\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalen\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Groep naam\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Bewerk jouw identiteit\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Je zal geen toegang meer hebben tot je account tenzij je contact opneemt met support - maar je data zal niet verwijderd worden.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Aangepaste status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Gemeenschappelijke vrienden\"],\"nbzz1A\":[\"Voer Code In\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dit is het begin van je notities.\"],\"o+XJ9D\":[\"Veranderen\"],\"oB4OOq\":[\"Verban Leden\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Leden\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standaard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Uitloggen\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Terug naar het begin\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Gebruiker heeft het gesprek verlaten\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mijn Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle berichten\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persoon reageerde\"],\"rxaY+5\":[\"Niet storen\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Geavanceerd\"],\"t43mBk\":[\"Meld server\"],\"tBmnPU\":[\"Vrienden\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks Beheren\"],\"tdTuUv\":[\"Blokkeer gebruiker\"],\"tfDRzk\":[\"Opslaan\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Geblokkeerde gebruiker\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ga naar de testers-server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick lid\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Rol Verwijderen\"],\"utrCh2\":[\"Timeout leden\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Over\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server beschrijving\"],\"v1kQyJ\":[\"Webhaken\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profiel\"],\"vJum3e\":[\"Steun het project door te doneren - bedankt!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Bewerk identiteit\"],\"vXIe7J\":[\"Taal\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Sla deze op in een veilige locatie.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Berichten\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Neem deel aan kanaal\"],\"wL3cK8\":[\"Laatste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Leden\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerade\"],\"xDAtGP\":[\"Bericht\"],\"xGVfLh\":[\"Doorgaan\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Verbanningen\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Gebruikersovereenkomst\"],\"xpgPPI\":[\"Mijn bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accepteer vriendschapsverzoek\"],\"y1eoq1\":[\"Kopieer link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ik bevestig dat ik minstens 18 jaren oud ben.\"],\"yDOdwQ\":[\"Gebruiker beheer\"],\"yIBLq8\":[\"Spreken\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Sluiten\"],\"z0hW8A\":[\"Backupcodes bekijken\"],\"z0t9bb\":[\"Inloggen\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dit is het begin van je gesprek.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oudste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/nl/messages.mjs b/components/i18n/catalogs/nl/messages.mjs
new file mode 100644
index 0000000..4a43d3e
--- /dev/null
+++ b/components/i18n/catalogs/nl/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Gedempt\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markeren als gelezen\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Creëer een nieuwe rol\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Uitloggen bij alle andere sessies\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Kies een gebruikersnaam waarmee je wil dat mensen je kunnen vinden. Dit kan later in de gebruikersinstellingen worden gewijzigd.\"],\"/qQDwm\":[\"Uitnodiging genereren…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Meld bericht\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Feedback sturen\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopieer bericht-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Verlaat groep\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Je kan hier problemen melden en verbeteringen direct met ons bespreken.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Geblokkeerd\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Je kunt pas weer deelnemen als je opnieuw wordt uitgenodigd.\"],\"3QuNUr\":[\"Meerdere mensen zijn aan het typen…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Reeds bevriend met deze gebruiker.\"],\"3T8ziB\":[\"Maak een account aan\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessies\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Gebruikersnaam\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Selecteer je taal\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Vind een community gebaseerd op je hobby's of interesses.\"],\"572q5a\":[\"Meld gebruiker\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markeer als gelezen\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Verander Bijnaam\"],\"5dJK4M\":[\"Rollen\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Algemeen\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Gebruiker\"],\"7SU2U9\":[\"Kopieer server-ID\"],\"7VpPHA\":[\"Bevestigen\"],\"7dZnmw\":[\"Relevantie\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Gebruikersnaam\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Beheer Server\"],\"8FE4JE\":[\"Authenticator app inschakelen\"],\"8VGnad\":[\"Nieuwe backupcodes genereren\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Wachtwoord\"],\"8aTiea\":[\"Aanpassingen\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Voer je gewenste gebruikersnaam in.\"],\"9D85wC\":[\"Kopieer gebruikers-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Token Resetten\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissies\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Verban\"],\"9nffag\":[\"Je bekijkt oudere berichten\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblokkeer gebruiker\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Maak een groep aan\"],\"A9Rhec\":[\"Kanaal naam\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Voer een nieuw wachtwoord in.\"],\"AU7IRi\":[\"Tekstkanaal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Spraakkanaal\"],\"BHsrDx\":[\"Uitnodigingen\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Bericht is gestuurd op een ander platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Bekijk Kanaal\"],\"CK7kdd\":[\"Status wissen\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanaalbeschrijving\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Verstuur Berichten\"],\"CkIs/i\":[\"Microfoon van leden dempen\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Huidig wachtwoord\"],\"DDpDsO\":[\"Uitnodigingscode\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officiële Communicatie\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Klaar\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Bericht niet geladen, klik om te springen\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Dien functie suggestie in\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"Geen\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Gesprekken\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Heeft een bijlage gestuurd\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Categorie aanmaken\"],\"F1uGNS\":[\"Beheer Bijnamen\"],\"FEr96N\":[\"Thema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Verwijder Pictogrammen\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Schakel Bureaubladmeldingen in\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopieer kanaal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gemeenschappelijke groepen\"],\"GhCPk1\":[\"Als het eenmaal is verwijderd, is er geen weg meer terug.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Voer je huidige wachtwoord in.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Kies een methode om uw verzoek te bevestigen.\"],\"HAKBY9\":[\"Bestanden Uploaden\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Opgeslagen notities\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Stuur verificatie opnieuw\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Leden verplaatsen\"],\"ImOQa9\":[\"Reageer\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Heeft meerdere bijlagen gestuurd\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Account kan niet worden verwijderd totdat servers zijn verwijderd of overgedragen\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Actie bevestigen\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Oudere updates bekijken\"],\"JUJmXm\":[\"Bevestig deze actie met de gekozen methode.\"],\"JW8mxK\":[\"Opslaan in jouw notities\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welkom bij\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Je kunt ook het gebruikersicoon aanklikken links vanboven, of met de linkermuisklik als je al op het thuismenu zit.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Verwijder bericht\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Inhoud breekt een of meerdere regels\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Geluiden\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiële server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Vriend verwijderen\"],\"LcET2C\":[\"Privacybeleid\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We hebben je een bevestigings-email verstuurd. Het kan tot 10 minuten duren voor deze aankomt.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernaam\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Verlaat\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Bekijk hier de momenteel actieve bugrapporten.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Laat ons weten hoe we onze app kunnen verbeteren door ons feedback te geven.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Je account is geverifiëerd!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Je bent niet gemachtigd om berichten te sturen in dit kanaal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Resetten\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Wijs vriendschapsverzoek af\"],\"PSP1MZ\":[\"Naam van de rol\"],\"PWOA0E\":[\"Alleen vermeldigen\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Embeds versturen\"],\"PnzsrT\":[\"Broncode\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Naar nu springen\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Afwezig\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Bewerkt bericht\"],\"QqoBlW\":[\"Check je mailbox!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset wachtwoord\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bugtracker\"],\"S3bIKF\":[\"Kopieer ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Scan of gebruik de onderstaande token in uw authenticatie-app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Authenticator verwijderen\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Beheer Berichten\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Beheer Rollen\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Instellingen\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Nodig al je vrienden uit, een paar coole bots, en geef een groot feest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Verander Pictogram\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Bericht verzonden\"],\"VJScHU\":[\"Reden\"],\"VKsaTi\":[\"Reageren op\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Geluid van leden onhoorbaar maken\"],\"VsHxv+\":[\"Kopieer tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Account aan het verifiëren…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externe links kunnen gevaarlijk zijn!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client instellingen\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticatie-app\"],\"YcVBkL\":[\"Bericht ontvangen\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Verificatie mislukt!\"],\"Yp+Hi/\":[\"Instellingen openen\"],\"Z5HWHd\":[\"Aan\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Jouw herstelcodes\"],\"aAIQg2\":[\"Uiterlijk\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Je kanniet deze actie niet ongedaan maken.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Uit\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Account uitschakelen\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Berichtgeschiedenis lezen\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Verban lid\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Machtigingen Beheren\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Uitnodiger\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Verwijder\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Annuleren\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Maak een nieuwe bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Verander Bijnaam\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Onzichtbaar\"],\"ekfzWq\":[\"Gebruikersinstellingen\"],\"etgedT\":[\"Emoji's\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Aanpassingen Beheren\"],\"fTMMeD\":[\"Creëer uitnodiging\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registreer\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Annuleer vriendschapsverzoek\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Rollen Toewijzen\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapporteer\"],\"gkBHk/\":[\"Creëer kanaal\"],\"gkmjYT\":[\"Verlaat server\"],\"go1IWB\":[\"Deze gebruiker heeft je geblokkeerd.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Verwijder kanaal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Voer je e-mail in.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Creëer\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Home\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Verbinden\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Vermelding\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Ga terug naar het inlogscherm\"],\"jpJ5AL\":[\"Herstel code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Profielfoto\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Welkom terug!\"],\"knjY+b\":[\"Je kunt het later opnieuw openen, maar het zal aan beide kanten verdwijnen.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Vriend toevoegen\"],\"lSGjX7\":[\"Gebruiker is toegetreden tot het gesprek\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalen\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Groep naam\"],\"mAYvqA\":[\"Hallo!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Bewerk jouw identiteit\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Je zal geen toegang meer hebben tot je account tenzij je contact opneemt met support - maar je data zal niet verwijderd worden.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Aangepaste status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Gemeenschappelijke vrienden\"],\"nbzz1A\":[\"Voer Code In\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Dit is het begin van je notities.\"],\"o+XJ9D\":[\"Veranderen\"],\"oB4OOq\":[\"Verban Leden\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Leden\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standaard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Uitloggen\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Terug naar het begin\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Gebruiker heeft het gesprek verlaten\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mijn Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alle berichten\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 persoon reageerde\"],\"rxaY+5\":[\"Niet storen\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Geavanceerd\"],\"t43mBk\":[\"Meld server\"],\"tBmnPU\":[\"Vrienden\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks Beheren\"],\"tdTuUv\":[\"Blokkeer gebruiker\"],\"tfDRzk\":[\"Opslaan\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Geblokkeerde gebruiker\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ga naar de testers-server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick lid\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Rol Verwijderen\"],\"utrCh2\":[\"Timeout leden\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Over\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Server beschrijving\"],\"v1kQyJ\":[\"Webhaken\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profiel\"],\"vJum3e\":[\"Steun het project door te doneren - bedankt!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Bewerk identiteit\"],\"vXIe7J\":[\"Taal\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Sla deze op in een veilige locatie.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Berichten\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Neem deel aan kanaal\"],\"wL3cK8\":[\"Laatste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Leden\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerade\"],\"xDAtGP\":[\"Bericht\"],\"xGVfLh\":[\"Doorgaan\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Verbanningen\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Gebruikersovereenkomst\"],\"xpgPPI\":[\"Mijn bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accepteer vriendschapsverzoek\"],\"y1eoq1\":[\"Kopieer link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Ik bevestig dat ik minstens 18 jaren oud ben.\"],\"yDOdwQ\":[\"Gebruiker beheer\"],\"yIBLq8\":[\"Spreken\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Sluiten\"],\"z0hW8A\":[\"Backupcodes bekijken\"],\"z0t9bb\":[\"Inloggen\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dit is het begin van je gesprek.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Oudste\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/nl/messages.po b/components/i18n/catalogs/nl/messages.po
new file mode 100644
index 0000000..39003dd
--- /dev/null
+++ b/components/i18n/catalogs/nl/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: nl\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 persoon reageerde"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Over"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Accepteer vriendschapsverzoek"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Vriend toevoegen"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Geavanceerd"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Alle berichten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Reeds bevriend met deze gebruiker."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Uiterlijk"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Rollen Toewijzen"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authenticatie-app"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Profielfoto"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Badges"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Verban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Verban lid"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Verban Leden"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Verbanningen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blokkeer gebruiker"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Geblokkeerd"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Geblokkeerde gebruiker"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bugtracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Annuleren"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Annuleer vriendschapsverzoek"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Account kan niet worden verwijderd totdat servers zijn verwijderd of overgedragen"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Veranderen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Verander Pictogram"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Verander Bijnaam"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanaalbeschrijving"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanaal naam"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanalen"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Check je mailbox!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Status wissen"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Client instellingen"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Sluiten"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Bevestigen"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Actie bevestigen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Verbinden"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Inhoud breekt een of meerdere regels"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Doorgaan"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Gesprekken"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopieer kanaal-ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopieer ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopieer link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopieer bericht-ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopieer server-ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopieer tekst"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopieer gebruikers-ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Creëer"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Maak een groep aan"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Maak een nieuwe bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Creëer een nieuwe rol"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Maak een account aan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Categorie aanmaken"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Creëer kanaal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Creëer uitnodiging"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Huidig wachtwoord"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Aangepaste status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Aanpassingen"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Geluid van leden onhoorbaar maken"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Standaard"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Verwijder"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Verwijder kanaal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Verwijder bericht"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Rol Verwijderen"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Account uitschakelen"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Niet storen"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Klaar"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Bewerk identiteit"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Bewerkt bericht"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Bewerk jouw identiteit"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji's"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Authenticator app inschakelen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Schakel Bureaubladmeldingen in"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Voer een nieuw wachtwoord in."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Neem deel aan kanaal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Voer Code In"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Voer je huidige wachtwoord in."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Voer je gewenste gebruikersnaam in."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Externe links kunnen gevaarlijk zijn!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Verificatie mislukt!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Vind een community gebaseerd op je hobby's of interesses."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Focus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Vrienden"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Nieuwe backupcodes genereren"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Uitnodiging genereren…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Ga terug naar het inlogscherm"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Ga naar de testers-server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Groep naam"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hallo!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Home"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Ik bevestig dat ik minstens 18 jaren oud ben."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Afwezig"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Onzichtbaar"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Nodig al je vrienden uit, een paar coole bots, en geef een groot feest."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Uitnodigingscode"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Verander Bijnaam"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Uitnodiger"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Uitnodigingen"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Naar nu springen"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Terug naar het begin"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Kick"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Kick lid"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kick Leden"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Taal"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Laatste"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Verlaat"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Verlaat groep"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Verlaat server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Laat ons weten hoe we onze app kunnen verbeteren door ons feedback te geven."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Uitloggen"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Uitloggen bij alle andere sessies"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Inloggen"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Aanpassingen Beheren"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Beheer Berichten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Beheer Bijnamen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Machtigingen Beheren"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Beheer Rollen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Beheer Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Webhooks Beheren"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Markeren als gelezen"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Markeer als gelezen"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskerade"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Leden"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Vermelding"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Alleen vermeldigen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Bericht"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Bericht niet geladen, klik om te springen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Bericht ontvangen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Bericht verzonden"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Bericht is gestuurd op een ander platform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Berichten"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Leden verplaatsen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Microfoon van leden dempen"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Gedempt"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Gemeenschappelijke vrienden"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Gemeenschappelijke groepen"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mijn Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mijn bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nieuw wachtwoord"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Gebruikersnaam"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Geen"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Meldingen"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Uit"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Officiële Communicatie"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Officiële server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Oudste"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Aan"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Als het eenmaal is verwijderd, is er geen weg meer terug."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Instellingen openen"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Algemeen"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Wachtwoord"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permissies"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Kies een gebruikersnaam waarmee je wil dat mensen je kunnen vinden. Dit kan later in de gebruikersinstellingen worden gewijzigd."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Bevestig deze actie met de gekozen methode."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Voer je e-mail in."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Sla deze op in een veilige locatie."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Scan of gebruik de onderstaande token in uw authenticatie-app."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Kies een methode om uw verzoek te bevestigen."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Privacybeleid"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profiel"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Berichtgeschiedenis lezen"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Reden"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Herstel code"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registreer"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Wijs vriendschapsverzoek af"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevantie"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Authenticator verwijderen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Verwijder Pictogrammen"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Vriend verwijderen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Reageer"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Reageren op"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Rapporteer"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Meld bericht"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Meld server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Meld gebruiker"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Stuur verificatie opnieuw"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Resetten"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Reset wachtwoord"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Token Resetten"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Naam van de rol"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Rollen"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Opslaan"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Opslaan in jouw notities"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Opgeslagen notities"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Selecteer je taal"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Embeds versturen"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Verstuur Berichten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Heeft een bijlage gestuurd"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Heeft meerdere bijlagen gestuurd"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Server beschrijving"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Servernaam"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessies"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Instellingen"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Meerdere mensen zijn aan het typen…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Geluiden"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Broncode"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Spreken"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Dien functie suggestie in"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Feedback sturen"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Steun het project door te doneren - bedankt!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Gebruikersovereenkomst"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Tekstkanaal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Thema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Dit is het begin van je gesprek."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Dit is het begin van je notities."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Deze gebruiker heeft je geblokkeerd."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeout leden"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Deblokkeer gebruiker"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Bestanden Uploaden"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Gebruiker"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Gebruiker is toegetreden tot het gesprek"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Gebruiker heeft het gesprek verlaten"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gebruiker beheer"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Gebruikersinstellingen"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Gebruikersnaam"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Account aan het verifiëren…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Bekijk Kanaal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Bekijk hier de momenteel actieve bugrapporten."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Oudere updates bekijken"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Backupcodes bekijken"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Je bekijkt oudere berichten"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Spraakkanaal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "We hebben je een bevestigings-email verstuurd. Het kan tot 10 minuten duren voor deze aankomt."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhaken"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Welkom bij"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Welkom terug!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Je kunt ook het gebruikersicoon aanklikken links vanboven, of met de linkermuisklik als je al op het thuismenu zit."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Je kunt het later opnieuw openen, maar het zal aan beide kanten verdwijnen."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Je kan hier problemen melden en verbeteringen direct met ons bespreken."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Je kanniet deze actie niet ongedaan maken."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Je bent niet gemachtigd om berichten te sturen in dit kanaal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Je zal geen toegang meer hebben tot je account tenzij je contact opneemt met support - maar je data zal niet verwijderd worden."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Je kunt pas weer deelnemen als je opnieuw wordt uitgenodigd."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Je account is geverifiëerd!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Jouw herstelcodes"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/owo/messages.js b/components/i18n/catalogs/owo/messages.js
new file mode 100644
index 0000000..77282f5
--- /dev/null
+++ b/components/i18n/catalogs/owo/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Muwted\"],\"+YFgJi\":[\"Byadges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as red\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Cweate a nyew wowe\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Myuwdew all othew syessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pwick a uwsername that you want pweople to bwe abwle to fwind you by. Twis can bwe chwanged wayter in your uwser swettings.\"],\"/qQDwm\":[\"Gyenewating Invyite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Repowot myessage\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Suwbmit Feewdbacwk\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Cowopy myessage ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Weave gwoup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Yu can repowot ishus and discus impwowments with us directwy heer.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bwocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"U can't come bacc unless ur invited in again.\"],\"3QuNUr\":[\"Panic Panic Panic…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Awweady fwiends with this uwsew.\"],\"3T8ziB\":[\"Cweate an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seshions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Niickname-chan\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Syelect langwuage\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Fynd a comunyity baysed on yur hobies owo intewests.\"],\"572q5a\":[\"Wepowot usew\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mawrk Aws Unrewad\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change nyicknyame\"],\"5dJK4M\":[\"Wowes\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Ovyurview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offwine\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"OWO\"],\"7SU2U9\":[\"Copy sewvew ID\"],\"7VpPHA\":[\"Based\"],\"7dZnmw\":[\"Wewevnyace\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Usewname\"],\"7vhWI8\":[\"Nyew Passwowd\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manyage sewvew\"],\"8FE4JE\":[\"Enable auwthenticatow app\"],\"8VGnad\":[\"Genewate Wecovewy Cowodes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passwowd\"],\"8aTiea\":[\"Custuwusation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Entew youw pwefewwed usewname.\"],\"9D85wC\":[\"Cowopy uwuser ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Weset Twoken~\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Pewmissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Send to Brazil\"],\"9nffag\":[\"Viewing owdew messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unbwock yusr\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Cweate a gwoup\"],\"A9Rhec\":[\"Channyel Nwame\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"E-Enta a nyew passwod, pwease~ >///<\"],\"AU7IRi\":[\"Text channyew\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice channyew\"],\"BHsrDx\":[\"Invyites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Myessage was sent on anuther platfowm\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View channyew\"],\"CK7kdd\":[\"Bye staytus :((\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Chyannel Dyescwiption\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send messages\"],\"CkIs/i\":[\"Mute Membews\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Cwuwent Passwowd\"],\"DDpDsO\":[\"Secwet Invwite Codw\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Ofishuwl Kumunyikayshun\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"I'm downe\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Myessage nyot lowded, cwick tu jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Syumbit fweatuwe syuggyestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Bye\"],\"EdQY6l\":[\"Nyonye\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Convewsations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attyachmwent\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Cweate categowy\"],\"F1uGNS\":[\"Manyage nyicknyames\"],\"FEr96N\":[\"Thyeme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Wemove avataws\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enabwe Desktop Nowotifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fowocus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Cowopy channew ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Gwoups\"],\"GhCPk1\":[\"Once it's deweted, thewe's nyo going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ewnter uw cuwwent passwowd.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pwease select a methowd to auwthenticate youw wequest.\"],\"HAKBY9\":[\"Upwoad fiwes\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Sawved nowotes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reesend werifikayshun\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Muv Membews\"],\"ImOQa9\":[\"Wepwy\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent muwtipwe attachmwents\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannyot dewete accownt untyil sewvews awe deweted oww twansfewwwd\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confiwm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View owdew updates\"],\"JUJmXm\":[\"Pwease confiwm twis actwion using the sewected methowd.\"],\"JW8mxK\":[\"Syawe to uw nyotes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Wewcome Mastew! OwO\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Yu can awsow wight-cwick the user icon in the top left, or left cwick it if yur awredy howme.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delet Dis\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content bweaks one ow mowe waws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Syounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiaw sewvew\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Unfwend ÒmÓ\"],\"LcET2C\":[\"Pwivacy powicy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nyaa~ We sent u a wewifikayshun eemewl. >_< Pweese alow up 2 10 minuts fow it 2 arive. :3\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Syervur Nyame\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Weave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View cuwwently active buggy repowts here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we c-can impwow our app by giving us feedbak.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Yow acownt has bin werifyd! *-*\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Emaiw\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have pewmission to send messages in this channyew.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Weset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejwect fwend reqwest :(\"],\"PSP1MZ\":[\"Rowe nyame\"],\"PWOA0E\":[\"Mentions onwy\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embweds\"],\"PnzsrT\":[\"Sauce\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Juwp to pwesent\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idwe\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit Myessage\"],\"QqoBlW\":[\"Peek youw maiwl owo rawr!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ryeset passwowd\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Buggy Twacky\"],\"S3bIKF\":[\"Cwopy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Pwease scan or use the tokewn bewow in youw auwthentyication app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Wemuv authenticatow\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manyage messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manyage wowes\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Configuwation\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inwite aww of yur fwens, sum kewl bowots, and throw a big party. +o+\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change avataw\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mwessage Sent\"],\"VJScHU\":[\"Weason\"],\"VKsaTi\":[\"Replying tu\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Membews\"],\"VsHxv+\":[\"Steal text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"werifying yur acownt…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Extewnyaw winks can be dangewous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klyent Konfigurayshuns\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Auwthenticatow App\"],\"YcVBkL\":[\"Message weceived\"],\"YirHq7\":[\"Fyeedbwack\"],\"YlFpiA\":[\"Fewld tu werify! T_T\"],\"Yp+Hi/\":[\"Owopen Swettings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Youw wecovery cowodes\"],\"aAIQg2\":[\"Appeawance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Yu cannyot undo this akshun.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disabwe account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Wead Message Histowy\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban membew\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Pewmissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitr\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Dewete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cwinge\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Cweate a nyew bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inwite Othews\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisibwe\"],\"ekfzWq\":[\"Usew Settings\"],\"etgedT\":[\"OwOjis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Mawnawge Custowomisatiowon\"],\"fTMMeD\":[\"Cweate invite :3\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registew\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancew fwend reqwest :c\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Wowes\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"wepowt >w<\"],\"gkBHk/\":[\"Cweate channyew UwU\"],\"gkmjYT\":[\"Weave sewvew :c\"],\"go1IWB\":[\"This uwsew has bwocked u.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Yeet channyew :c\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Pwease Entew uw emaiwl.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Cweate\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hwome\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Nowotifcations\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connyect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Annoy\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Senpai\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Gow bwack tu lyogin\"],\"jpJ5AL\":[\"Wecovewy Cowode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Awatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Wewcome!\"],\"knjY+b\":[\"You can we-open it watew but it wiww disappeaw on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add fwen OwO\"],\"lSGjX7\":[\"Usew joinyed caww\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channews\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gwoup Name\"],\"mAYvqA\":[\"Hewwo! >w<\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit yoww idyentity :3\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Yuu won't be abwe to access youw account untiw yuu contact suppawt - howevew, youw data wiww nyot be deweted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custum Staytus :3\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Fwiends\"],\"nbzz1A\":[\"Entew Cowode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of yur nowtes. ^o^\"],\"o+XJ9D\":[\"Chyange\"],\"oB4OOq\":[\"Ban membews\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Onwine\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick membews\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Defauwt\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out. See u latew uwu\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump tu the beginnying\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Usew weft caww\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mah Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Aww messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person weacted\"],\"rxaY+5\":[\"Dyo Not Distuwb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Adwanced\"],\"t43mBk\":[\"Wepowot sewvew\"],\"tBmnPU\":[\"Fwiends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manyage Webhooks\"],\"tdTuUv\":[\"Bwock Yusr\"],\"tfDRzk\":[\"Syave\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Bwocked Usew\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go tu the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick membew\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Dewete Wowe\"],\"utrCh2\":[\"Timeouwt Membews\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Abouwt\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Syerver Dyescwiption\"],\"v1kQyJ\":[\"Webhowoks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Pyofiwe\"],\"vJum3e\":[\"Suppowot the pwoject by downayting - thank yu! ^3^\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vwideo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identitwy\"],\"vXIe7J\":[\"Wangwuage\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Pwease save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messagwing\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entyer Channyel\"],\"wL3cK8\":[\"Watest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Myembews\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquewade\"],\"xDAtGP\":[\"Mwessage\"],\"xGVfLh\":[\"Continuwe\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Imposters\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Tewms of sewvice\"],\"xpgPPI\":[\"Mwy Bwots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept fwend reqwest\"],\"y1eoq1\":[\"Cowopy Lyink\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I cunfirm that I am at lyeest 18 years owd.\"],\"yDOdwQ\":[\"Usew management\"],\"yIBLq8\":[\"Tawk\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Cwose\"],\"z0hW8A\":[\"View Wecovewy Cowodes\"],\"z0t9bb\":[\"Lwogin\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Twis is thye styart of ye conversyation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Owdest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/owo/messages.mjs b/components/i18n/catalogs/owo/messages.mjs
new file mode 100644
index 0000000..2fd2a08
--- /dev/null
+++ b/components/i18n/catalogs/owo/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Muwted\"],\"+YFgJi\":[\"Byadges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as red\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Cweate a nyew wowe\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Myuwdew all othew syessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pwick a uwsername that you want pweople to bwe abwle to fwind you by. Twis can bwe chwanged wayter in your uwser swettings.\"],\"/qQDwm\":[\"Gyenewating Invyite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Repowot myessage\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Suwbmit Feewdbacwk\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Cowopy myessage ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Weave gwoup\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Yu can repowot ishus and discus impwowments with us directwy heer.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bwocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"U can't come bacc unless ur invited in again.\"],\"3QuNUr\":[\"Panic Panic Panic…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Awweady fwiends with this uwsew.\"],\"3T8ziB\":[\"Cweate an account\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seshions\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Niickname-chan\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Syelect langwuage\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Fynd a comunyity baysed on yur hobies owo intewests.\"],\"572q5a\":[\"Wepowot usew\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mawrk Aws Unrewad\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change nyicknyame\"],\"5dJK4M\":[\"Wowes\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Ovyurview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offwine\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"OWO\"],\"7SU2U9\":[\"Copy sewvew ID\"],\"7VpPHA\":[\"Based\"],\"7dZnmw\":[\"Wewevnyace\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Usewname\"],\"7vhWI8\":[\"Nyew Passwowd\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manyage sewvew\"],\"8FE4JE\":[\"Enable auwthenticatow app\"],\"8VGnad\":[\"Genewate Wecovewy Cowodes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Passwowd\"],\"8aTiea\":[\"Custuwusation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Entew youw pwefewwed usewname.\"],\"9D85wC\":[\"Cowopy uwuser ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Weset Twoken~\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Pewmissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Send to Brazil\"],\"9nffag\":[\"Viewing owdew messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unbwock yusr\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Cweate a gwoup\"],\"A9Rhec\":[\"Channyel Nwame\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"E-Enta a nyew passwod, pwease~ >///<\"],\"AU7IRi\":[\"Text channyew\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Voice channyew\"],\"BHsrDx\":[\"Invyites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Myessage was sent on anuther platfowm\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View channyew\"],\"CK7kdd\":[\"Bye staytus :((\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Chyannel Dyescwiption\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send messages\"],\"CkIs/i\":[\"Mute Membews\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Cwuwent Passwowd\"],\"DDpDsO\":[\"Secwet Invwite Codw\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Ofishuwl Kumunyikayshun\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"I'm downe\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Myessage nyot lowded, cwick tu jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Syumbit fweatuwe syuggyestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Bye\"],\"EdQY6l\":[\"Nyonye\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Convewsations\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent an attyachmwent\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Cweate categowy\"],\"F1uGNS\":[\"Manyage nyicknyames\"],\"FEr96N\":[\"Thyeme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Wemove avataws\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enabwe Desktop Nowotifications\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fowocus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Cowopy channew ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Gwoups\"],\"GhCPk1\":[\"Once it's deweted, thewe's nyo going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ewnter uw cuwwent passwowd.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Pwease select a methowd to auwthenticate youw wequest.\"],\"HAKBY9\":[\"Upwoad fiwes\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Sawved nowotes\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reesend werifikayshun\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Muv Membews\"],\"ImOQa9\":[\"Wepwy\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent muwtipwe attachmwents\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannyot dewete accownt untyil sewvews awe deweted oww twansfewwwd\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confiwm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View owdew updates\"],\"JUJmXm\":[\"Pwease confiwm twis actwion using the sewected methowd.\"],\"JW8mxK\":[\"Syawe to uw nyotes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Wewcome Mastew! OwO\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Yu can awsow wight-cwick the user icon in the top left, or left cwick it if yur awredy howme.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delet Dis\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content bweaks one ow mowe waws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Syounds\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiaw sewvew\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Unfwend ÒmÓ\"],\"LcET2C\":[\"Pwivacy powicy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Nyaa~ We sent u a wewifikayshun eemewl. >_< Pweese alow up 2 10 minuts fow it 2 arive. :3\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Syervur Nyame\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Weave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View cuwwently active buggy repowts here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we c-can impwow our app by giving us feedbak.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Yow acownt has bin werifyd! *-*\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Emaiw\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"You don't have pewmission to send messages in this channyew.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Weset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejwect fwend reqwest :(\"],\"PSP1MZ\":[\"Rowe nyame\"],\"PWOA0E\":[\"Mentions onwy\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embweds\"],\"PnzsrT\":[\"Sauce\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Juwp to pwesent\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idwe\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit Myessage\"],\"QqoBlW\":[\"Peek youw maiwl owo rawr!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ryeset passwowd\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Buggy Twacky\"],\"S3bIKF\":[\"Cwopy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Pwease scan or use the tokewn bewow in youw auwthentyication app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Wemuv authenticatow\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manyage messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manyage wowes\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Configuwation\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inwite aww of yur fwens, sum kewl bowots, and throw a big party. +o+\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change avataw\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mwessage Sent\"],\"VJScHU\":[\"Weason\"],\"VKsaTi\":[\"Replying tu\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Membews\"],\"VsHxv+\":[\"Steal text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"werifying yur acownt…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Extewnyaw winks can be dangewous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klyent Konfigurayshuns\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Auwthenticatow App\"],\"YcVBkL\":[\"Message weceived\"],\"YirHq7\":[\"Fyeedbwack\"],\"YlFpiA\":[\"Fewld tu werify! T_T\"],\"Yp+Hi/\":[\"Owopen Swettings\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Youw wecovery cowodes\"],\"aAIQg2\":[\"Appeawance\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Yu cannyot undo this akshun.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Disabwe account\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Wead Message Histowy\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban membew\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Pewmissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitr\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Dewete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cwinge\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Cweate a nyew bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inwite Othews\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisibwe\"],\"ekfzWq\":[\"Usew Settings\"],\"etgedT\":[\"OwOjis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Mawnawge Custowomisatiowon\"],\"fTMMeD\":[\"Cweate invite :3\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registew\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancew fwend reqwest :c\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Wowes\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"wepowt >w<\"],\"gkBHk/\":[\"Cweate channyew UwU\"],\"gkmjYT\":[\"Weave sewvew :c\"],\"go1IWB\":[\"This uwsew has bwocked u.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Yeet channyew :c\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Pwease Entew uw emaiwl.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Cweate\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hwome\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Nowotifcations\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connyect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Annoy\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Senpai\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Gow bwack tu lyogin\"],\"jpJ5AL\":[\"Wecovewy Cowode\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Awatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Wewcome!\"],\"knjY+b\":[\"You can we-open it watew but it wiww disappeaw on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add fwen OwO\"],\"lSGjX7\":[\"Usew joinyed caww\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Channews\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gwoup Name\"],\"mAYvqA\":[\"Hewwo! >w<\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit yoww idyentity :3\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Yuu won't be abwe to access youw account untiw yuu contact suppawt - howevew, youw data wiww nyot be deweted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custum Staytus :3\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Fwiends\"],\"nbzz1A\":[\"Entew Cowode\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of yur nowtes. ^o^\"],\"o+XJ9D\":[\"Chyange\"],\"oB4OOq\":[\"Ban membews\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Onwine\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick membews\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Defauwt\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out. See u latew uwu\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Jump tu the beginnying\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Usew weft caww\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mah Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Aww messages\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person weacted\"],\"rxaY+5\":[\"Dyo Not Distuwb\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Adwanced\"],\"t43mBk\":[\"Wepowot sewvew\"],\"tBmnPU\":[\"Fwiends\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manyage Webhooks\"],\"tdTuUv\":[\"Bwock Yusr\"],\"tfDRzk\":[\"Syave\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Bwocked Usew\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go tu the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick membew\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Dewete Wowe\"],\"utrCh2\":[\"Timeouwt Membews\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Abouwt\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Syerver Dyescwiption\"],\"v1kQyJ\":[\"Webhowoks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Pyofiwe\"],\"vJum3e\":[\"Suppowot the pwoject by downayting - thank yu! ^3^\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vwideo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identitwy\"],\"vXIe7J\":[\"Wangwuage\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Pwease save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messagwing\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entyer Channyel\"],\"wL3cK8\":[\"Watest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Myembews\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquewade\"],\"xDAtGP\":[\"Mwessage\"],\"xGVfLh\":[\"Continuwe\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Imposters\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Tewms of sewvice\"],\"xpgPPI\":[\"Mwy Bwots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept fwend reqwest\"],\"y1eoq1\":[\"Cowopy Lyink\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I cunfirm that I am at lyeest 18 years owd.\"],\"yDOdwQ\":[\"Usew management\"],\"yIBLq8\":[\"Tawk\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Cwose\"],\"z0hW8A\":[\"View Wecovewy Cowodes\"],\"z0t9bb\":[\"Lwogin\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Twis is thye styart of ye conversyation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Owdest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/owo/messages.po b/components/i18n/catalogs/owo/messages.po
new file mode 100644
index 0000000..8445b9e
--- /dev/null
+++ b/components/i18n/catalogs/owo/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: owo\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 person weacted"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Abouwt"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Accept fwend reqwest"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Add fwen OwO"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Adwanced"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Aww messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Awweady fwiends with this uwsew."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Appeawance"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Assign Wowes"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Auwthenticatow App"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Awatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Byadges"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Send to Brazil"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ban membew"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Ban membews"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Imposters"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bwock Yusr"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bwocked"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Bwocked Usew"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Senpai"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Buggy Twacky"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cwinge"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancew fwend reqwest :c"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Cannyot dewete accownt untyil sewvews awe deweted oww twansfewwwd"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Chyange"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Change avataw"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Change nyicknyame"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Chyannel Dyescwiption"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Channyel Nwame"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Channews"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Peek youw maiwl owo rawr!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Bye staytus :(("
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Klyent Konfigurayshuns"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Cwose"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Based"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confiwm action"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Connyect"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Content bweaks one ow mowe waws"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuwe"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Convewsations"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Cowopy channew ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Cwopy ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Cowopy Lyink"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Cowopy myessage ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copy sewvew ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Steal text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Cowopy uwuser ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Cweate"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Cweate a gwoup"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Cweate a nyew bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Cweate a nyew wowe"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Cweate an account"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Cweate categowy"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Cweate channyew UwU"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Cweate invite :3"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Cwuwent Passwowd"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Custum Staytus :3"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Custuwusation"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Deafen Membews"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Defauwt"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Dewete"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Yeet channyew :c"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Delet Dis"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Dewete Wowe"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Disabwe account"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Dyo Not Distuwb"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "I'm downe"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Edit identitwy"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Edit Myessage"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Edit yoww idyentity :3"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Emaiw"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "OwOjis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Enable auwthenticatow app"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Enabwe Desktop Nowotifications"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "E-Enta a nyew passwod, pwease~ >///<"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entyer Channyel"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Entew Cowode"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Ewnter uw cuwwent passwowd."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Entew youw pwefewwed usewname."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Extewnyaw winks can be dangewous!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Fewld tu werify! T_T"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Fyeedbwack"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Fynd a comunyity baysed on yur hobies owo intewests."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fowocus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Fwiends"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Genewate Wecovewy Cowodes"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Gyenewating Invyite…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Gow bwack tu lyogin"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Go tu the testers server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Gwoup Name"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hewwo! >w<"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Hwome"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "I cunfirm that I am at lyeest 18 years owd."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Idwe"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisibwe"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Inwite aww of yur fwens, sum kewl bowots, and throw a big party. +o+"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Secwet Invwite Codw"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Inwite Othews"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Invitr"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invyites"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Juwp to pwesent"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Jump tu the beginnying"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Bye"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Kick membew"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kick membews"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Wangwuage"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Watest"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Weave"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Weave gwoup"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Weave sewvew :c"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Let us know how we c-can impwow our app by giving us feedbak."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Log Out. See u latew uwu"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Myuwdew all othew syessions"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Lwogin"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Mawnawge Custowomisatiowon"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Manyage messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Manyage nyicknyames"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Manage Pewmissions"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Manyage wowes"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Manyage sewvew"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Manyage Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Mark as red"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Mawrk Aws Unrewad"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Masquewade"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Myembews"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Annoy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Mentions onwy"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Mwessage"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Myessage nyot lowded, cwick tu jump"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Message weceived"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mwessage Sent"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Myessage was sent on anuther platfowm"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Messagwing"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Muv Membews"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Mute Membews"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Muwted"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Mutual Fwiends"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Mutual Gwoups"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mah Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mwy Bwots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nyew Passwowd"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Niickname-chan"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nyonye"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Nowotifcations"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Off"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Ofishuwl Kumunyikayshun"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Officiaw sewvew"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offwine"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Owdest"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "On"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Once it's deweted, thewe's nyo going back."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Onwine"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Owopen Swettings"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Ovyurview"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Passwowd"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Pewmissions"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Pwick a uwsername that you want pweople to bwe abwle to fwind you by. Twis can bwe chwanged wayter in your uwser swettings."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Pwease confiwm twis actwion using the sewected methowd."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Pwease Entew uw emaiwl."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Pwease save these to a safe location."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Pwease scan or use the tokewn bewow in youw auwthentyication app."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Pwease select a methowd to auwthenticate youw wequest."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Pwivacy powicy"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Pyofiwe"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Wead Message Histowy"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Weason"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Wecovewy Cowode"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registew"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rejwect fwend reqwest :("
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Wewevnyace"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Wemuv authenticatow"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Wemove avataws"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Unfwend ÒmÓ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Wepwy"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Replying tu"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "wepowt >w<"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Repowot myessage"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Wepowot sewvew"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Wepowot usew"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Reesend werifikayshun"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Weset"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Ryeset passwowd"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Weset Twoken~"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rowe nyame"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Wowes"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Syave"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Syawe to uw nyotes"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Sawved nowotes"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Syelect langwuage"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Send Embweds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Send messages"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Sent an attyachmwent"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Sent muwtipwe attachmwents"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Syerver Dyescwiption"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Syervur Nyame"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Seshions"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Configuwation"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Panic Panic Panic…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Syounds"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Sauce"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Tawk"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Syumbit fweatuwe syuggyestion"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Suwbmit Feewdbacwk"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Suppowot the pwoject by downayting - thank yu! ^3^"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Tewms of sewvice"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Text channyew"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Thyeme"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Twis is thye styart of ye conversyation."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "This is the start of yur nowtes. ^o^"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "This uwsew has bwocked u."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Timeouwt Membews"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Unbwock yusr"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Upwoad fiwes"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "OWO"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Usew joinyed caww"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Usew weft caww"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Usew management"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Usew Settings"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Usewname"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "werifying yur acownt…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Vwideo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "View channyew"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "View cuwwently active buggy repowts here."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "View owdew updates"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "View Wecovewy Cowodes"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Viewing owdew messages"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Voice channyew"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Nyaa~ We sent u a wewifikayshun eemewl. >_< Pweese alow up 2 10 minuts fow it 2 arive. :3"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhowoks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Wewcome Mastew! OwO"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Wewcome!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Yu can awsow wight-cwick the user icon in the top left, or left cwick it if yur awredy howme."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "You can we-open it watew but it wiww disappeaw on both sides."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Yu can repowot ishus and discus impwowments with us directwy heer."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Yu cannyot undo this akshun."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "You don't have pewmission to send messages in this channyew."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Yuu won't be abwe to access youw account untiw yuu contact suppawt - howevew, youw data wiww nyot be deweted."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "U can't come bacc unless ur invited in again."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Yow acownt has bin werifyd! *-*"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Youw wecovery cowodes"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/piglatin/messages.js b/components/i18n/catalogs/piglatin/messages.js
new file mode 100644
index 0000000..94cd5c2
--- /dev/null
+++ b/components/i18n/catalogs/piglatin/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Utedmay\"],\"+YFgJi\":[\"Adgesbay\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Arkmay asyay eadray\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Eatecray ayay ewnay oleray\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Oglay outyay ofyay allyay otheryay essionssay\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Ickpay away usernameway atthay youway antway eoplepay otay ebay ableway otay indfay youway byay, isthay ancay ebay angedchay aterlay inway ettingssay.\"],\"/qQDwm\":[\"Eneratinggay inviteyay…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Eportray essagemay\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Ubmitsay eedbackfay\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Opycay essagemay IDyay\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Eavelay oupgray\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Ouyay ancay eportray issuesyay andyay iscussday improvementsyay ithway usyay irectlyday erehay.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Ockedblay\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Youway on'tway ebay ableway otay ejoinray unlessway youway areway e-invitedray.\"],\"3QuNUr\":[\"Everalsay eoplepay areyay ingtypay…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Alreadyway iendsfray ithway isthay userway.\"],\"3T8ziB\":[\"Eatecray anyay accountyay\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Essionssay\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Icknamenay\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Electsay yourway anguagelay\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Indfay ayay ommunitycay asedbay onyay ouryay obbieshay oryay interestsyay.\"],\"572q5a\":[\"Eportray useryay\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Arkmay asyay unreadyay\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Angechay Icknamenay\"],\"5dJK4M\":[\"Olesray\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overviewyay\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offlineway\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Useryay\"],\"7SU2U9\":[\"Opycay erversay IDyay\"],\"7VpPHA\":[\"Onfirmcay\"],\"7dZnmw\":[\"Elevanceray\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Usernameway\"],\"7vhWI8\":[\"Ewnay Asswordpay\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Anagemay Erversay\"],\"8FE4JE\":[\"Enableway authenticatorway appway\"],\"8VGnad\":[\"Enerategay Ecoveryray Odescay\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Asswordpay\"],\"8aTiea\":[\"Ustomisationcay\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enteryay ouryay usernameyay.\"],\"9D85wC\":[\"Opycay useryay IDyay\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Ermissionspay\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Anbay\"],\"9nffag\":[\"Iewingvay olderway essagesmay\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblockyay useryay\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Eatecray ayay oupgray\"],\"A9Rhec\":[\"Annelchay Amenay\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enteryay ayay ewnay asswordpay.\"],\"AU7IRi\":[\"Exttay Hannelcay\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Oicevay Hannelcay\"],\"BHsrDx\":[\"Invitesyay\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Essagemay asway entsay onyay anotheryay latformpay\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Iewvay Annelchay\"],\"CK7kdd\":[\"Earclay atusstay\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Annelchay Escriptionday\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Endsay Essagesmay\"],\"CkIs/i\":[\"Utemay Embersmay\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Urrentcay Asswordpay\"],\"DDpDsO\":[\"Inviteyay Odecay\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officialyay ommunicationcay\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Oneday\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Essagemay otnay oadedlay, lickcay otay umpjay\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Ubmitsay eaturefay uggestionsay\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Ickkay\"],\"EdQY6l\":[\"Onenay\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Onversationscay\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Entsay naay ttachmentaay\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Eatecray ategorycay\"],\"F1uGNS\":[\"Anagemay Icknamesnay\"],\"FEr96N\":[\"Emethay\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Emoveray Avatarsyay\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enableway Esktopday Otificationsnay\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Ocusfay\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Opycay annelchay IDyay\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Utualmay Oupsgray\"],\"GhCPk1\":[\"Onceyay it'syay eletedday, ere'sthay onay oinggay ackbay.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enterway yourway urrentcay asswordpay.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Easeplay electsay away ethodmay otay authenticateway ouryay equestray.\"],\"HAKBY9\":[\"Uploadyay Ilesfay\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Avedsay Otesnay\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Esendray erificationvay\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Ovemay Embersmay\"],\"ImOQa9\":[\"Eplyray\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Entsay ultiplemay ttachmentsaay\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Onfirmcay actionway\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Iewvay olderway updatesway\"],\"JUJmXm\":[\"Easeplay onfirmcay usingyay electedsay ethodmay.\"],\"JW8mxK\":[\"Avesay otay yourway otesnay\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Elcomeway otay\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Ouyay ancay alsoyay ight-clickray ethay useryay iconyay inyay ethay optay eftlay , oryay eftlay ickclay ityay ifyay ou'reyay alreadyyay omehay .\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eleteday essagemay\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Ontentcay reaksbay oneyay oryay oremay awslay\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Oundssay\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officialyay Erversay\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Emoveray iendfray\"],\"LcET2C\":[\"Rivacypay Olicypay\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lease allow up to 10 minutes for it to arrivepay.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Erversay amenay\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Eavelay\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Iewvay urrentlycay activeyay ugbay eportsray erehay.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ltlay usyay owknay owhay eway ancay improveyay ouryay appyay ybay ivinggay usyay eedbackfay.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ouryay accountyay ashay eenbyay eriviedvay!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Emailway\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ouyay on'tday avehay ermissionpay otay endsay essagesay niay histay hannelcay.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Esetray\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Oleray amenay\"],\"PWOA0E\":[\"Entionsmay Nlyoay\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Endsay Embedsway\"],\"PnzsrT\":[\"Ourcesay odecay\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Umpjay otay esentpray\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idleway\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edityay essagemay\"],\"QqoBlW\":[\"Eckchay yourway ailmay!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Esetray asswordpay\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Ugbay rackertay\"],\"S3bIKF\":[\"opycay idyay\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Easeplay anscay orway useyay ethay okentay elowbay inway ouryay authenticationway appway.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Authenticatoryay\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Anagemay Essagesmay\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Anagemay Olesray\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ettingssay\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inviteyay allyay ofyay ouryay iendsfray, omesay oolcay otsbay, andyay owthray ayay igbay artypay.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Angechay Avataryay\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Essagemay entsay\"],\"VJScHU\":[\"Easonray\"],\"VKsaTi\":[\"Eplyingray otay\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Eafenday Embersmay\"],\"VsHxv+\":[\"Opycay exttay\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Erifyingvay ouryay accountyay…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externalyay inkslay ancay ebay angerousday!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ientclay Ettingssay\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticatorway Appway\"],\"YcVBkL\":[\"Essagemay eceivedray\"],\"YirHq7\":[\"Eedbackfay\"],\"YlFpiA\":[\"Ailedfay otay erifyvay!\"],\"Yp+Hi/\":[\"Openyay ettingssay\"],\"Z5HWHd\":[\"Onyay\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ouryay ecoveryray odescay\"],\"aAIQg2\":[\"Appearanceway\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ouyay annotcay undoway isthay actionway.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Offyay\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Isableday accountyay\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Eadray Essagemay Istoryhay\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Anbay embermay\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Anagemay Ermissionspay\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviteryay\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eleteday\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ancelcay\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Eatecray ayay ewnay otbay\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviteyay Othersyay\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisibleway\"],\"ekfzWq\":[\"Userway Ettingssay\"],\"etgedT\":[\"Emojisway\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Anagemay Ustomisationcay\"],\"fTMMeD\":[\"Eatecray inviteyay\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Egisterray\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Ancelcay equestray\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assignway Olesray\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Eportray\"],\"gkBHk/\":[\"Eatecray annelchay\"],\"gkmjYT\":[\"Eavelay erversay\"],\"go1IWB\":[\"Isthay userway ashay ockedblay youway.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eleteday annelchay\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Leasepay enteryay ouryay emailyay .\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Eatecray\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Omehay\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Otificationsnay\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Onnectcay\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Entionmay\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Otbay\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Ogay ackbay otay oginlay\"],\"jpJ5AL\":[\"Ecoveryway Odecay\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avataryay\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Elcomeway!\"],\"knjY+b\":[\"Ouyay ancay e-openray ityay aterlay utbay ityay illway isappearday onyay othbay idessay.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Addyay iendfray\"],\"lSGjX7\":[\"Useryay Oinedjay Allcay\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Annelschay\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Oupgray Amenay\"],\"mAYvqA\":[\"Ellohay!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Ustomcay atusstay\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Utualmay Iendsfray\"],\"nbzz1A\":[\"Enterway Odecay\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Isthay isyay ethay artstay ofyay ouryay otesnay.\"],\"o+XJ9D\":[\"Angechay\"],\"oB4OOq\":[\"Anbay Embersmay\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Onlineway\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Ickkay Embersmay\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Efaultday\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Oglay Outway\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Umpjay otay ethay eginningbay\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Useryay Eftlay Allcay\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Myay Accountway\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Llaay Essagesmay\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 ersonpay eactedpay\"],\"rxaY+5\":[\"Oday Otnay Isturbday\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Eportray erversay\"],\"tBmnPU\":[\"Iendsfray\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Anagemay Ebhooksway\"],\"tdTuUv\":[\"Ockblay useryay\"],\"tfDRzk\":[\"Avesay\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Lockedbay Seruay\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ogay otay ethay esterstay server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Ickkay embermay\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Eleteday Oleray\"],\"utrCh2\":[\"Imeouttay Embersmay\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Aboutyay\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Erversay Escriptionday\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Ofilepray\"],\"vJum3e\":[\"Upportsay ethay ojectpray ybay onatingday - ankthay ouyay!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Ideovay\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edityay identityyay\"],\"vXIe7J\":[\"Anguagelay\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Easeplay avesay esethay otay away afesay ocationlay.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Ntereay Hannelcay\"],\"wL3cK8\":[\"Atestlay\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Embersmay\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Asquerademay\"],\"xDAtGP\":[\"Essagemay\"],\"xGVfLh\":[\"Ontinuecay\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Ansbay\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Ermstay ofway Ervicesay\"],\"xpgPPI\":[\"Ymay Otsbay\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Opycay inklay\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Iay onfirmcay hattay Iay maay taay eastlay 81ay earsyay ldoay.\"],\"yDOdwQ\":[\"Useryay Anagementmay\"],\"yIBLq8\":[\"Eakspay\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Oseclay\"],\"z0hW8A\":[\"Iewvay Ecoveryray Odescay\"],\"z0t9bb\":[\"Oginlay\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Okway\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Isthay isway ethay artstay ofway yourway onversationcay.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Ldestoay\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/piglatin/messages.mjs b/components/i18n/catalogs/piglatin/messages.mjs
new file mode 100644
index 0000000..03ad2f1
--- /dev/null
+++ b/components/i18n/catalogs/piglatin/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Utedmay\"],\"+YFgJi\":[\"Adgesbay\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Arkmay asyay eadray\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Eatecray ayay ewnay oleray\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Oglay outyay ofyay allyay otheryay essionssay\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Ickpay away usernameway atthay youway antway eoplepay otay ebay ableway otay indfay youway byay, isthay ancay ebay angedchay aterlay inway ettingssay.\"],\"/qQDwm\":[\"Eneratinggay inviteyay…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Eportray essagemay\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Ubmitsay eedbackfay\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Opycay essagemay IDyay\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Eavelay oupgray\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Ouyay ancay eportray issuesyay andyay iscussday improvementsyay ithway usyay irectlyday erehay.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Ockedblay\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Youway on'tway ebay ableway otay ejoinray unlessway youway areway e-invitedray.\"],\"3QuNUr\":[\"Everalsay eoplepay areyay ingtypay…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Alreadyway iendsfray ithway isthay userway.\"],\"3T8ziB\":[\"Eatecray anyay accountyay\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Essionssay\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Icknamenay\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Electsay yourway anguagelay\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Indfay ayay ommunitycay asedbay onyay ouryay obbieshay oryay interestsyay.\"],\"572q5a\":[\"Eportray useryay\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Arkmay asyay unreadyay\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Angechay Icknamenay\"],\"5dJK4M\":[\"Olesray\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overviewyay\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offlineway\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Useryay\"],\"7SU2U9\":[\"Opycay erversay IDyay\"],\"7VpPHA\":[\"Onfirmcay\"],\"7dZnmw\":[\"Elevanceray\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Usernameway\"],\"7vhWI8\":[\"Ewnay Asswordpay\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Anagemay Erversay\"],\"8FE4JE\":[\"Enableway authenticatorway appway\"],\"8VGnad\":[\"Enerategay Ecoveryray Odescay\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Asswordpay\"],\"8aTiea\":[\"Ustomisationcay\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enteryay ouryay usernameyay.\"],\"9D85wC\":[\"Opycay useryay IDyay\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Ermissionspay\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Anbay\"],\"9nffag\":[\"Iewingvay olderway essagesmay\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblockyay useryay\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Eatecray ayay oupgray\"],\"A9Rhec\":[\"Annelchay Amenay\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enteryay ayay ewnay asswordpay.\"],\"AU7IRi\":[\"Exttay Hannelcay\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Oicevay Hannelcay\"],\"BHsrDx\":[\"Invitesyay\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Essagemay asway entsay onyay anotheryay latformpay\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Iewvay Annelchay\"],\"CK7kdd\":[\"Earclay atusstay\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Annelchay Escriptionday\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Endsay Essagesmay\"],\"CkIs/i\":[\"Utemay Embersmay\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Urrentcay Asswordpay\"],\"DDpDsO\":[\"Inviteyay Odecay\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officialyay ommunicationcay\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Oneday\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Essagemay otnay oadedlay, lickcay otay umpjay\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Ubmitsay eaturefay uggestionsay\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Ickkay\"],\"EdQY6l\":[\"Onenay\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Onversationscay\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Entsay naay ttachmentaay\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Eatecray ategorycay\"],\"F1uGNS\":[\"Anagemay Icknamesnay\"],\"FEr96N\":[\"Emethay\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Emoveray Avatarsyay\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Enableway Esktopday Otificationsnay\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Ocusfay\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Opycay annelchay IDyay\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Utualmay Oupsgray\"],\"GhCPk1\":[\"Onceyay it'syay eletedday, ere'sthay onay oinggay ackbay.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enterway yourway urrentcay asswordpay.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Easeplay electsay away ethodmay otay authenticateway ouryay equestray.\"],\"HAKBY9\":[\"Uploadyay Ilesfay\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Avedsay Otesnay\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Esendray erificationvay\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Ovemay Embersmay\"],\"ImOQa9\":[\"Eplyray\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Entsay ultiplemay ttachmentsaay\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Onfirmcay actionway\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Iewvay olderway updatesway\"],\"JUJmXm\":[\"Easeplay onfirmcay usingyay electedsay ethodmay.\"],\"JW8mxK\":[\"Avesay otay yourway otesnay\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Elcomeway otay\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Ouyay ancay alsoyay ight-clickray ethay useryay iconyay inyay ethay optay eftlay , oryay eftlay ickclay ityay ifyay ou'reyay alreadyyay omehay .\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eleteday essagemay\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Ontentcay reaksbay oneyay oryay oremay awslay\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Oundssay\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officialyay Erversay\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Emoveray iendfray\"],\"LcET2C\":[\"Rivacypay Olicypay\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Lease allow up to 10 minutes for it to arrivepay.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Erversay amenay\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Eavelay\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Iewvay urrentlycay activeyay ugbay eportsray erehay.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ltlay usyay owknay owhay eway ancay improveyay ouryay appyay ybay ivinggay usyay eedbackfay.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ouryay accountyay ashay eenbyay eriviedvay!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Emailway\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ouyay on'tday avehay ermissionpay otay endsay essagesay niay histay hannelcay.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Esetray\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Oleray amenay\"],\"PWOA0E\":[\"Entionsmay Nlyoay\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Endsay Embedsway\"],\"PnzsrT\":[\"Ourcesay odecay\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Umpjay otay esentpray\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Idleway\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edityay essagemay\"],\"QqoBlW\":[\"Eckchay yourway ailmay!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Esetray asswordpay\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Ugbay rackertay\"],\"S3bIKF\":[\"opycay idyay\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Easeplay anscay orway useyay ethay okentay elowbay inway ouryay authenticationway appway.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Authenticatoryay\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Anagemay Essagesmay\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Anagemay Olesray\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ettingssay\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Inviteyay allyay ofyay ouryay iendsfray, omesay oolcay otsbay, andyay owthray ayay igbay artypay.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Angechay Avataryay\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Essagemay entsay\"],\"VJScHU\":[\"Easonray\"],\"VKsaTi\":[\"Eplyingray otay\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Eafenday Embersmay\"],\"VsHxv+\":[\"Opycay exttay\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Erifyingvay ouryay accountyay…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externalyay inkslay ancay ebay angerousday!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ientclay Ettingssay\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticatorway Appway\"],\"YcVBkL\":[\"Essagemay eceivedray\"],\"YirHq7\":[\"Eedbackfay\"],\"YlFpiA\":[\"Ailedfay otay erifyvay!\"],\"Yp+Hi/\":[\"Openyay ettingssay\"],\"Z5HWHd\":[\"Onyay\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ouryay ecoveryray odescay\"],\"aAIQg2\":[\"Appearanceway\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ouyay annotcay undoway isthay actionway.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Offyay\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Isableday accountyay\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Eadray Essagemay Istoryhay\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Anbay embermay\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Anagemay Ermissionspay\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviteryay\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eleteday\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Ancelcay\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Eatecray ayay ewnay otbay\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Inviteyay Othersyay\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisibleway\"],\"ekfzWq\":[\"Userway Ettingssay\"],\"etgedT\":[\"Emojisway\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Anagemay Ustomisationcay\"],\"fTMMeD\":[\"Eatecray inviteyay\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Egisterray\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Ancelcay equestray\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assignway Olesray\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Eportray\"],\"gkBHk/\":[\"Eatecray annelchay\"],\"gkmjYT\":[\"Eavelay erversay\"],\"go1IWB\":[\"Isthay userway ashay ockedblay youway.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eleteday annelchay\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Leasepay enteryay ouryay emailyay .\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Eatecray\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Omehay\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Otificationsnay\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Onnectcay\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Entionmay\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Otbay\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Ogay ackbay otay oginlay\"],\"jpJ5AL\":[\"Ecoveryway Odecay\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avataryay\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Elcomeway!\"],\"knjY+b\":[\"Ouyay ancay e-openray ityay aterlay utbay ityay illway isappearday onyay othbay idessay.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Addyay iendfray\"],\"lSGjX7\":[\"Useryay Oinedjay Allcay\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Annelschay\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Oupgray Amenay\"],\"mAYvqA\":[\"Ellohay!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Ustomcay atusstay\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Utualmay Iendsfray\"],\"nbzz1A\":[\"Enterway Odecay\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Isthay isyay ethay artstay ofyay ouryay otesnay.\"],\"o+XJ9D\":[\"Angechay\"],\"oB4OOq\":[\"Anbay Embersmay\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Onlineway\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Ickkay Embersmay\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Efaultday\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Oglay Outway\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Umpjay otay ethay eginningbay\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Useryay Eftlay Allcay\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Myay Accountway\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Llaay Essagesmay\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 ersonpay eactedpay\"],\"rxaY+5\":[\"Oday Otnay Isturbday\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Eportray erversay\"],\"tBmnPU\":[\"Iendsfray\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Anagemay Ebhooksway\"],\"tdTuUv\":[\"Ockblay useryay\"],\"tfDRzk\":[\"Avesay\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Lockedbay Seruay\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ogay otay ethay esterstay server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Ickkay embermay\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Eleteday Oleray\"],\"utrCh2\":[\"Imeouttay Embersmay\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Aboutyay\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Erversay Escriptionday\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Ofilepray\"],\"vJum3e\":[\"Upportsay ethay ojectpray ybay onatingday - ankthay ouyay!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Ideovay\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edityay identityyay\"],\"vXIe7J\":[\"Anguagelay\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Easeplay avesay esethay otay away afesay ocationlay.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Ntereay Hannelcay\"],\"wL3cK8\":[\"Atestlay\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Embersmay\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Asquerademay\"],\"xDAtGP\":[\"Essagemay\"],\"xGVfLh\":[\"Ontinuecay\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Ansbay\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Ermstay ofway Ervicesay\"],\"xpgPPI\":[\"Ymay Otsbay\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Opycay inklay\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Iay onfirmcay hattay Iay maay taay eastlay 81ay earsyay ldoay.\"],\"yDOdwQ\":[\"Useryay Anagementmay\"],\"yIBLq8\":[\"Eakspay\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Oseclay\"],\"z0hW8A\":[\"Iewvay Ecoveryray Odescay\"],\"z0t9bb\":[\"Oginlay\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Okway\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Isthay isway ethay artstay ofway yourway onversationcay.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Ldestoay\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/piglatin/messages.po b/components/i18n/catalogs/piglatin/messages.po
new file mode 100644
index 0000000..5fbfdcc
--- /dev/null
+++ b/components/i18n/catalogs/piglatin/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: piglatin\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 ersonpay eactedpay"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Aboutyay"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Addyay iendfray"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Llaay Essagesmay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Alreadyway iendsfray ithway isthay userway."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Appearanceway"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Assignway Olesray"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authenticatorway Appway"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avataryay"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Adgesbay"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Anbay"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Anbay embermay"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Anbay Embersmay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Ansbay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Ockblay useryay"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Ockedblay"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Lockedbay Seruay"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Otbay"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Ugbay rackertay"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Ancelcay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Ancelcay equestray"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Angechay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Angechay Avataryay"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Angechay Icknamenay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Annelchay Escriptionday"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Annelchay Amenay"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Annelschay"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Eckchay yourway ailmay!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Earclay atusstay"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Ientclay Ettingssay"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Oseclay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Onfirmcay"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Onfirmcay actionway"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Onnectcay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Ontentcay reaksbay oneyay oryay oremay awslay"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Ontinuecay"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Onversationscay"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Opycay annelchay IDyay"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "opycay idyay"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Opycay inklay"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Opycay essagemay IDyay"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Opycay erversay IDyay"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Opycay exttay"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Opycay useryay IDyay"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Eatecray"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Eatecray ayay oupgray"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Eatecray ayay ewnay otbay"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Eatecray ayay ewnay oleray"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Eatecray anyay accountyay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Eatecray ategorycay"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Eatecray annelchay"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Eatecray inviteyay"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Urrentcay Asswordpay"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Ustomcay atusstay"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Ustomisationcay"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Eafenday Embersmay"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Efaultday"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Eleteday"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Eleteday annelchay"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Eleteday essagemay"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Eleteday Oleray"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Isableday accountyay"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Oday Otnay Isturbday"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Oneday"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Edityay identityyay"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Edityay essagemay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Emailway"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojisway"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Enableway authenticatorway appway"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Enableway Esktopday Otificationsnay"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Enteryay ayay ewnay asswordpay."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Ntereay Hannelcay"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Enterway Odecay"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Enterway yourway urrentcay asswordpay."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Enteryay ouryay usernameyay."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Externalyay inkslay ancay ebay angerousday!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Ailedfay otay erifyvay!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Eedbackfay"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Indfay ayay ommunitycay asedbay onyay ouryay obbieshay oryay interestsyay."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Ocusfay"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Iendsfray"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Enerategay Ecoveryray Odescay"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Eneratinggay inviteyay…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Ogay ackbay otay oginlay"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Ogay otay ethay esterstay server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Oupgray Amenay"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Ellohay!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Omehay"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Iay onfirmcay hattay Iay maay taay eastlay 81ay earsyay ldoay."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Idleway"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisibleway"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Inviteyay allyay ofyay ouryay iendsfray, omesay oolcay otsbay, andyay owthray ayay igbay artypay."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Inviteyay Odecay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Inviteyay Othersyay"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Inviteryay"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitesyay"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Umpjay otay esentpray"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Umpjay otay ethay eginningbay"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Ickkay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Ickkay embermay"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Ickkay Embersmay"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Anguagelay"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Atestlay"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Eavelay"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Eavelay oupgray"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Eavelay erversay"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Ltlay usyay owknay owhay eway ancay improveyay ouryay appyay ybay ivinggay usyay eedbackfay."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Oglay Outway"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Oglay outyay ofyay allyay otheryay essionssay"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Oginlay"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Anagemay Ustomisationcay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Anagemay Essagesmay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Anagemay Icknamesnay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Anagemay Ermissionspay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Anagemay Olesray"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Anagemay Erversay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Anagemay Ebhooksway"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Arkmay asyay eadray"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Arkmay asyay unreadyay"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Asquerademay"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Embersmay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Entionmay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Entionsmay Nlyoay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Essagemay"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Essagemay otnay oadedlay, lickcay otay umpjay"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Essagemay eceivedray"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Essagemay entsay"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Essagemay asway entsay onyay anotheryay latformpay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Ovemay Embersmay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Utemay Embersmay"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Utedmay"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Utualmay Iendsfray"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Utualmay Oupsgray"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Myay Accountway"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Ymay Otsbay"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Ewnay Asswordpay"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Icknamenay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Onenay"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Otificationsnay"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Offyay"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Officialyay ommunicationcay"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Officialyay Erversay"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offlineway"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Okway"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Ldestoay"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Onyay"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Onceyay it'syay eletedday, ere'sthay onay oinggay ackbay."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Onlineway"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Openyay ettingssay"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Overviewyay"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Asswordpay"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Ermissionspay"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Ickpay away usernameway atthay youway antway eoplepay otay ebay ableway otay indfay youway byay, isthay ancay ebay angedchay aterlay inway ettingssay."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Easeplay onfirmcay usingyay electedsay ethodmay."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Leasepay enteryay ouryay emailyay ."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Easeplay avesay esethay otay away afesay ocationlay."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Easeplay anscay orway useyay ethay okentay elowbay inway ouryay authenticationway appway."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Easeplay electsay away ethodmay otay authenticateway ouryay equestray."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Rivacypay Olicypay"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Ofilepray"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Eadray Essagemay Istoryhay"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Easonray"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Ecoveryway Odecay"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Egisterray"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Elevanceray"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Authenticatoryay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Emoveray Avatarsyay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Emoveray iendfray"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Eplyray"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Eplyingray otay"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Eportray"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Eportray essagemay"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Eportray erversay"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Eportray useryay"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Esendray erificationvay"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Esetray"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Esetray asswordpay"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Oleray amenay"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Olesray"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Avesay"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Avesay otay yourway otesnay"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Avedsay Otesnay"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Electsay yourway anguagelay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Endsay Embedsway"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Endsay Essagesmay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Entsay naay ttachmentaay"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Entsay ultiplemay ttachmentsaay"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Erversay Escriptionday"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Erversay amenay"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Essionssay"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Ettingssay"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Everalsay eoplepay areyay ingtypay…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Oundssay"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Ourcesay odecay"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Eakspay"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Ubmitsay eaturefay uggestionsay"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Ubmitsay eedbackfay"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Upportsay ethay ojectpray ybay onatingday - ankthay ouyay!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Ermstay ofway Ervicesay"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Exttay Hannelcay"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Emethay"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Isthay isway ethay artstay ofway yourway onversationcay."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Isthay isyay ethay artstay ofyay ouryay otesnay."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Isthay userway ashay ockedblay youway."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Imeouttay Embersmay"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Unblockyay useryay"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Uploadyay Ilesfay"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Useryay"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Useryay Oinedjay Allcay"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Useryay Eftlay Allcay"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Useryay Anagementmay"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Userway Ettingssay"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Usernameway"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Erifyingvay ouryay accountyay…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Ideovay"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Iewvay Annelchay"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Iewvay urrentlycay activeyay ugbay eportsray erehay."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Iewvay olderway updatesway"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Iewvay Ecoveryray Odescay"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Iewingvay olderway essagesmay"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Oicevay Hannelcay"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Lease allow up to 10 minutes for it to arrivepay."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Elcomeway otay"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Elcomeway!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Ouyay ancay alsoyay ight-clickray ethay useryay iconyay inyay ethay optay eftlay , oryay eftlay ickclay ityay ifyay ou'reyay alreadyyay omehay ."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Ouyay ancay e-openray ityay aterlay utbay ityay illway isappearday onyay othbay idessay."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Ouyay ancay eportray issuesyay andyay iscussday improvementsyay ithway usyay irectlyday erehay."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Ouyay annotcay undoway isthay actionway."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Ouyay on'tday avehay ermissionpay otay endsay essagesay niay histay hannelcay."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Youway on'tway ebay ableway otay ejoinray unlessway youway areway e-invitedray."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Ouryay accountyay ashay eenbyay eriviedvay!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Ouryay ecoveryray odescay"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/pl/messages.js b/components/i18n/catalogs/pl/messages.js
new file mode 100644
index 0000000..d60dd36
--- /dev/null
+++ b/components/i18n/catalogs/pl/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Wyciszone\"],\"+YFgJi\":[\"Odznaki\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Oznacz jako przeczytane\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Stwórz nową rolę\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Wyloguj się ze wszystkich sesji poza obecną\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Wybierz nazwę użytkownika, po której ludzie będą mogli Cię znaleźć. Można to później zmienić w ustawieniach użytkownika.\"],\"/qQDwm\":[\"Generuję zaproszenie…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Zgłoś wiadomość\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Prześlij opinię\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Skopiuj ID wiadomości\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Wyjdź z grupy\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Tu możesz zgłaszać problemy i dyskutować z nami bezpośrednio na temat usprawnień.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Zablokowani\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nie będziesz mógł ponownie dołączyć, chyba że zostaniesz ponownie zaproszony.\"],\"3QuNUr\":[\"Wiele osób pisze…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ten użytkownik jest już twoim znajomym.\"],\"3T8ziB\":[\"Utwórz konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesje\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Przydomek\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Wybierz swój język\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Znajdź społeczność w oparciu o własne hobby lub zainteresowania.\"],\"572q5a\":[\"Zgłoś użytkownika\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Oznacz jako nieprzeczytane\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Zmiana pseudonimu\"],\"5dJK4M\":[\"Role\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Przegląd\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Niedostępny\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Użytkownik\"],\"7SU2U9\":[\"Skopiuj ID serwera\"],\"7VpPHA\":[\"Potwierdź\"],\"7dZnmw\":[\"Trafność\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nazwa użytkownika\"],\"7vhWI8\":[\"Nowe hasło\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Zarządzanie serwerem\"],\"8FE4JE\":[\"Włącz aplikację uwierzytelniającą\"],\"8VGnad\":[\"Wygeneruj kody odzyskiwania\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Hasło\"],\"8aTiea\":[\"Personalizacja\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Wprowadź preferowaną nazwę użytkownika.\"],\"9D85wC\":[\"Skopiuj ID użytkownika\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Zresetuj Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Uprawnienia\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Zbanuj\"],\"9nffag\":[\"Przeglądasz stare wiadomości\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokuj użytkownika\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Utwórz grupę\"],\"A9Rhec\":[\"Nazwa kanału\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Podaj nowe hasło.\"],\"AU7IRi\":[\"Kanał tekstowy\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Kanał głosowy\"],\"BHsrDx\":[\"Zaproszenia\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Wiadomość została wysłana na innej platformie\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Oglądanie kanału\"],\"CK7kdd\":[\"Usuń status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Opis kanału\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Wysyłanie wiadomości\"],\"CkIs/i\":[\"Wyciszeni użytkownicy\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Obecne hasło\"],\"DDpDsO\":[\"Kod zaproszenia\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficjalna komunikacja\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Gotowe\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Wiadomość nie została załadowana, kliknij aby przeskoczyć\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Prześlij propozycję funkcji\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Wyrzuć\"],\"EdQY6l\":[\"Brak\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Rozmowy\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Wysłał(a) załącznik\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Stwórz kategorię\"],\"F1uGNS\":[\"Zarządzanie pseudonimami\"],\"FEr96N\":[\"Motyw\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Usuwanie awatarów\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Włącz powiadomienia na pulpicie\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Skupienie\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Skopiuj ID kanału\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Wspólne grupy\"],\"GhCPk1\":[\"Akcja usunięcia jest nieodwracalna.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Wprowadź swoje obecne hasło.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Wybierz metodę uwierzytelnienia swojego zapytania.\"],\"HAKBY9\":[\"Wysyłanie plików\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Zapisane Notatki\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Wyślij weryfikację ponownie\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Przenoszenie członków\"],\"ImOQa9\":[\"Odpowiedz\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Wysłał(a) wiele załączników\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nie można usunąć konta, dopóki serwery nie zostaną usunięte lub przeniesione\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potwierdź akcję\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Zobacz starsze aktualizacje\"],\"JUJmXm\":[\"Potwierdź tę czynność używając wybranej metody.\"],\"JW8mxK\":[\"Zapisz w swoich notatkach\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Witaj w\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Możesz również kliknąć prawym przyciskiem myszy na ikonę użytkownika w lewym górnym rogu lub kliknąć ją lewym przyciskiem myszy, jeśli jesteś już na stronie głównej.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Usuń wiadomość\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Treść łamie jeden lub więcej przepisów\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Dźwięki\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficjalny serwer\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Usuń znajomego\"],\"LcET2C\":[\"Polityka prywatności\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Wysłaliśmy wiadomość weryfikacyjną. Proszę poczekaj do 10 minut na jej nadejście.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nazwa serwera\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Wyjdź\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Zobacz obecnie aktywne raporty o błędach.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Daj znać, jak możemy ulepszyć naszą aplikację, wysyłając nam swoją opinię.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Twoje konto zostało zweryfikowane!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nie masz uprawnień do wysyłania wiadomości na tym kanale.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Zresetuj\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Odrzuć zaproszenie do znajomych\"],\"PSP1MZ\":[\"Nazwa roli\"],\"PWOA0E\":[\"Tylko wzmianki\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Wysłanie embedów\"],\"PnzsrT\":[\"Kod źródłowy\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Skocz do najnowszych wiadomości\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Zaraz wracam\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edytuj wiadomość\"],\"QqoBlW\":[\"Sprawdź swojego emaila!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Zresetuj hasło\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Znane błędy\"],\"S3bIKF\":[\"Skopiuj ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Zeskanuj lub użyj poniższego tokenu w aplikacji uwierzytelniającej.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Usuń aplikację do uwierzytelniania\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Zarządzanie wiadomościami\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Zarządzanie rolami\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ustawienia\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Zaproś przyjaciół, parę fajnych botów i urządźcie wielką imprezę.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Zmiana awataru\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Wiadomość wysłana\"],\"VJScHU\":[\"Powód\"],\"VKsaTi\":[\"Odpowiadasz\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Wyłączanie dźwięku członkom\"],\"VsHxv+\":[\"Skopiuj tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Weryfikowanie konta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Zewnętrzne linki mogą być niebezpieczne!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ustawienia Klienta\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacja uwierzytelniająca\"],\"YcVBkL\":[\"Wiadomość otrzymana\"],\"YirHq7\":[\"Opinia\"],\"YlFpiA\":[\"Nie udało się zweryfikować!\"],\"Yp+Hi/\":[\"Otwórz ustawienia\"],\"Z5HWHd\":[\"Włączone\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Twoje kody odzyskiwania\"],\"aAIQg2\":[\"Wygląd\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Nie możesz cofnąć tej akcji.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Wyłączone\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Wyłącz konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Czytanie historii wiadomości\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Zbanuj członka\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Zarządzanie uprawnieniami\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Zapraszający\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Usuń\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Anuluj\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Utwórz nowego bota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Zapraszanie innych\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Niewidoczny\"],\"ekfzWq\":[\"Ustawienia Użytkownika\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Zarządzanie personalizacją\"],\"fTMMeD\":[\"Stwórz zaproszenie\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Załóż konto\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Anuluj zaproszenie do znajomych\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Przypisywanie ról\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Zgłoś\"],\"gkBHk/\":[\"Stwórz kanał\"],\"gkmjYT\":[\"Wyjdź z serwera\"],\"go1IWB\":[\"Ten użytkownik cię zablokował.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Usuń kanał\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Wpisz tutaj swojego emaila.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Stwórz\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Strona główna\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Łączenie się\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Wspomnij\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Wróć do logowania\"],\"jpJ5AL\":[\"Kody odzyskiwania\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Awatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Witamy!\"],\"knjY+b\":[\"Możesz ją później ponownie otworzyć, ale zniknie ona po obu stronach.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dodaj znajomego\"],\"lSGjX7\":[\"Użytkownik dołączył do rozmowy\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanały\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nazwa grupy\"],\"mAYvqA\":[\"Witaj!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edytuj swoją tożsamość\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Nie będzie mógł uzyskać dostępu do swojego konta, chyba że skontaktujesz się z pomocą techniczną - jednak twoje dane nie zostaną usunięte.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Niestandardowy status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Wspólni znajomi\"],\"nbzz1A\":[\"Wpisz kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"To jest początek twoich notatek.\"],\"o+XJ9D\":[\"Zmień\"],\"oB4OOq\":[\"Banowanie członków\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Dostępny\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Wyrzucanie członków\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Domyślne\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Wyloguj\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Skocz do początku\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Użytkownik wyszedł z rozmowy\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Moje Konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Wszystkie wiadomości\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 osoba zareagowała\"],\"rxaY+5\":[\"Nie przeszkadzać\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Zaawansowane\"],\"t43mBk\":[\"Zgłoś serwer\"],\"tBmnPU\":[\"Znajomi\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Zarządzanie webhookami\"],\"tdTuUv\":[\"Zablokuj użytkownika\"],\"tfDRzk\":[\"Zapisz\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Zablokowany użytkownik\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Przejdź do serwera testerów\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Wyrzuć członka\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Usuń rolę\"],\"utrCh2\":[\"Limit czasu użytkowników\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O nas\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Opis serwera\"],\"v1kQyJ\":[\"Webhooki\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Wesprzyj projekt przekazując darowiznę - dziękujemy!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Wideo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edytuj tożsamość\"],\"vXIe7J\":[\"Język\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Zapisz je w bezpiecznym miejscu.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Wiadomości\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Dołącz do kanału\"],\"wL3cK8\":[\"Najnowsze\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Członkowie\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskarada\"],\"xDAtGP\":[\"Wyślij wiadomość\"],\"xGVfLh\":[\"Kontynuuj\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bany\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Warunki korzystania z usługi\"],\"xpgPPI\":[\"Moje boty\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Zaakceptuj zaproszenie do znajomych\"],\"y1eoq1\":[\"Skopiuj link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potwierdzam, że mam przynajmniej 18 lat.\"],\"yDOdwQ\":[\"Zarządzanie użytkownikami\"],\"yIBLq8\":[\"Mówienie\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zamknij\"],\"z0hW8A\":[\"Wyświetl kody odzyskiwania\"],\"z0t9bb\":[\"Zaloguj się\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"To jest początek twojej rozmowy.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstarsze\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/pl/messages.mjs b/components/i18n/catalogs/pl/messages.mjs
new file mode 100644
index 0000000..249f3fd
--- /dev/null
+++ b/components/i18n/catalogs/pl/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Wyciszone\"],\"+YFgJi\":[\"Odznaki\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Oznacz jako przeczytane\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Stwórz nową rolę\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Wyloguj się ze wszystkich sesji poza obecną\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Wybierz nazwę użytkownika, po której ludzie będą mogli Cię znaleźć. Można to później zmienić w ustawieniach użytkownika.\"],\"/qQDwm\":[\"Generuję zaproszenie…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Zgłoś wiadomość\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Prześlij opinię\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Skopiuj ID wiadomości\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Wyjdź z grupy\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Tu możesz zgłaszać problemy i dyskutować z nami bezpośrednio na temat usprawnień.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Zablokowani\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nie będziesz mógł ponownie dołączyć, chyba że zostaniesz ponownie zaproszony.\"],\"3QuNUr\":[\"Wiele osób pisze…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ten użytkownik jest już twoim znajomym.\"],\"3T8ziB\":[\"Utwórz konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesje\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Przydomek\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Wybierz swój język\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Znajdź społeczność w oparciu o własne hobby lub zainteresowania.\"],\"572q5a\":[\"Zgłoś użytkownika\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Oznacz jako nieprzeczytane\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Zmiana pseudonimu\"],\"5dJK4M\":[\"Role\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Przegląd\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Niedostępny\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Użytkownik\"],\"7SU2U9\":[\"Skopiuj ID serwera\"],\"7VpPHA\":[\"Potwierdź\"],\"7dZnmw\":[\"Trafność\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nazwa użytkownika\"],\"7vhWI8\":[\"Nowe hasło\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Zarządzanie serwerem\"],\"8FE4JE\":[\"Włącz aplikację uwierzytelniającą\"],\"8VGnad\":[\"Wygeneruj kody odzyskiwania\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Hasło\"],\"8aTiea\":[\"Personalizacja\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Wprowadź preferowaną nazwę użytkownika.\"],\"9D85wC\":[\"Skopiuj ID użytkownika\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Zresetuj Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Uprawnienia\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Zbanuj\"],\"9nffag\":[\"Przeglądasz stare wiadomości\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokuj użytkownika\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Utwórz grupę\"],\"A9Rhec\":[\"Nazwa kanału\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Podaj nowe hasło.\"],\"AU7IRi\":[\"Kanał tekstowy\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Kanał głosowy\"],\"BHsrDx\":[\"Zaproszenia\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Wiadomość została wysłana na innej platformie\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Oglądanie kanału\"],\"CK7kdd\":[\"Usuń status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Opis kanału\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Wysyłanie wiadomości\"],\"CkIs/i\":[\"Wyciszeni użytkownicy\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Obecne hasło\"],\"DDpDsO\":[\"Kod zaproszenia\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficjalna komunikacja\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Gotowe\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Wiadomość nie została załadowana, kliknij aby przeskoczyć\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Prześlij propozycję funkcji\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Wyrzuć\"],\"EdQY6l\":[\"Brak\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Rozmowy\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Wysłał(a) załącznik\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Stwórz kategorię\"],\"F1uGNS\":[\"Zarządzanie pseudonimami\"],\"FEr96N\":[\"Motyw\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Usuwanie awatarów\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Włącz powiadomienia na pulpicie\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Skupienie\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Skopiuj ID kanału\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Wspólne grupy\"],\"GhCPk1\":[\"Akcja usunięcia jest nieodwracalna.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Wprowadź swoje obecne hasło.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Wybierz metodę uwierzytelnienia swojego zapytania.\"],\"HAKBY9\":[\"Wysyłanie plików\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Zapisane Notatki\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Wyślij weryfikację ponownie\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Przenoszenie członków\"],\"ImOQa9\":[\"Odpowiedz\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Wysłał(a) wiele załączników\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nie można usunąć konta, dopóki serwery nie zostaną usunięte lub przeniesione\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potwierdź akcję\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Zobacz starsze aktualizacje\"],\"JUJmXm\":[\"Potwierdź tę czynność używając wybranej metody.\"],\"JW8mxK\":[\"Zapisz w swoich notatkach\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Witaj w\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Możesz również kliknąć prawym przyciskiem myszy na ikonę użytkownika w lewym górnym rogu lub kliknąć ją lewym przyciskiem myszy, jeśli jesteś już na stronie głównej.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Usuń wiadomość\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Treść łamie jeden lub więcej przepisów\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Dźwięki\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficjalny serwer\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Usuń znajomego\"],\"LcET2C\":[\"Polityka prywatności\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Wysłaliśmy wiadomość weryfikacyjną. Proszę poczekaj do 10 minut na jej nadejście.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nazwa serwera\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Wyjdź\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Zobacz obecnie aktywne raporty o błędach.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Daj znać, jak możemy ulepszyć naszą aplikację, wysyłając nam swoją opinię.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Twoje konto zostało zweryfikowane!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nie masz uprawnień do wysyłania wiadomości na tym kanale.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Zresetuj\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Odrzuć zaproszenie do znajomych\"],\"PSP1MZ\":[\"Nazwa roli\"],\"PWOA0E\":[\"Tylko wzmianki\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Wysłanie embedów\"],\"PnzsrT\":[\"Kod źródłowy\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Skocz do najnowszych wiadomości\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Zaraz wracam\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edytuj wiadomość\"],\"QqoBlW\":[\"Sprawdź swojego emaila!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Zresetuj hasło\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Znane błędy\"],\"S3bIKF\":[\"Skopiuj ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Zeskanuj lub użyj poniższego tokenu w aplikacji uwierzytelniającej.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Usuń aplikację do uwierzytelniania\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Zarządzanie wiadomościami\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Zarządzanie rolami\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Ustawienia\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Zaproś przyjaciół, parę fajnych botów i urządźcie wielką imprezę.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Zmiana awataru\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Wiadomość wysłana\"],\"VJScHU\":[\"Powód\"],\"VKsaTi\":[\"Odpowiadasz\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Wyłączanie dźwięku członkom\"],\"VsHxv+\":[\"Skopiuj tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Weryfikowanie konta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Zewnętrzne linki mogą być niebezpieczne!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Ustawienia Klienta\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacja uwierzytelniająca\"],\"YcVBkL\":[\"Wiadomość otrzymana\"],\"YirHq7\":[\"Opinia\"],\"YlFpiA\":[\"Nie udało się zweryfikować!\"],\"Yp+Hi/\":[\"Otwórz ustawienia\"],\"Z5HWHd\":[\"Włączone\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Twoje kody odzyskiwania\"],\"aAIQg2\":[\"Wygląd\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Nie możesz cofnąć tej akcji.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Wyłączone\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Wyłącz konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Czytanie historii wiadomości\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Zbanuj członka\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Zarządzanie uprawnieniami\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Zapraszający\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Usuń\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Anuluj\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Utwórz nowego bota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Zapraszanie innych\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Niewidoczny\"],\"ekfzWq\":[\"Ustawienia Użytkownika\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Zarządzanie personalizacją\"],\"fTMMeD\":[\"Stwórz zaproszenie\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Załóż konto\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Anuluj zaproszenie do znajomych\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Przypisywanie ról\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Zgłoś\"],\"gkBHk/\":[\"Stwórz kanał\"],\"gkmjYT\":[\"Wyjdź z serwera\"],\"go1IWB\":[\"Ten użytkownik cię zablokował.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Usuń kanał\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Wpisz tutaj swojego emaila.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Stwórz\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Strona główna\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Łączenie się\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Wspomnij\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Wróć do logowania\"],\"jpJ5AL\":[\"Kody odzyskiwania\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Awatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Witamy!\"],\"knjY+b\":[\"Możesz ją później ponownie otworzyć, ale zniknie ona po obu stronach.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dodaj znajomego\"],\"lSGjX7\":[\"Użytkownik dołączył do rozmowy\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanały\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nazwa grupy\"],\"mAYvqA\":[\"Witaj!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edytuj swoją tożsamość\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Nie będzie mógł uzyskać dostępu do swojego konta, chyba że skontaktujesz się z pomocą techniczną - jednak twoje dane nie zostaną usunięte.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Niestandardowy status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Wspólni znajomi\"],\"nbzz1A\":[\"Wpisz kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"To jest początek twoich notatek.\"],\"o+XJ9D\":[\"Zmień\"],\"oB4OOq\":[\"Banowanie członków\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Dostępny\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Wyrzucanie członków\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Domyślne\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Wyloguj\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Skocz do początku\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Użytkownik wyszedł z rozmowy\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Moje Konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Wszystkie wiadomości\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 osoba zareagowała\"],\"rxaY+5\":[\"Nie przeszkadzać\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Zaawansowane\"],\"t43mBk\":[\"Zgłoś serwer\"],\"tBmnPU\":[\"Znajomi\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Zarządzanie webhookami\"],\"tdTuUv\":[\"Zablokuj użytkownika\"],\"tfDRzk\":[\"Zapisz\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Zablokowany użytkownik\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Przejdź do serwera testerów\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Wyrzuć członka\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Usuń rolę\"],\"utrCh2\":[\"Limit czasu użytkowników\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O nas\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Opis serwera\"],\"v1kQyJ\":[\"Webhooki\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Wesprzyj projekt przekazując darowiznę - dziękujemy!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Wideo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edytuj tożsamość\"],\"vXIe7J\":[\"Język\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Zapisz je w bezpiecznym miejscu.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Wiadomości\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Dołącz do kanału\"],\"wL3cK8\":[\"Najnowsze\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Członkowie\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskarada\"],\"xDAtGP\":[\"Wyślij wiadomość\"],\"xGVfLh\":[\"Kontynuuj\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bany\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Warunki korzystania z usługi\"],\"xpgPPI\":[\"Moje boty\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Zaakceptuj zaproszenie do znajomych\"],\"y1eoq1\":[\"Skopiuj link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potwierdzam, że mam przynajmniej 18 lat.\"],\"yDOdwQ\":[\"Zarządzanie użytkownikami\"],\"yIBLq8\":[\"Mówienie\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zamknij\"],\"z0hW8A\":[\"Wyświetl kody odzyskiwania\"],\"z0t9bb\":[\"Zaloguj się\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"To jest początek twojej rozmowy.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstarsze\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/pl/messages.po b/components/i18n/catalogs/pl/messages.po
new file mode 100644
index 0000000..32a55e9
--- /dev/null
+++ b/components/i18n/catalogs/pl/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: pl\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 osoba zareagowała"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "O nas"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Zaakceptuj zaproszenie do znajomych"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Dodaj znajomego"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Zaawansowane"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Wszystkie wiadomości"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Ten użytkownik jest już twoim znajomym."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Wygląd"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Przypisywanie ról"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplikacja uwierzytelniająca"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Awatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Odznaki"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Zbanuj"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Zbanuj członka"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Banowanie członków"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bany"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Zablokuj użytkownika"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Zablokowani"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Zablokowany użytkownik"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Znane błędy"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Anuluj"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Anuluj zaproszenie do znajomych"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Nie można usunąć konta, dopóki serwery nie zostaną usunięte lub przeniesione"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Zmień"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Zmiana awataru"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Zmiana pseudonimu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Opis kanału"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nazwa kanału"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanały"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Sprawdź swojego emaila!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Usuń status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Ustawienia Klienta"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Zamknij"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Potwierdź"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Potwierdź akcję"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Łączenie się"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Treść łamie jeden lub więcej przepisów"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Kontynuuj"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Rozmowy"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Skopiuj ID kanału"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Skopiuj ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Skopiuj link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Skopiuj ID wiadomości"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Skopiuj ID serwera"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Skopiuj tekst"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Skopiuj ID użytkownika"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Stwórz"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Utwórz grupę"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Utwórz nowego bota"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Stwórz nową rolę"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Utwórz konto"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Stwórz kategorię"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Stwórz kanał"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Stwórz zaproszenie"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Obecne hasło"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Niestandardowy status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalizacja"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Wyłączanie dźwięku członkom"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Domyślne"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Usuń"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Usuń kanał"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Usuń wiadomość"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Usuń rolę"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Wyłącz konto"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Nie przeszkadzać"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Gotowe"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Edytuj tożsamość"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Edytuj wiadomość"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Edytuj swoją tożsamość"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Włącz aplikację uwierzytelniającą"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Włącz powiadomienia na pulpicie"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Podaj nowe hasło."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Dołącz do kanału"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Wpisz kod"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Wprowadź swoje obecne hasło."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Wprowadź preferowaną nazwę użytkownika."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Zewnętrzne linki mogą być niebezpieczne!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Nie udało się zweryfikować!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Opinia"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Znajdź społeczność w oparciu o własne hobby lub zainteresowania."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Skupienie"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Znajomi"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Wygeneruj kody odzyskiwania"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generuję zaproszenie…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Wróć do logowania"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Przejdź do serwera testerów"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nazwa grupy"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Witaj!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Strona główna"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Potwierdzam, że mam przynajmniej 18 lat."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Zaraz wracam"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Niewidoczny"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Zaproś przyjaciół, parę fajnych botów i urządźcie wielką imprezę."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kod zaproszenia"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Zapraszanie innych"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Zapraszający"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Zaproszenia"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Skocz do najnowszych wiadomości"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Skocz do początku"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Wyrzuć"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Wyrzuć członka"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Wyrzucanie członków"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Język"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Najnowsze"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Wyjdź"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Wyjdź z grupy"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Wyjdź z serwera"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Daj znać, jak możemy ulepszyć naszą aplikację, wysyłając nam swoją opinię."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Wyloguj"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Wyloguj się ze wszystkich sesji poza obecną"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Zaloguj się"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Zarządzanie personalizacją"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Zarządzanie wiadomościami"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Zarządzanie pseudonimami"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Zarządzanie uprawnieniami"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Zarządzanie rolami"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Zarządzanie serwerem"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Zarządzanie webhookami"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Oznacz jako przeczytane"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Oznacz jako nieprzeczytane"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskarada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Członkowie"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Wspomnij"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Tylko wzmianki"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Wyślij wiadomość"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Wiadomość nie została załadowana, kliknij aby przeskoczyć"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Wiadomość otrzymana"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Wiadomość wysłana"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Wiadomość została wysłana na innej platformie"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Wiadomości"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Przenoszenie członków"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Wyciszeni użytkownicy"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Wyciszone"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Wspólni znajomi"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Wspólne grupy"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Moje Konto"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Moje boty"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nowe hasło"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Przydomek"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Brak"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Powiadomienia"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Wyłączone"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Oficjalna komunikacja"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Oficjalny serwer"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Niedostępny"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ok"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Najstarsze"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Włączone"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Akcja usunięcia jest nieodwracalna."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Dostępny"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Otwórz ustawienia"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Przegląd"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Hasło"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Uprawnienia"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Wybierz nazwę użytkownika, po której ludzie będą mogli Cię znaleźć. Można to później zmienić w ustawieniach użytkownika."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Potwierdź tę czynność używając wybranej metody."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Wpisz tutaj swojego emaila."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Zapisz je w bezpiecznym miejscu."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Zeskanuj lub użyj poniższego tokenu w aplikacji uwierzytelniającej."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Wybierz metodę uwierzytelnienia swojego zapytania."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Polityka prywatności"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Czytanie historii wiadomości"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Powód"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Kody odzyskiwania"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Załóż konto"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Odrzuć zaproszenie do znajomych"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Trafność"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Usuń aplikację do uwierzytelniania"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Usuwanie awatarów"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Usuń znajomego"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Odpowiedz"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Odpowiadasz"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Zgłoś"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Zgłoś wiadomość"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Zgłoś serwer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Zgłoś użytkownika"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Wyślij weryfikację ponownie"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Zresetuj"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Zresetuj hasło"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Zresetuj Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nazwa roli"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Role"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Zapisz"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Zapisz w swoich notatkach"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Zapisane Notatki"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Wybierz swój język"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Wysłanie embedów"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Wysyłanie wiadomości"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Wysłał(a) załącznik"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Wysłał(a) wiele załączników"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Opis serwera"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nazwa serwera"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesje"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Ustawienia"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Wiele osób pisze…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Dźwięki"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Kod źródłowy"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Mówienie"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Prześlij propozycję funkcji"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Prześlij opinię"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Wesprzyj projekt przekazując darowiznę - dziękujemy!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Warunki korzystania z usługi"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Kanał tekstowy"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Motyw"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "To jest początek twojej rozmowy."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "To jest początek twoich notatek."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Ten użytkownik cię zablokował."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Limit czasu użytkowników"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Odblokuj użytkownika"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Wysyłanie plików"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Użytkownik"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Użytkownik dołączył do rozmowy"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Użytkownik wyszedł z rozmowy"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Zarządzanie użytkownikami"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Ustawienia Użytkownika"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nazwa użytkownika"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Weryfikowanie konta…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Wideo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Oglądanie kanału"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Zobacz obecnie aktywne raporty o błędach."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Zobacz starsze aktualizacje"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Wyświetl kody odzyskiwania"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Przeglądasz stare wiadomości"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Kanał głosowy"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Wysłaliśmy wiadomość weryfikacyjną. Proszę poczekaj do 10 minut na jej nadejście."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooki"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Witaj w"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Witamy!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Możesz również kliknąć prawym przyciskiem myszy na ikonę użytkownika w lewym górnym rogu lub kliknąć ją lewym przyciskiem myszy, jeśli jesteś już na stronie głównej."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Możesz ją później ponownie otworzyć, ale zniknie ona po obu stronach."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Tu możesz zgłaszać problemy i dyskutować z nami bezpośrednio na temat usprawnień."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Nie możesz cofnąć tej akcji."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Nie masz uprawnień do wysyłania wiadomości na tym kanale."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Nie będzie mógł uzyskać dostępu do swojego konta, chyba że skontaktujesz się z pomocą techniczną - jednak twoje dane nie zostaną usunięte."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nie będziesz mógł ponownie dołączyć, chyba że zostaniesz ponownie zaproszony."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Twoje konto zostało zweryfikowane!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Twoje kody odzyskiwania"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/pr/messages.js b/components/i18n/catalogs/pr/messages.js
new file mode 100644
index 0000000..b8d7aa3
--- /dev/null
+++ b/components/i18n/catalogs/pr/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Mutd'\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Declare as perused\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create ye new rank\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out o' all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Grab ye' usarname that you want scallywags bein' able to travel to yer ship by, this be changed latr' in settins'.\"],\"/qQDwm\":[\"Crafting yer ship ladder…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Offer yer thoughts\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Maroon ye crew\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Ye can report issues and discuss improvements with us d'rectly here yarr.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Exiled\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ye' be unable to get yer booty back on th' ship till yer re-invited.\"],\"3QuNUr\":[\"Several scallywags be typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already a part of your crew.\"],\"3T8ziB\":[\"Create an arrrcount\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Swashbucklin’ session\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Alias\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select yer language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Onto the Crowsnest.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Declare as uncharted\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change ye crew name\"],\"5dJK4M\":[\"Ship Positions\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Birds Eye View\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"On leave\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Pirate\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Handsomeness\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Usarname\"],\"7vhWI8\":[\"New Codeword\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Captain the Ship\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Make ye' recovery ways\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Secret codeword\"],\"8aTiea\":[\"Personalized Arrangements\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter yer preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Ye Allowings\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"blacklist\"],\"9nffag\":[\"Viewin' older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unkeelhaul the shark bait\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a maties\"],\"A9Rhec\":[\"Name o' the Deck\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter ye' new codeword.\"],\"AU7IRi\":[\"Scribin' deck\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Speakin' deck\"],\"BHsrDx\":[\"Summonings\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Bottled message was sent from another ship\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Board\"],\"CK7kdd\":[\"Clear ye status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Crew Manifest\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Sail, Ho!\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current secret codeword\"],\"DDpDsO\":[\"Summon Scroll\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Ye official chit-chattin'\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Yer message ain't loadin', click to travel\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Propose a ship improvement\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Natters\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent a parcel\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Ye' Sea Name\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Pirate Looks\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Turn on ye' plank sounds\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Spyglassin'\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Crews in Common\"],\"GhCPk1\":[\"Once it's thrown in ye' ocean, there be no gettin' it back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter yer current codeword.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Kindly choose a way to prove yer request be true.\"],\"HAKBY9\":[\"Share ye booty!\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Captain's Log\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend yer verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent numerous parcels\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Can’t sink yer account till the ships be sunk or set sail t’ new masters\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm yer actions, matey\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Behold previous updates\"],\"JUJmXm\":[\"Confirm with yer selected way of doin'.\"],\"JW8mxK\":[\"Save t' yer notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Ye' be welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Ye can also right-skewer the user icon in the top left, or left skewer it if ye're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content be breakin' one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sea Noises\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Partner'd Ship\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove me bucko\"],\"LcET2C\":[\"Policy o' Shipshape\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We sent ye a verification message. Allow up t’ 10 minutes fer it t’ arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Name of ye Port\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Gaze upon the currently active bug reckonings here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ye be lettin' us know how t' improve.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Yer 'count has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ye don't have permission t' send messages in dis channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Shouts Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Ye' Treasure Mark\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump t' present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"On a voyage\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check yer mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset codeword\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rat Finder\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Send yer Authenticator off to Davy Jone's locker\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Command Positions\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settins'\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Get some 'ands on deck!\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Pirate Looks\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Th' bottled Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Ye Replyin to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying yer 'count…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Beware of external links! They may be a treacherous trap!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settins'\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticatarr App\"],\"YcVBkL\":[\"Th' bottled Message Received\"],\"YirHq7\":[\"Pirate Advice\"],\"YlFpiA\":[\"Didn't find ye' right treasure chest key!\"],\"Yp+Hi/\":[\"Open Settins\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Yer 'covery codes\"],\"aAIQg2\":[\"Ye' Pirate Looks\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"There be no turnin' back from this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Walk Ye Plank\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Hang ‘em from the yardarm\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Oversee Authority\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Summoner\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Forge a new Landlubber\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others to the Ship\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"On leave\"],\"ekfzWq\":[\"Pirate Settins'\"],\"etgedT\":[\"yer crew\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Start 'iring 'ands\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registarrr\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel yer demand\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Maroon ye ship\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Enter yer scroll o’ letters.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Mainland\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ye' Loud Ship Bells\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Anchor\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Call out\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Deckhand\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back t' login\"],\"jpJ5AL\":[\"'Covery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Ahoy!\"],\"knjY+b\":[\"Ye can unfurl it again at a later time, but it'll vanish from both horizons.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Hire 'ands\"],\"lSGjX7\":[\"Mariner Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Oceans\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Maties Name\"],\"mAYvqA\":[\"Ahoy!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Ye won't be gettin' to yer treasure chest 'less ye send a parrot to the quartermaster - but fear not, yer loot won't be plundered.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Ye own status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Shipmates in Common\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of yer notes.\"],\"o+XJ9D\":[\"Change yarr\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"On-deck\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Make 'em Walk the Plank\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Abort ye Ship\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Start from ye starts\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Mariner Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Me Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Entire Messageboard\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 scallywag put a message in the bottle\"],\"rxaY+5\":[\"In Th' Cabins\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Crewmates\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Keelhaul the shark bait\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Dead men tell no tales\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go t' the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Boot the sailor\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"'Obout\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Cog Tale\"],\"v1kQyJ\":[\"Seaworthy Links\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Yarrr give some doubloons, ye bilge rat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Tongue\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Keep 'em valuables piece of treasure safe y'here me matey?\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Board Channel\"],\"wL3cK8\":[\"Newest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Pirates\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Be lyin'\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Plank Walkers\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms o' Service\"],\"xpgPPI\":[\"Me Landlubbers\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy yer link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years ole.\"],\"yDOdwQ\":[\"Manage ye Pirate\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"See 'em 'Covery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Aye\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dis be thar start o' yer conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Olest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/pr/messages.mjs b/components/i18n/catalogs/pr/messages.mjs
new file mode 100644
index 0000000..d806bb8
--- /dev/null
+++ b/components/i18n/catalogs/pr/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Mutd'\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Declare as perused\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create ye new rank\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Log out o' all other sessions\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Grab ye' usarname that you want scallywags bein' able to travel to yer ship by, this be changed latr' in settins'.\"],\"/qQDwm\":[\"Crafting yer ship ladder…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Offer yer thoughts\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Maroon ye crew\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Ye can report issues and discuss improvements with us d'rectly here yarr.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Exiled\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ye' be unable to get yer booty back on th' ship till yer re-invited.\"],\"3QuNUr\":[\"Several scallywags be typing…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already a part of your crew.\"],\"3T8ziB\":[\"Create an arrrcount\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Swashbucklin’ session\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Alias\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Select yer language\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Onto the Crowsnest.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Declare as uncharted\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change ye crew name\"],\"5dJK4M\":[\"Ship Positions\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Birds Eye View\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"On leave\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Pirate\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"Handsomeness\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Usarname\"],\"7vhWI8\":[\"New Codeword\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Captain the Ship\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Make ye' recovery ways\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Secret codeword\"],\"8aTiea\":[\"Personalized Arrangements\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Enter yer preferred username.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Ye Allowings\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"blacklist\"],\"9nffag\":[\"Viewin' older messages\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unkeelhaul the shark bait\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Create a maties\"],\"A9Rhec\":[\"Name o' the Deck\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter ye' new codeword.\"],\"AU7IRi\":[\"Scribin' deck\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Speakin' deck\"],\"BHsrDx\":[\"Summonings\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Bottled message was sent from another ship\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Board\"],\"CK7kdd\":[\"Clear ye status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Crew Manifest\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Sail, Ho!\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Current secret codeword\"],\"DDpDsO\":[\"Summon Scroll\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Ye official chit-chattin'\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Yer message ain't loadin', click to travel\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Propose a ship improvement\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"None\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Natters\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Sent a parcel\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Ye' Sea Name\"],\"FEr96N\":[\"Theme\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Pirate Looks\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Turn on ye' plank sounds\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Spyglassin'\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Crews in Common\"],\"GhCPk1\":[\"Once it's thrown in ye' ocean, there be no gettin' it back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Enter yer current codeword.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Kindly choose a way to prove yer request be true.\"],\"HAKBY9\":[\"Share ye booty!\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Captain's Log\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Resend yer verification\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Sent numerous parcels\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Can’t sink yer account till the ships be sunk or set sail t’ new masters\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm yer actions, matey\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Behold previous updates\"],\"JUJmXm\":[\"Confirm with yer selected way of doin'.\"],\"JW8mxK\":[\"Save t' yer notes\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Ye' be welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Ye can also right-skewer the user icon in the top left, or left skewer it if ye're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content be breakin' one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sea Noises\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Partner'd Ship\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove me bucko\"],\"LcET2C\":[\"Policy o' Shipshape\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"We sent ye a verification message. Allow up t’ 10 minutes fer it t’ arrive.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Name of ye Port\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Gaze upon the currently active bug reckonings here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Ye be lettin' us know how t' improve.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Yer 'count has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ye don't have permission t' send messages in dis channel.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"Shouts Only\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"Ye' Treasure Mark\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Jump t' present\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"On a voyage\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"Check yer mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Reset codeword\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rat Finder\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Send yer Authenticator off to Davy Jone's locker\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Command Positions\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Settins'\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Get some 'ands on deck!\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Pirate Looks\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Th' bottled Message Sent\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Ye Replyin to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying yer 'count…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Beware of external links! They may be a treacherous trap!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Client Settins'\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticatarr App\"],\"YcVBkL\":[\"Th' bottled Message Received\"],\"YirHq7\":[\"Pirate Advice\"],\"YlFpiA\":[\"Didn't find ye' right treasure chest key!\"],\"Yp+Hi/\":[\"Open Settins\"],\"Z5HWHd\":[\"On\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Yer 'covery codes\"],\"aAIQg2\":[\"Ye' Pirate Looks\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"There be no turnin' back from this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Off\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Walk Ye Plank\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Hang ‘em from the yardarm\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Oversee Authority\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Summoner\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Forge a new Landlubber\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others to the Ship\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"On leave\"],\"ekfzWq\":[\"Pirate Settins'\"],\"etgedT\":[\"yer crew\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Start 'iring 'ands\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registarrr\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel yer demand\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Maroon ye ship\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Enter yer scroll o’ letters.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Mainland\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Ye' Loud Ship Bells\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Anchor\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Call out\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Deckhand\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Go back t' login\"],\"jpJ5AL\":[\"'Covery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Ahoy!\"],\"knjY+b\":[\"Ye can unfurl it again at a later time, but it'll vanish from both horizons.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Hire 'ands\"],\"lSGjX7\":[\"Mariner Joined Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Oceans\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Maties Name\"],\"mAYvqA\":[\"Ahoy!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Ye won't be gettin' to yer treasure chest 'less ye send a parrot to the quartermaster - but fear not, yer loot won't be plundered.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Ye own status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Shipmates in Common\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"This is the start of yer notes.\"],\"o+XJ9D\":[\"Change yarr\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"On-deck\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Make 'em Walk the Plank\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Abort ye Ship\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Start from ye starts\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Mariner Left Call\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Me Account\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Entire Messageboard\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 scallywag put a message in the bottle\"],\"rxaY+5\":[\"In Th' Cabins\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"Crewmates\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Keelhaul the shark bait\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Dead men tell no tales\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Go t' the testers server\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Boot the sailor\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"'Obout\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Cog Tale\"],\"v1kQyJ\":[\"Seaworthy Links\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Yarrr give some doubloons, ye bilge rat!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"Tongue\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Keep 'em valuables piece of treasure safe y'here me matey?\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Board Channel\"],\"wL3cK8\":[\"Newest\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Pirates\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Be lyin'\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Plank Walkers\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Terms o' Service\"],\"xpgPPI\":[\"Me Landlubbers\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy yer link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"I confirm that I am at least 18 years ole.\"],\"yDOdwQ\":[\"Manage ye Pirate\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"See 'em 'Covery Codes\"],\"z0t9bb\":[\"Login\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Aye\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Dis be thar start o' yer conversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Olest\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/pr/messages.po b/components/i18n/catalogs/pr/messages.po
new file mode 100644
index 0000000..3435efe
--- /dev/null
+++ b/components/i18n/catalogs/pr/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: pr\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 scallywag put a message in the bottle"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "'Obout"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Hire 'ands"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Entire Messageboard"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Already a part of your crew."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Ye' Pirate Looks"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Authenticatarr App"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "blacklist"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Hang ‘em from the yardarm"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Plank Walkers"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Keelhaul the shark bait"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Exiled"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Dead men tell no tales"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Deckhand"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Rat Finder"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancel yer demand"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Can’t sink yer account till the ships be sunk or set sail t’ new masters"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Change yarr"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Change Pirate Looks"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Change ye crew name"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Crew Manifest"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Name o' the Deck"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Oceans"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Check yer mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Clear ye status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Client Settins'"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirm yer actions, matey"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Anchor"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Content be breakin' one or more laws"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Natters"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copy yer link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Create a maties"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Forge a new Landlubber"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Create ye new rank"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Create an arrrcount"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Start 'iring 'ands"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Current secret codeword"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Ye own status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalized Arrangements"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Standard"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Walk Ye Plank"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "In Th' Cabins"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "yer crew"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Turn on ye' plank sounds"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Enter ye' new codeword."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Board Channel"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Enter yer current codeword."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Enter yer preferred username."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Beware of external links! They may be a treacherous trap!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Didn't find ye' right treasure chest key!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Pirate Advice"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Onto the Crowsnest."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Spyglassin'"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Crewmates"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Make ye' recovery ways"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Crafting yer ship ladder…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Go back t' login"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Go t' the testers server"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Maties Name"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Ahoy!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Mainland"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "I confirm that I am at least 18 years ole."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "On a voyage"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "On leave"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Get some 'ands on deck!"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Summon Scroll"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invite Others to the Ship"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Summoner"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Summonings"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Jump t' present"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Start from ye starts"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Boot the sailor"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Make 'em Walk the Plank"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Tongue"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Newest"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Maroon ye crew"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Maroon ye ship"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Ye be lettin' us know how t' improve."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Abort ye Ship"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Log out o' all other sessions"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Login"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Manage Ye' Sea Name"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Oversee Authority"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Command Positions"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Captain the Ship"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Declare as perused"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Declare as uncharted"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Be lyin'"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Pirates"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Call out"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Shouts Only"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Yer message ain't loadin', click to travel"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Th' bottled Message Received"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Th' bottled Message Sent"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Bottled message was sent from another ship"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Mutd'"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Shipmates in Common"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Crews in Common"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Me Account"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Me Landlubbers"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "New Codeword"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Alias"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "None"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Ye' Loud Ship Bells"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Off"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Ye official chit-chattin'"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Partner'd Ship"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "On leave"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Aye"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Olest"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "On"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Once it's thrown in ye' ocean, there be no gettin' it back."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "On-deck"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Open Settins"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Birds Eye View"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Secret codeword"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Ye Allowings"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Grab ye' usarname that you want scallywags bein' able to travel to yer ship by, this be changed latr' in settins'."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Confirm with yer selected way of doin'."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Enter yer scroll o’ letters."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Keep 'em valuables piece of treasure safe y'here me matey?"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Kindly choose a way to prove yer request be true."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Policy o' Shipshape"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "'Covery Code"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registarrr"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Handsomeness"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Send yer Authenticator off to Davy Jone's locker"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Remove Pirate Looks"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Remove me bucko"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Ye Replyin to"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Resend yer verification"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Reset codeword"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Ship Positions"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Save t' yer notes"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Captain's Log"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Select yer language"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Sail, Ho!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Sent a parcel"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Sent numerous parcels"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Cog Tale"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Name of ye Port"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Swashbucklin’ session"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Settins'"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Several scallywags be typing…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sea Noises"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Ye' Treasure Mark"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Propose a ship improvement"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Offer yer thoughts"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Yarrr give some doubloons, ye bilge rat!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Terms o' Service"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Scribin' deck"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Theme"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Dis be thar start o' yer conversation."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "This is the start of yer notes."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Unkeelhaul the shark bait"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Share ye booty!"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Pirate"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Mariner Joined Call"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Mariner Left Call"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Manage ye Pirate"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Pirate Settins'"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Usarname"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verifying yer 'count…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "View Board"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Gaze upon the currently active bug reckonings here."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Behold previous updates"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "See 'em 'Covery Codes"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Viewin' older messages"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Speakin' deck"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "We sent ye a verification message. Allow up t’ 10 minutes fer it t’ arrive."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Seaworthy Links"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Ye' be welcome to"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Ahoy!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Ye can also right-skewer the user icon in the top left, or left skewer it if ye're already home."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Ye can unfurl it again at a later time, but it'll vanish from both horizons."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Ye can report issues and discuss improvements with us d'rectly here yarr."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "There be no turnin' back from this action."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Ye don't have permission t' send messages in dis channel."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Ye won't be gettin' to yer treasure chest 'less ye send a parrot to the quartermaster - but fear not, yer loot won't be plundered."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Ye' be unable to get yer booty back on th' ship till yer re-invited."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Yer 'count has been verified!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Yer 'covery codes"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/pt_BR/messages.js b/components/i18n/catalogs/pt_BR/messages.js
new file mode 100644
index 0000000..b5359d4
--- /dev/null
+++ b/components/i18n/catalogs/pt_BR/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Emblemas\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como lido\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Criar um novo cargo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Sair de todas as outras sessões\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Escolha um nome de usuário que você deseja que as pessoas usem para te encontrar. Isso pode ser alterado nas configurações de sua conta.\"],\"/qQDwm\":[\"Gerando convite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Denunciar mensagem\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Enviar comentário\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID da mensagem\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Sair do grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Você pode relatar problemas e discutir melhorias conosco diretamente aqui.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueado\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Você não poderá voltar a participar, a menos que seja convidado novamente.\"],\"3QuNUr\":[\"Várias pessoas estão digitando…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Já possui uma amizade com esse usuário.\"],\"3T8ziB\":[\"Criar uma conta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessões\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Apelido\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Selecione seu idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Encontre uma comunidade baseada em seus hobbies ou interesses.\"],\"572q5a\":[\"Denunciar usuário\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como não lido\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Alterar apelido\"],\"5dJK4M\":[\"Cargos\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Visão geral\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuário\"],\"7SU2U9\":[\"Copiar ID do servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevância\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nome de usuário\"],\"7vhWI8\":[\"Nova senha\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gerenciar servidor\"],\"8FE4JE\":[\"Ativar aplicativo autenticador\"],\"8VGnad\":[\"Gerar códigos de recuperação\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Senha\"],\"8aTiea\":[\"Customização\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Digite seu nome de usuário preferido.\"],\"9D85wC\":[\"Copiar ID de usuário\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Redefinir Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissões\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Banir\"],\"9nffag\":[\"Visualizando mensagens antigas\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear usuário\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Criar um grupo\"],\"A9Rhec\":[\"Nome do canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Insira uma nova senha.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Convites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mensagem enviada em outra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Limpar status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrição do canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensagens\"],\"CkIs/i\":[\"Silenciar membros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Senha atual\"],\"DDpDsO\":[\"Código de convite\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado Oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Feito\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mensagem não carregada, clique para ir\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Enviar sugestão de funcionalidade\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Nada\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversas\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Enviou um anexo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Criar categoria\"],\"F1uGNS\":[\"Gerenciar apelidos\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remover avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ativar notificações de desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrado\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID do canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos em comum\"],\"GhCPk1\":[\"Depois de excluído, não há como voltar atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Insira sua senha atual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, selecione um método para autenticar sua requisição.\"],\"HAKBY9\":[\"Enviar arquivos\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas salvas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificação\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover membros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Enviou vários anexos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Não é possível excluir a conta até que os servidores sejam excluídos ou transferidos\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar ação\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ver atualizações antigas\"],\"JUJmXm\":[\"Por favor, confirme essa ação usando o método selecionado.\"],\"JW8mxK\":[\"Salvar nas suas notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bem-vindo(a) ao\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Você também pode clicar com o botão direito no ícone do usuário no canto superior esquerdo ou clicar com o botão esquerdo se já estiver no início.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Deletar mensagem\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Conteúdo viola uma ou mais leis\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remover amigo\"],\"LcET2C\":[\"Política de Privacidade\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Enviamos a você um e-mail de verificação. Aguarde até 10 minutos para recebê-lo.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nome do servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Sair\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Veja aqui os relatórios de bugs atualmente ativos.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Deixe-nos saber como podemos melhorar nosso app, dando-nos feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Sua conta foi verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Você não tem permissão para enviar mensagens neste canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Redefinir\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejeitar pedido de amizade\"],\"PSP1MZ\":[\"Nome do cargo\"],\"PWOA0E\":[\"Apenas menções\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar embeds\"],\"PnzsrT\":[\"Código-fonte\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Pular para o presente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensagem\"],\"QqoBlW\":[\"Confira sua caixa de entrada!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Redefinir senha\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de bugs\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Por favor, escaneie ou use o token abaixo no seu aplicativo autenticador.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remover autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gerenciar mensagens\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gerenciar cargos\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Configurações\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Convide todos os seus amigos, alguns bots legais e dê uma grande festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Alterar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensagem enviada\"],\"VJScHU\":[\"Motivo\"],\"VKsaTi\":[\"Respondendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ensurdecer membros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando sua conta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Links externos podem ser perigosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Configurações do aplicativo\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicativo autenticador\"],\"YcVBkL\":[\"Mensagem recebida\"],\"YirHq7\":[\"Comentários\"],\"YlFpiA\":[\"Falha ao verificar!\"],\"Yp+Hi/\":[\"Abrir configurações\"],\"Z5HWHd\":[\"Ligado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Seus códigos de recuperação\"],\"aAIQg2\":[\"Aparência\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Você não pode desfazer essa ação.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desligado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desativar conta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Ler histórico de mensagem\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banir membro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gerenciar permissões\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Convidante\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Deletar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Criar um novo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Convidar pessoas\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisível\"],\"ekfzWq\":[\"Configurações de usuário\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gerenciar personalização\"],\"fTMMeD\":[\"Criar convite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar pedido de amizade\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribuir cargos\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Denunciar\"],\"gkBHk/\":[\"Criar canal\"],\"gkmjYT\":[\"Sair do servidor\"],\"go1IWB\":[\"Esse usuário bloqueou você.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Deletar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Insira seu e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Criar\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Início\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Voltar para o início de sessão\"],\"jpJ5AL\":[\"Código de recuperação\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bem-vindo(a) de volta!\"],\"knjY+b\":[\"Você pode abrir novamente mais tarde, mas vai desaparecer para ambos usuários.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Adicionar amigo\"],\"lSGjX7\":[\"Usuário entrou na chamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canais\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nome do grupo\"],\"mAYvqA\":[\"Olá!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edite sua identidade\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Você não conseguirá acessar sua conta, a menos que entre em contato com o suporte - no entanto, seus dados não serão excluídos.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos em comum\"],\"nbzz1A\":[\"Inserir código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Este é o começo das suas notas.\"],\"o+XJ9D\":[\"Alterar\"],\"oB4OOq\":[\"Banir membros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Disponível\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar membros\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Padrão\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Encerrar sessão\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Pular para o começo\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Usuário saiu da chamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minha conta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todas as mensagens\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 pessoa reagiu\"],\"rxaY+5\":[\"Não perturbar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avançado\"],\"t43mBk\":[\"Denunciar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gerenciar webhooks\"],\"tdTuUv\":[\"Bloquear usuário\"],\"tfDRzk\":[\"Salvar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuário bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ir para o servidor de testadores\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar membro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Deletar cargo\"],\"utrCh2\":[\"Castigar membros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Sobre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrição do servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoie o projeto doando - obrigado!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identidade\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Por favor, salve-os em um local seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensagens\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar no canal\"],\"wL3cK8\":[\"Recente\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Mascarado\"],\"xDAtGP\":[\"Enviar mensagem\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banimentos\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termos de Serviço\"],\"xpgPPI\":[\"Meus bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceitar solicitação de amizade\"],\"y1eoq1\":[\"Copiar link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Eu confirmo que tenho pelo menos 18 anos de idade.\"],\"yDOdwQ\":[\"Gerenciamento de usuários\"],\"yIBLq8\":[\"Falar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fechar\"],\"z0hW8A\":[\"Ver códigos de recuperação\"],\"z0t9bb\":[\"Entrar\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Este é o começo da sua conversa.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Antigo\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/pt_BR/messages.mjs b/components/i18n/catalogs/pt_BR/messages.mjs
new file mode 100644
index 0000000..b64feb1
--- /dev/null
+++ b/components/i18n/catalogs/pt_BR/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Emblemas\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como lido\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Criar um novo cargo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Sair de todas as outras sessões\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Escolha um nome de usuário que você deseja que as pessoas usem para te encontrar. Isso pode ser alterado nas configurações de sua conta.\"],\"/qQDwm\":[\"Gerando convite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Denunciar mensagem\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Enviar comentário\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID da mensagem\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Sair do grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Você pode relatar problemas e discutir melhorias conosco diretamente aqui.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueado\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Você não poderá voltar a participar, a menos que seja convidado novamente.\"],\"3QuNUr\":[\"Várias pessoas estão digitando…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Já possui uma amizade com esse usuário.\"],\"3T8ziB\":[\"Criar uma conta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessões\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Apelido\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Selecione seu idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Encontre uma comunidade baseada em seus hobbies ou interesses.\"],\"572q5a\":[\"Denunciar usuário\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como não lido\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Alterar apelido\"],\"5dJK4M\":[\"Cargos\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Visão geral\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Usuário\"],\"7SU2U9\":[\"Copiar ID do servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevância\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nome de usuário\"],\"7vhWI8\":[\"Nova senha\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gerenciar servidor\"],\"8FE4JE\":[\"Ativar aplicativo autenticador\"],\"8VGnad\":[\"Gerar códigos de recuperação\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Senha\"],\"8aTiea\":[\"Customização\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Digite seu nome de usuário preferido.\"],\"9D85wC\":[\"Copiar ID de usuário\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Redefinir Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissões\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Banir\"],\"9nffag\":[\"Visualizando mensagens antigas\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear usuário\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Criar um grupo\"],\"A9Rhec\":[\"Nome do canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Insira uma nova senha.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Convites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mensagem enviada em outra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Limpar status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrição do canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensagens\"],\"CkIs/i\":[\"Silenciar membros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Senha atual\"],\"DDpDsO\":[\"Código de convite\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado Oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Feito\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mensagem não carregada, clique para ir\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Enviar sugestão de funcionalidade\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Nada\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversas\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Enviou um anexo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Criar categoria\"],\"F1uGNS\":[\"Gerenciar apelidos\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remover avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ativar notificações de desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrado\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID do canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos em comum\"],\"GhCPk1\":[\"Depois de excluído, não há como voltar atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Insira sua senha atual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, selecione um método para autenticar sua requisição.\"],\"HAKBY9\":[\"Enviar arquivos\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas salvas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificação\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover membros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Enviou vários anexos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Não é possível excluir a conta até que os servidores sejam excluídos ou transferidos\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar ação\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Ver atualizações antigas\"],\"JUJmXm\":[\"Por favor, confirme essa ação usando o método selecionado.\"],\"JW8mxK\":[\"Salvar nas suas notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bem-vindo(a) ao\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Você também pode clicar com o botão direito no ícone do usuário no canto superior esquerdo ou clicar com o botão esquerdo se já estiver no início.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Deletar mensagem\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Conteúdo viola uma ou mais leis\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remover amigo\"],\"LcET2C\":[\"Política de Privacidade\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Enviamos a você um e-mail de verificação. Aguarde até 10 minutos para recebê-lo.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nome do servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Sair\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Veja aqui os relatórios de bugs atualmente ativos.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Deixe-nos saber como podemos melhorar nosso app, dando-nos feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Sua conta foi verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Você não tem permissão para enviar mensagens neste canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Redefinir\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejeitar pedido de amizade\"],\"PSP1MZ\":[\"Nome do cargo\"],\"PWOA0E\":[\"Apenas menções\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar embeds\"],\"PnzsrT\":[\"Código-fonte\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Pular para o presente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensagem\"],\"QqoBlW\":[\"Confira sua caixa de entrada!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Redefinir senha\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de bugs\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Por favor, escaneie ou use o token abaixo no seu aplicativo autenticador.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remover autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gerenciar mensagens\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gerenciar cargos\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Configurações\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Convide todos os seus amigos, alguns bots legais e dê uma grande festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Alterar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensagem enviada\"],\"VJScHU\":[\"Motivo\"],\"VKsaTi\":[\"Respondendo a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ensurdecer membros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificando sua conta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Links externos podem ser perigosos!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Configurações do aplicativo\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicativo autenticador\"],\"YcVBkL\":[\"Mensagem recebida\"],\"YirHq7\":[\"Comentários\"],\"YlFpiA\":[\"Falha ao verificar!\"],\"Yp+Hi/\":[\"Abrir configurações\"],\"Z5HWHd\":[\"Ligado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Seus códigos de recuperação\"],\"aAIQg2\":[\"Aparência\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Você não pode desfazer essa ação.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desligado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desativar conta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Ler histórico de mensagem\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banir membro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gerenciar permissões\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Convidante\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Deletar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Criar um novo bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Convidar pessoas\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisível\"],\"ekfzWq\":[\"Configurações de usuário\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gerenciar personalização\"],\"fTMMeD\":[\"Criar convite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar pedido de amizade\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribuir cargos\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Denunciar\"],\"gkBHk/\":[\"Criar canal\"],\"gkmjYT\":[\"Sair do servidor\"],\"go1IWB\":[\"Esse usuário bloqueou você.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Deletar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Insira seu e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Criar\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Início\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Voltar para o início de sessão\"],\"jpJ5AL\":[\"Código de recuperação\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bem-vindo(a) de volta!\"],\"knjY+b\":[\"Você pode abrir novamente mais tarde, mas vai desaparecer para ambos usuários.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Adicionar amigo\"],\"lSGjX7\":[\"Usuário entrou na chamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canais\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nome do grupo\"],\"mAYvqA\":[\"Olá!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edite sua identidade\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Você não conseguirá acessar sua conta, a menos que entre em contato com o suporte - no entanto, seus dados não serão excluídos.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos em comum\"],\"nbzz1A\":[\"Inserir código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Este é o começo das suas notas.\"],\"o+XJ9D\":[\"Alterar\"],\"oB4OOq\":[\"Banir membros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Disponível\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar membros\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Padrão\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Encerrar sessão\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Pular para o começo\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Usuário saiu da chamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Minha conta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todas as mensagens\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 pessoa reagiu\"],\"rxaY+5\":[\"Não perturbar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avançado\"],\"t43mBk\":[\"Denunciar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gerenciar webhooks\"],\"tdTuUv\":[\"Bloquear usuário\"],\"tfDRzk\":[\"Salvar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Usuário bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ir para o servidor de testadores\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar membro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Deletar cargo\"],\"utrCh2\":[\"Castigar membros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Sobre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrição do servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoie o projeto doando - obrigado!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identidade\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Por favor, salve-os em um local seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensagens\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar no canal\"],\"wL3cK8\":[\"Recente\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Mascarado\"],\"xDAtGP\":[\"Enviar mensagem\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banimentos\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termos de Serviço\"],\"xpgPPI\":[\"Meus bots\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceitar solicitação de amizade\"],\"y1eoq1\":[\"Copiar link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Eu confirmo que tenho pelo menos 18 anos de idade.\"],\"yDOdwQ\":[\"Gerenciamento de usuários\"],\"yIBLq8\":[\"Falar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fechar\"],\"z0hW8A\":[\"Ver códigos de recuperação\"],\"z0t9bb\":[\"Entrar\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Este é o começo da sua conversa.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Antigo\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/pt_BR/messages.po b/components/i18n/catalogs/pt_BR/messages.po
new file mode 100644
index 0000000..38b75e3
--- /dev/null
+++ b/components/i18n/catalogs/pt_BR/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: pt_BR\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 pessoa reagiu"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Sobre"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Aceitar solicitação de amizade"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Adicionar amigo"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avançado"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Todas as mensagens"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Já possui uma amizade com esse usuário."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Aparência"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Atribuir cargos"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplicativo autenticador"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Emblemas"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Banir"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Banir membro"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Banir membros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Banimentos"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloquear usuário"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloqueado"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Usuário bloqueado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Rastreador de bugs"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancelar pedido de amizade"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Não é possível excluir a conta até que os servidores sejam excluídos ou transferidos"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Alterar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Alterar avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Alterar apelido"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Descrição do canal"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nome do canal"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Canais"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Confira sua caixa de entrada!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Limpar status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Configurações do aplicativo"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Fechar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirmar ação"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Conectar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Conteúdo viola uma ou mais leis"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuar"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversas"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copiar ID do canal"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copiar ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copiar link"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copiar ID da mensagem"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copiar ID do servidor"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copiar texto"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copiar ID de usuário"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Criar"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Criar um grupo"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Criar um novo bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Criar um novo cargo"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Criar uma conta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Criar categoria"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Criar canal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Criar convite"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Senha atual"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Status personalizado"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Customização"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Ensurdecer membros"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Padrão"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Deletar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Deletar canal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Deletar mensagem"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Deletar cargo"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Desativar conta"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Não perturbar"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Feito"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Editar identidade"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Editar mensagem"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Edite sua identidade"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Ativar aplicativo autenticador"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Ativar notificações de desktop"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Insira uma nova senha."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entrar no canal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Inserir código"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Insira sua senha atual."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Digite seu nome de usuário preferido."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Links externos podem ser perigosos!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Falha ao verificar!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Comentários"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Encontre uma comunidade baseada em seus hobbies ou interesses."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Concentrado"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amigos"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Gerar códigos de recuperação"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Gerando convite…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Voltar para o início de sessão"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Ir para o servidor de testadores"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nome do grupo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Olá!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Início"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Eu confirmo que tenho pelo menos 18 anos de idade."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Ausente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisível"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Convide todos os seus amigos, alguns bots legais e dê uma grande festa."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Código de convite"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Convidar pessoas"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Convidante"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Convites"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Pular para o presente"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Pular para o começo"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Expulsar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Expulsar membro"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Expulsar membros"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Idioma"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Recente"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Sair"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Sair do grupo"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Sair do servidor"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Deixe-nos saber como podemos melhorar nosso app, dando-nos feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Encerrar sessão"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Sair de todas as outras sessões"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Entrar"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Gerenciar personalização"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Gerenciar mensagens"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Gerenciar apelidos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Gerenciar permissões"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Gerenciar cargos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Gerenciar servidor"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Gerenciar webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marcar como lido"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marcar como não lido"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Mascarado"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Membros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mencionar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Apenas menções"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Enviar mensagem"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mensagem não carregada, clique para ir"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Mensagem recebida"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mensagem enviada"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Mensagem enviada em outra plataforma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Mensagens"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Mover membros"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Silenciar membros"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Silenciado"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Amigos em comum"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grupos em comum"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Minha conta"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Meus bots"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nova senha"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Apelido"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nada"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notificações"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Desligado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Comunicado Oficial"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Servidor oficial"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Antigo"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Ligado"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Depois de excluído, não há como voltar atrás."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Disponível"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Abrir configurações"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Visão geral"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Senha"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permissões"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Escolha um nome de usuário que você deseja que as pessoas usem para te encontrar. Isso pode ser alterado nas configurações de sua conta."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Por favor, confirme essa ação usando o método selecionado."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Insira seu e-mail."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Por favor, salve-os em um local seguro."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Por favor, escaneie ou use o token abaixo no seu aplicativo autenticador."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Por favor, selecione um método para autenticar sua requisição."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Política de Privacidade"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Perfil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Ler histórico de mensagem"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Motivo"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Código de recuperação"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrar"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rejeitar pedido de amizade"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevância"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Remover autenticador"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Remover avatares"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Remover amigo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Responder"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Respondendo a"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Denunciar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Denunciar mensagem"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Denunciar servidor"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Denunciar usuário"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Reenviar verificação"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Redefinir"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Redefinir senha"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Redefinir Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nome do cargo"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Cargos"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Salvar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Salvar nas suas notas"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notas salvas"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Selecione seu idioma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Enviar embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Enviar mensagens"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Enviou um anexo"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Enviou vários anexos"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Descrição do servidor"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nome do servidor"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessões"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Configurações"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Várias pessoas estão digitando…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sons"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Código-fonte"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Falar"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Enviar sugestão de funcionalidade"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Enviar comentário"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Apoie o projeto doando - obrigado!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Termos de Serviço"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Canal de texto"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Este é o começo da sua conversa."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Este é o começo das suas notas."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Esse usuário bloqueou você."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Castigar membros"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Desbloquear usuário"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Enviar arquivos"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Usuário"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Usuário entrou na chamada"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Usuário saiu da chamada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gerenciamento de usuários"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Configurações de usuário"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nome de usuário"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verificando sua conta…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Vídeo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Ver canal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Veja aqui os relatórios de bugs atualmente ativos."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Ver atualizações antigas"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Ver códigos de recuperação"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Visualizando mensagens antigas"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Canal de voz"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Enviamos a você um e-mail de verificação. Aguarde até 10 minutos para recebê-lo."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Bem-vindo(a) ao"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Bem-vindo(a) de volta!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Você também pode clicar com o botão direito no ícone do usuário no canto superior esquerdo ou clicar com o botão esquerdo se já estiver no início."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Você pode abrir novamente mais tarde, mas vai desaparecer para ambos usuários."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Você pode relatar problemas e discutir melhorias conosco diretamente aqui."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Você não pode desfazer essa ação."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Você não tem permissão para enviar mensagens neste canal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Você não conseguirá acessar sua conta, a menos que entre em contato com o suporte - no entanto, seus dados não serão excluídos."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Você não poderá voltar a participar, a menos que seja convidado novamente."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Sua conta foi verificada!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Seus códigos de recuperação"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/pt_PT/messages.js b/components/i18n/catalogs/pt_PT/messages.js
new file mode 100644
index 0000000..9f9605d
--- /dev/null
+++ b/components/i18n/catalogs/pt_PT/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Insígnias\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como lida\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Criar um novo cargo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Terminar todas as outras sessões\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Escolhe um nome de utilizador pelo qual pretendes que as pessoas te consigam encontrar. Poderá ser alterado, mais tarde, nas definições.\"],\"/qQDwm\":[\"A criar um convite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Denunciar mensagem\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submeter feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID da mensagem\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Sair do grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Aqui podes reportar problemas e discutir melhorias diretamente connosco.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueados\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Não poderás reentrar a menos que sejas convidado novamente.\"],\"3QuNUr\":[\"Várias pessoas estão a escrever…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Já és amigo(a) deste utilizador.\"],\"3T8ziB\":[\"Criar uma conta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessões\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Alcunha\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleciona o teu idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Encontra uma comunidade baseada nos teus hobbies ou interesses.\"],\"572q5a\":[\"Denunciar utilizador\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como não lida\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Alterar alcunha\"],\"5dJK4M\":[\"Cargos\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Visão geral\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utilizador\"],\"7SU2U9\":[\"Copiar ID do servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevância\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nome de utilizador\"],\"7vhWI8\":[\"Nova palavra-passe\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gerir servidor\"],\"8FE4JE\":[\"Ativar autenticador\"],\"8VGnad\":[\"Gerar códigos de recuperação\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Palavra-passe\"],\"8aTiea\":[\"Personalização\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introduz o teu nome de utilizador preferido.\"],\"9D85wC\":[\"Copiar ID do utilizador\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Repor Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissões\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Banir\"],\"9nffag\":[\"A ver mensagens antigas\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear utilizador\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Criar um grupo\"],\"A9Rhec\":[\"Nome do canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Insere uma nova palavra-passe.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Convites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mensagem enviada noutra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Limpar estado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrição do canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensagens\"],\"CkIs/i\":[\"Silenciar membros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Palavra-passe atual\"],\"DDpDsO\":[\"Código de convite\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado Oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Feito\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mensagem não carregada, clica para saltar\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Enviar sugestão de funcionalidade\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Nenhuma\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversas\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Enviou um anexo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Criar categoria\"],\"F1uGNS\":[\"Gerir alcunhas\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remover avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ativar notificações de ambiente de trabalho\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Em concentração\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID do canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos em comum\"],\"GhCPk1\":[\"Assim que for eliminado, não há como voltar atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introduz a tua palavra-passe atual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, seleciona um método para autenticar o teu pedido.\"],\"HAKBY9\":[\"Carregar ficheiros\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas guardadas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificação\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover membros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Enviou vários anexos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Não é possível apagar a conta até os servidores serem apagados ou transferidos\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar ação\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Visualizar atualizações anteriores\"],\"JUJmXm\":[\"Por favor, confirma esta ação utilizando o método selecionado.\"],\"JW8mxK\":[\"Guardar nas tuas notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bem-vindo(a) a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Podes ainda carregar com o botão direito do rato no ícone de utilizador no canto superior esquerdo, ou carregar com o esquerdo se estiveres na página inicial.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar mensagem\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"O conteúdo viola uma ou mais leis\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remover amigo\"],\"LcET2C\":[\"Política de Privacidade\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Enviamos um e-mail de verificação. Aguarde cerca de 10 minutos para receber.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nome do servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Sair\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Verifica aqui os relatórios de bugs ativos.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Diz-nos como podemos melhorar a nossa aplicação, deixando um comentário.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"A tua conta foi verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Não tens permissão para enviar mensagens neste canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Repor\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejeitar pedido de amizade\"],\"PSP1MZ\":[\"Nome do cargo\"],\"PWOA0E\":[\"Apenas menções\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar Embeds\"],\"PnzsrT\":[\"Código-fonte\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Saltar para o presente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensagem\"],\"QqoBlW\":[\"Verifica o teu e-mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Redefinir palavra-passe\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de bugs\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Por favor, digitaliza o código ou utiliza o token abaixo no teu autenticador.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remover autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gerir mensagens\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gerir cargos\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Definições\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Convida todos os teus amigos, alguns robôs fixes e monta uma grande festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Alterar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensagem enviada\"],\"VJScHU\":[\"Razão\"],\"VKsaTi\":[\"Em resposta a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Desativar áudio de membros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"A verificar a tua conta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Ligações externos podem ser perigosas!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Definições do cliente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autenticador\"],\"YcVBkL\":[\"Mensagem recebida\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Falha ao verificar!\"],\"Yp+Hi/\":[\"Abrir as definições\"],\"Z5HWHd\":[\"Ligado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Os teus códigos de recuperação\"],\"aAIQg2\":[\"Aparência\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Não podes desfazer esta ação.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desligado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desativar conta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Ler histórico de mensagens\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banir membro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gerir permissões\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Convidante\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Criar um novo robô\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Convidar outros\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisível\"],\"ekfzWq\":[\"Definições do utilizador\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gerir personalização\"],\"fTMMeD\":[\"Criar convite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar pedido\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribuir Cargos\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Reportar\"],\"gkBHk/\":[\"Criar canal\"],\"gkmjYT\":[\"Sair do servidor\"],\"go1IWB\":[\"Este utilizador bloqueou-te.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introduz o teu e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Criar\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Página inicial\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Ligar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"robô\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Voltar para o início de sessão\"],\"jpJ5AL\":[\"Código de recuperação\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bem-vindo(a)!\"],\"knjY+b\":[\"Poderás reabri-la mais tarde, mas irá desaparecer para ambos os lados.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Adicionar amigo\"],\"lSGjX7\":[\"Alguém entrou na chamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canais\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nome do grupo\"],\"mAYvqA\":[\"Olá!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Editar a sua identidade\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Não vais conseguir aceder à tua conta a não ser que contactes o suporte - mas os teus dados não serão apagados.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Estado personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos em comum\"],\"nbzz1A\":[\"Inserir código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"As tuas notas começam aqui.\"],\"o+XJ9D\":[\"Alterar\"],\"oB4OOq\":[\"Banir membros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar membros\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Base\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Terminar sessão\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Saltar para o começo\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Alguém saiu da chamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"A minha conta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todas as mensagens\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 pessoa reagiu\"],\"rxaY+5\":[\"Não incomodar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avançado\"],\"t43mBk\":[\"Denunciar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gerir webhooks\"],\"tdTuUv\":[\"Bloquear utilizador\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utilizador bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ir para o servidor de testadores\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar membro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Apagar cargo\"],\"utrCh2\":[\"Suspender membros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Sobre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrição do servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoia o projeto doando - obrigado!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identidade\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Por favor, guarda-os num local seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensagens\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar no canal\"],\"wL3cK8\":[\"Mais recentes\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Disfarce\"],\"xDAtGP\":[\"Enviar mensagem\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banimentos\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termos de Serviço\"],\"xpgPPI\":[\"Os meus robôs\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceitar pedido de amizade\"],\"y1eoq1\":[\"Copiar ligação\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Eu confirmo que tenho, pelo menos, 18 anos.\"],\"yDOdwQ\":[\"Gestão de utilizadores\"],\"yIBLq8\":[\"Falar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fechar\"],\"z0hW8A\":[\"Visualizar códigos de recuperação\"],\"z0t9bb\":[\"Iniciar sessão\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Este é o início da vossa conversa.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Mais antigas\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/pt_PT/messages.mjs b/components/i18n/catalogs/pt_PT/messages.mjs
new file mode 100644
index 0000000..4c3a962
--- /dev/null
+++ b/components/i18n/catalogs/pt_PT/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Silenciado\"],\"+YFgJi\":[\"Insígnias\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marcar como lida\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Criar um novo cargo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Terminar todas as outras sessões\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Escolhe um nome de utilizador pelo qual pretendes que as pessoas te consigam encontrar. Poderá ser alterado, mais tarde, nas definições.\"],\"/qQDwm\":[\"A criar um convite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Denunciar mensagem\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submeter feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiar ID da mensagem\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Sair do grupo\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Aqui podes reportar problemas e discutir melhorias diretamente connosco.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Bloqueados\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Não poderás reentrar a menos que sejas convidado novamente.\"],\"3QuNUr\":[\"Várias pessoas estão a escrever…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Já és amigo(a) deste utilizador.\"],\"3T8ziB\":[\"Criar uma conta\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessões\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Alcunha\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Seleciona o teu idioma\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Encontra uma comunidade baseada nos teus hobbies ou interesses.\"],\"572q5a\":[\"Denunciar utilizador\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marcar como não lida\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Alterar alcunha\"],\"5dJK4M\":[\"Cargos\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Visão geral\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utilizador\"],\"7SU2U9\":[\"Copiar ID do servidor\"],\"7VpPHA\":[\"Confirmar\"],\"7dZnmw\":[\"Relevância\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nome de utilizador\"],\"7vhWI8\":[\"Nova palavra-passe\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gerir servidor\"],\"8FE4JE\":[\"Ativar autenticador\"],\"8VGnad\":[\"Gerar códigos de recuperação\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Palavra-passe\"],\"8aTiea\":[\"Personalização\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introduz o teu nome de utilizador preferido.\"],\"9D85wC\":[\"Copiar ID do utilizador\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Repor Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissões\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Banir\"],\"9nffag\":[\"A ver mensagens antigas\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Desbloquear utilizador\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Criar um grupo\"],\"A9Rhec\":[\"Nome do canal\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Insere uma nova palavra-passe.\"],\"AU7IRi\":[\"Canal de texto\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de voz\"],\"BHsrDx\":[\"Convites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mensagem enviada noutra plataforma\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ver canal\"],\"CK7kdd\":[\"Limpar estado\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrição do canal\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Enviar mensagens\"],\"CkIs/i\":[\"Silenciar membros\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Palavra-passe atual\"],\"DDpDsO\":[\"Código de convite\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicado Oficial\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Feito\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mensagem não carregada, clica para saltar\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Enviar sugestão de funcionalidade\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Expulsar\"],\"EdQY6l\":[\"Nenhuma\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversas\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Enviou um anexo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Criar categoria\"],\"F1uGNS\":[\"Gerir alcunhas\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remover avatares\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Ativar notificações de ambiente de trabalho\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Em concentração\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiar ID do canal\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupos em comum\"],\"GhCPk1\":[\"Assim que for eliminado, não há como voltar atrás.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introduz a tua palavra-passe atual.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Por favor, seleciona um método para autenticar o teu pedido.\"],\"HAKBY9\":[\"Carregar ficheiros\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notas guardadas\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Reenviar verificação\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mover membros\"],\"ImOQa9\":[\"Responder\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Enviou vários anexos\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Não é possível apagar a conta até os servidores serem apagados ou transferidos\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmar ação\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Visualizar atualizações anteriores\"],\"JUJmXm\":[\"Por favor, confirma esta ação utilizando o método selecionado.\"],\"JW8mxK\":[\"Guardar nas tuas notas\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bem-vindo(a) a\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Podes ainda carregar com o botão direito do rato no ícone de utilizador no canto superior esquerdo, ou carregar com o esquerdo se estiveres na página inicial.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Eliminar mensagem\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"O conteúdo viola uma ou mais leis\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sons\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Servidor oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remover amigo\"],\"LcET2C\":[\"Política de Privacidade\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Enviamos um e-mail de verificação. Aguarde cerca de 10 minutos para receber.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Nome do servidor\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Sair\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Verifica aqui os relatórios de bugs ativos.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Diz-nos como podemos melhorar a nossa aplicação, deixando um comentário.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"A tua conta foi verificada!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Não tens permissão para enviar mensagens neste canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Repor\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Rejeitar pedido de amizade\"],\"PSP1MZ\":[\"Nome do cargo\"],\"PWOA0E\":[\"Apenas menções\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Enviar Embeds\"],\"PnzsrT\":[\"Código-fonte\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Saltar para o presente\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Ausente\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editar mensagem\"],\"QqoBlW\":[\"Verifica o teu e-mail!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Redefinir palavra-passe\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Rastreador de bugs\"],\"S3bIKF\":[\"Copiar ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Por favor, digitaliza o código ou utiliza o token abaixo no teu autenticador.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Remover autenticador\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gerir mensagens\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gerir cargos\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Definições\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Convida todos os teus amigos, alguns robôs fixes e monta uma grande festa.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Alterar avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mensagem enviada\"],\"VJScHU\":[\"Razão\"],\"VKsaTi\":[\"Em resposta a\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Desativar áudio de membros\"],\"VsHxv+\":[\"Copiar texto\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"A verificar a tua conta…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Ligações externos podem ser perigosas!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Definições do cliente\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autenticador\"],\"YcVBkL\":[\"Mensagem recebida\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Falha ao verificar!\"],\"Yp+Hi/\":[\"Abrir as definições\"],\"Z5HWHd\":[\"Ligado\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Os teus códigos de recuperação\"],\"aAIQg2\":[\"Aparência\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Não podes desfazer esta ação.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Desligado\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Desativar conta\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Ler histórico de mensagens\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Banir membro\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gerir permissões\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Convidante\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Eliminar\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancelar\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Criar um novo robô\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Convidar outros\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invisível\"],\"ekfzWq\":[\"Definições do utilizador\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gerir personalização\"],\"fTMMeD\":[\"Criar convite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registar\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancelar pedido\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribuir Cargos\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Reportar\"],\"gkBHk/\":[\"Criar canal\"],\"gkmjYT\":[\"Sair do servidor\"],\"go1IWB\":[\"Este utilizador bloqueou-te.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Eliminar canal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introduz o teu e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Criar\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Página inicial\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Ligar\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mencionar\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"robô\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Voltar para o início de sessão\"],\"jpJ5AL\":[\"Código de recuperação\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bem-vindo(a)!\"],\"knjY+b\":[\"Poderás reabri-la mais tarde, mas irá desaparecer para ambos os lados.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Adicionar amigo\"],\"lSGjX7\":[\"Alguém entrou na chamada\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canais\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Nome do grupo\"],\"mAYvqA\":[\"Olá!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Editar a sua identidade\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Não vais conseguir aceder à tua conta a não ser que contactes o suporte - mas os teus dados não serão apagados.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Estado personalizado\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Amigos em comum\"],\"nbzz1A\":[\"Inserir código\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"As tuas notas começam aqui.\"],\"o+XJ9D\":[\"Alterar\"],\"oB4OOq\":[\"Banir membros\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Expulsar membros\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Base\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Terminar sessão\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Saltar para o começo\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Alguém saiu da chamada\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"A minha conta\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Todas as mensagens\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 pessoa reagiu\"],\"rxaY+5\":[\"Não incomodar\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avançado\"],\"t43mBk\":[\"Denunciar servidor\"],\"tBmnPU\":[\"Amigos\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Gerir webhooks\"],\"tdTuUv\":[\"Bloquear utilizador\"],\"tfDRzk\":[\"Guardar\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utilizador bloqueado\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Ir para o servidor de testadores\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Expulsar membro\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Apagar cargo\"],\"utrCh2\":[\"Suspender membros\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Sobre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrição do servidor\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Perfil\"],\"vJum3e\":[\"Apoia o projeto doando - obrigado!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Vídeo\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editar identidade\"],\"vXIe7J\":[\"Idioma\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Por favor, guarda-os num local seguro.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mensagens\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Entrar no canal\"],\"wL3cK8\":[\"Mais recentes\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membros\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Disfarce\"],\"xDAtGP\":[\"Enviar mensagem\"],\"xGVfLh\":[\"Continuar\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Banimentos\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termos de Serviço\"],\"xpgPPI\":[\"Os meus robôs\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Aceitar pedido de amizade\"],\"y1eoq1\":[\"Copiar ligação\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Eu confirmo que tenho, pelo menos, 18 anos.\"],\"yDOdwQ\":[\"Gestão de utilizadores\"],\"yIBLq8\":[\"Falar\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Fechar\"],\"z0hW8A\":[\"Visualizar códigos de recuperação\"],\"z0t9bb\":[\"Iniciar sessão\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Este é o início da vossa conversa.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Mais antigas\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/pt_PT/messages.po b/components/i18n/catalogs/pt_PT/messages.po
new file mode 100644
index 0000000..87ef69d
--- /dev/null
+++ b/components/i18n/catalogs/pt_PT/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: pt_PT\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 pessoa reagiu"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Sobre"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Aceitar pedido de amizade"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Adicionar amigo"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avançado"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Todas as mensagens"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Já és amigo(a) deste utilizador."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Aparência"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Atribuir Cargos"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Autenticador"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Insígnias"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Banir"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Banir membro"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Banir membros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Banimentos"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Bloquear utilizador"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Bloqueados"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Utilizador bloqueado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "robô"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Rastreador de bugs"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Cancelar pedido"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Não é possível apagar a conta até os servidores serem apagados ou transferidos"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Alterar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Alterar avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Alterar alcunha"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Descrição do canal"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Nome do canal"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Canais"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Verifica o teu e-mail!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Limpar estado"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Definições do cliente"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Fechar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirmar ação"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Ligar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "O conteúdo viola uma ou mais leis"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuar"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversas"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copiar ID do canal"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copiar ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copiar ligação"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copiar ID da mensagem"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copiar ID do servidor"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copiar texto"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copiar ID do utilizador"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Criar"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Criar um grupo"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Criar um novo robô"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Criar um novo cargo"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Criar uma conta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Criar categoria"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Criar canal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Criar convite"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Palavra-passe atual"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Estado personalizado"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalização"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Desativar áudio de membros"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Base"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Eliminar"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Eliminar canal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Eliminar mensagem"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Apagar cargo"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Desativar conta"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Não incomodar"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Feito"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Editar identidade"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Editar mensagem"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Editar a sua identidade"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojis"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Ativar autenticador"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Ativar notificações de ambiente de trabalho"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Insere uma nova palavra-passe."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Entrar no canal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Inserir código"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Introduz a tua palavra-passe atual."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Introduz o teu nome de utilizador preferido."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Ligações externos podem ser perigosas!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Falha ao verificar!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Encontra uma comunidade baseada nos teus hobbies ou interesses."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Em concentração"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Amigos"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Gerar códigos de recuperação"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "A criar um convite…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Voltar para o início de sessão"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Ir para o servidor de testadores"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Nome do grupo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Olá!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Página inicial"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Eu confirmo que tenho, pelo menos, 18 anos."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Ausente"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invisível"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Convida todos os teus amigos, alguns robôs fixes e monta uma grande festa."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Código de convite"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Convidar outros"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Convidante"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Convites"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Saltar para o presente"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Saltar para o começo"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Expulsar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Expulsar membro"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Expulsar membros"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Idioma"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Mais recentes"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Sair"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Sair do grupo"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Sair do servidor"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Diz-nos como podemos melhorar a nossa aplicação, deixando um comentário."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Terminar sessão"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Terminar todas as outras sessões"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Iniciar sessão"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Gerir personalização"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Gerir mensagens"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Gerir alcunhas"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Gerir permissões"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Gerir cargos"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Gerir servidor"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Gerir webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marcar como lida"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marcar como não lida"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Disfarce"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Membros"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Mencionar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Apenas menções"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Enviar mensagem"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mensagem não carregada, clica para saltar"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Mensagem recebida"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mensagem enviada"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Mensagem enviada noutra plataforma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Mensagens"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Mover membros"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Silenciar membros"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Silenciado"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Amigos em comum"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grupos em comum"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "A minha conta"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Os meus robôs"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nova palavra-passe"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Alcunha"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nenhuma"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notificações"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Desligado"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Comunicado Oficial"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Servidor oficial"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Mais antigas"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Ligado"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Assim que for eliminado, não há como voltar atrás."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Abrir as definições"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Visão geral"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Palavra-passe"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permissões"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Escolhe um nome de utilizador pelo qual pretendes que as pessoas te consigam encontrar. Poderá ser alterado, mais tarde, nas definições."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Por favor, confirma esta ação utilizando o método selecionado."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Introduz o teu e-mail."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Por favor, guarda-os num local seguro."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Por favor, digitaliza o código ou utiliza o token abaixo no teu autenticador."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Por favor, seleciona um método para autenticar o teu pedido."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Política de Privacidade"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Perfil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Ler histórico de mensagens"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Razão"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Código de recuperação"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registar"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Rejeitar pedido de amizade"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevância"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Remover autenticador"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Remover avatares"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Remover amigo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Responder"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Em resposta a"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Reportar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Denunciar mensagem"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Denunciar servidor"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Denunciar utilizador"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Reenviar verificação"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Repor"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Redefinir palavra-passe"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Repor Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Nome do cargo"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Cargos"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Guardar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Guardar nas tuas notas"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notas guardadas"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Seleciona o teu idioma"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Enviar Embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Enviar mensagens"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Enviou um anexo"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Enviou vários anexos"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Descrição do servidor"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Nome do servidor"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessões"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Definições"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Várias pessoas estão a escrever…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sons"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Código-fonte"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Falar"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Enviar sugestão de funcionalidade"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Submeter feedback"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Apoia o projeto doando - obrigado!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Termos de Serviço"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Canal de texto"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Este é o início da vossa conversa."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "As tuas notas começam aqui."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Este utilizador bloqueou-te."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Suspender membros"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Desbloquear utilizador"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Carregar ficheiros"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Utilizador"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Alguém entrou na chamada"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Alguém saiu da chamada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gestão de utilizadores"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Definições do utilizador"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nome de utilizador"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "A verificar a tua conta…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Vídeo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Ver canal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Verifica aqui os relatórios de bugs ativos."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Visualizar atualizações anteriores"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Visualizar códigos de recuperação"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "A ver mensagens antigas"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Canal de voz"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Enviamos um e-mail de verificação. Aguarde cerca de 10 minutos para receber."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Bem-vindo(a) a"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Bem-vindo(a)!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Podes ainda carregar com o botão direito do rato no ícone de utilizador no canto superior esquerdo, ou carregar com o esquerdo se estiveres na página inicial."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Poderás reabri-la mais tarde, mas irá desaparecer para ambos os lados."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Aqui podes reportar problemas e discutir melhorias diretamente connosco."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Não podes desfazer esta ação."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Não tens permissão para enviar mensagens neste canal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Não vais conseguir aceder à tua conta a não ser que contactes o suporte - mas os teus dados não serão apagados."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Não poderás reentrar a menos que sejas convidado novamente."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "A tua conta foi verificada!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Os teus códigos de recuperação"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ro/messages.js b/components/i18n/catalogs/ro/messages.js
new file mode 100644
index 0000000..769ce42
--- /dev/null
+++ b/components/i18n/catalogs/ro/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Amuțit\"],\"+YFgJi\":[\"Insigne\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marchează ca citit\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Creează un rol nou\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Deconectează-te de la toate celelalte sesiuni\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Alege un nume de utilizator cu care dorești ca oamenii să te poată găsi. Acesta poate fi modificat ulterior în setări.\"],\"/qQDwm\":[\"Se generează invitația…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Raportează mesajul\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Trimite o părere\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiază ID-ul mesajului\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Părăsește grupul\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Poți să ne raportezi probleme și să discuți cu noi despre îmbunătățiri direct aici.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocat\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nu vei putea să reintri decât dacă ești reinvitat.\"],\"3QuNUr\":[\"Mai multe persoane tastează…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ești deja prieten cu acest utilizator.\"],\"3T8ziB\":[\"Creează un cont\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesiuni\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Poreclă\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Selectează limba ta\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Găsește o comunitate bazată pe hobby-urile sau interesele tale.\"],\"572q5a\":[\"Raportează utilizatorul\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marchează ca necitit\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Schimbă porecla\"],\"5dJK4M\":[\"Roluri\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Prezentare generală\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Deconectat\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utilizator\"],\"7SU2U9\":[\"Copiază ID-ul serverului\"],\"7VpPHA\":[\"Confirmă\"],\"7dZnmw\":[\"Relevanță\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nume de utilizator\"],\"7vhWI8\":[\"Parolă nouă\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gestionează serverul\"],\"8FE4JE\":[\"Activează aplicația de autentificare\"],\"8VGnad\":[\"Generează coduri de recuperare\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Parolă\"],\"8aTiea\":[\"Personalizare\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introdu numele de utilizator preferat.\"],\"9D85wC\":[\"Copiază ID-ul de utilizator\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisiuni\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Interzice accesul\"],\"9nffag\":[\"Acum vezi mesajele vechi\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblochează utilizatorul\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Creează un grup\"],\"A9Rhec\":[\"Numele Canalului\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Introdu o parolă nouă.\"],\"AU7IRi\":[\"Canal de Text\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de Voce\"],\"BHsrDx\":[\"Invitații\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesajul a fost trimis de pe o altă platformă\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vezi canalul\"],\"CK7kdd\":[\"Șterge status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrierea Canalului\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Trimite mesaje\"],\"CkIs/i\":[\"Pune membri pe pauză\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Parola actuală\"],\"DDpDsO\":[\"Cod de invitație\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicare oficială\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Efectuat\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesaj neîncărcat, click pentru a sări\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Propune o nouă funcție\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Dă afară\"],\"EdQY6l\":[\"Nici una\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversații\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"A trimis un atașament\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Creează o categorie\"],\"F1uGNS\":[\"Gestionează porecle\"],\"FEr96N\":[\"Temă\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Îndepărtează avatare\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Activează notificările pe desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrat\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiază ID-ul canalului\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupuri în comun\"],\"GhCPk1\":[\"Odată ce a fost șters, nu mai există cale de întoarcere.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introdu parola actuală.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Te rugăm să selectezi o metodă pentru a autentifica cererea.\"],\"HAKBY9\":[\"Încarcă fișiere\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notițe salvate\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Retrimite confirmarea\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mută membrii\"],\"ImOQa9\":[\"Răspunde\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"A trimis mai multe atașamente\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nu se poate șterge contul până când serverele nu sunt șterse sau transferate\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmă acțiunea\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vezi actualizări mai vechi\"],\"JUJmXm\":[\"Te rugăm să confirmi această acțiune folosind metoda selectată.\"],\"JW8mxK\":[\"Salvează în notițele tale\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bun venit la\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"De asemenea, poți face clic dreapta pe pictograma utilizatorului din stânga sus sau clic stânga pe ea dacă ești deja acasă.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Șterge mesajul\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Conținutul încalcă una sau mai multe legi\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sunete\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Server oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Șterge prieten\"],\"LcET2C\":[\"Politica de confidențialitate\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ți-am trimis un e-mail de verificare. Te rugăm să acorzi până la 10 minute pentru sosirea acestuia.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Numele Serverului\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Părăsește\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Afișează rapoartele de erori active în prezent.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Spune-ne cum putem îmbunătăți aplicația noastră, oferindu-ne feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Contul tău a fost verificat!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Adresă de e-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nu ai permisiunea de a trimite mesaje pe acest canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Resetează\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Respinge cererea de prietenie\"],\"PSP1MZ\":[\"Numele rolului\"],\"PWOA0E\":[\"Numai mențiuni\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Trimite integrări\"],\"PnzsrT\":[\"Codul sursă\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Sari la prezent\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inactiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editează mesajul\"],\"QqoBlW\":[\"Verifică-ți emailul!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Resetează parola\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug tracker\"],\"S3bIKF\":[\"Copiază ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Te rugăm să scanezi sau să folosești token-ul de mai jos în aplicația ta de autentificare.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Dezactivează autentificatorul\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gestionează mesaje\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gestionează roluri\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Setări\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invită-ți toți prietenii, câțiva boți simpatici și dă o petrecere mare.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Schimbă avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesaj trimis\"],\"VJScHU\":[\"Motiv\"],\"VKsaTi\":[\"Se trimite răspuns către\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Dezactivează sunetul membrilor\"],\"VsHxv+\":[\"Copiază textul\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Se verifică contul…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Link-urile externe pot fi periculoase!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Setări Client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicație de autentificare\"],\"YcVBkL\":[\"Mesaj primit\"],\"YirHq7\":[\"Părere\"],\"YlFpiA\":[\"Verificarea a eșuat!\"],\"Yp+Hi/\":[\"Deschide setările\"],\"Z5HWHd\":[\"Pornit\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Codurile tale de recuperare\"],\"aAIQg2\":[\"Aspect\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Această acțiune nu poate fi anulată.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Oprit\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Dezactivează contul\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Citește istoricul mesajelor\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Interzice accesul membrului\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestionează permisiunile\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitator\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Șterge\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Anulare\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Creează un bot nou\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invită pe alții\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invizibil\"],\"ekfzWq\":[\"Setări utilizator\"],\"etgedT\":[\"Emoji-uri\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestionează personalizarea\"],\"fTMMeD\":[\"Creează invitație\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Înregistrare\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Anulează cererea de prietenie\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribuire roluri\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Raportează\"],\"gkBHk/\":[\"Creează canal\"],\"gkmjYT\":[\"Părăsește serverul\"],\"go1IWB\":[\"Acest utilizator te-a blocat.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Șterge canalul\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introdu adresa de email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Creează\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Acasă\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectare\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Menționează\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Întoarce-te la conectare\"],\"jpJ5AL\":[\"Cod de recuperare\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bun venit!\"],\"knjY+b\":[\"O poți redeschide ulterior dar va dispărea pe ambele părți.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Adaugă ca prieten\"],\"lSGjX7\":[\"Utilizatorul a intrat în apel\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canale\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Numele grupului\"],\"mAYvqA\":[\"Salut!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Editează-ți identitatea\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Nu îți vei putea accesa contul decât dacă contactezi asistența - însă, datele tale nu vor fi șterse.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status personalizat\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Prieteni în comun\"],\"nbzz1A\":[\"Introdu codul\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Acesta este începutul notelor tale.\"],\"o+XJ9D\":[\"Schimbă\"],\"oB4OOq\":[\"Interzice membri\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Exclude membri\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Implicit\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Deconectare\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Salt la început\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Utilizatorul a părăsit apelul\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Contul meu\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Toate mesajele\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"O persoană a reacționat\"],\"rxaY+5\":[\"Nu deranjați\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avansat\"],\"t43mBk\":[\"Raportează serverul\"],\"tBmnPU\":[\"Prieteni\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Modifică webhook-uri\"],\"tdTuUv\":[\"Blochează utilizatorul\"],\"tfDRzk\":[\"Salvare\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utilizator Blocat\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mergi la serverul testerilor\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Dă afară membrul\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Șterge rolul\"],\"utrCh2\":[\"Pune membrii în pauză\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Despre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrierea serverului\"],\"v1kQyJ\":[\"Webhook-uri\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Sprijină proiectul prin donații - vă mulțumim!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editează identitatea\"],\"vXIe7J\":[\"Limba\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Te rugăm să le salvezi într-o locație sigură.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mesaje\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Intră în canal\"],\"wL3cK8\":[\"Ultimele\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membri\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Mascare\"],\"xDAtGP\":[\"Trimite un mesaj\"],\"xGVfLh\":[\"Continuare\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Interdicții\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termeni și condiții\"],\"xpgPPI\":[\"Boții mei\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Acceptă cererea de prietenie\"],\"y1eoq1\":[\"Copiază link-ul\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirm că am cel puțin 18 ani împliniți.\"],\"yDOdwQ\":[\"Gestionare utilizatori\"],\"yIBLq8\":[\"Vorbește\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Închidere\"],\"z0hW8A\":[\"Vizualizează codurile de recuperare\"],\"z0t9bb\":[\"Autentificare\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Acesta este începutul conversației tale.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vechi\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ro/messages.mjs b/components/i18n/catalogs/ro/messages.mjs
new file mode 100644
index 0000000..0e38932
--- /dev/null
+++ b/components/i18n/catalogs/ro/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Amuțit\"],\"+YFgJi\":[\"Insigne\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Marchează ca citit\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Creează un rol nou\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Deconectează-te de la toate celelalte sesiuni\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Alege un nume de utilizator cu care dorești ca oamenii să te poată găsi. Acesta poate fi modificat ulterior în setări.\"],\"/qQDwm\":[\"Se generează invitația…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Raportează mesajul\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Trimite o părere\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copiază ID-ul mesajului\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Părăsește grupul\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Poți să ne raportezi probleme și să discuți cu noi despre îmbunătățiri direct aici.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocat\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nu vei putea să reintri decât dacă ești reinvitat.\"],\"3QuNUr\":[\"Mai multe persoane tastează…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Ești deja prieten cu acest utilizator.\"],\"3T8ziB\":[\"Creează un cont\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sesiuni\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Poreclă\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Selectează limba ta\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Găsește o comunitate bazată pe hobby-urile sau interesele tale.\"],\"572q5a\":[\"Raportează utilizatorul\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Marchează ca necitit\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Schimbă porecla\"],\"5dJK4M\":[\"Roluri\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Prezentare generală\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Deconectat\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Utilizator\"],\"7SU2U9\":[\"Copiază ID-ul serverului\"],\"7VpPHA\":[\"Confirmă\"],\"7dZnmw\":[\"Relevanță\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Nume de utilizator\"],\"7vhWI8\":[\"Parolă nouă\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Gestionează serverul\"],\"8FE4JE\":[\"Activează aplicația de autentificare\"],\"8VGnad\":[\"Generează coduri de recuperare\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Parolă\"],\"8aTiea\":[\"Personalizare\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Introdu numele de utilizator preferat.\"],\"9D85wC\":[\"Copiază ID-ul de utilizator\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permisiuni\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Interzice accesul\"],\"9nffag\":[\"Acum vezi mesajele vechi\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Deblochează utilizatorul\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Creează un grup\"],\"A9Rhec\":[\"Numele Canalului\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Introdu o parolă nouă.\"],\"AU7IRi\":[\"Canal de Text\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Canal de Voce\"],\"BHsrDx\":[\"Invitații\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesajul a fost trimis de pe o altă platformă\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Vezi canalul\"],\"CK7kdd\":[\"Șterge status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Descrierea Canalului\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Trimite mesaje\"],\"CkIs/i\":[\"Pune membri pe pauză\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Parola actuală\"],\"DDpDsO\":[\"Cod de invitație\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Comunicare oficială\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Efectuat\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesaj neîncărcat, click pentru a sări\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Propune o nouă funcție\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Dă afară\"],\"EdQY6l\":[\"Nici una\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Conversații\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"A trimis un atașament\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Creează o categorie\"],\"F1uGNS\":[\"Gestionează porecle\"],\"FEr96N\":[\"Temă\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Îndepărtează avatare\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Activează notificările pe desktop\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Concentrat\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copiază ID-ul canalului\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupuri în comun\"],\"GhCPk1\":[\"Odată ce a fost șters, nu mai există cale de întoarcere.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Introdu parola actuală.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Te rugăm să selectezi o metodă pentru a autentifica cererea.\"],\"HAKBY9\":[\"Încarcă fișiere\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Notițe salvate\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Retrimite confirmarea\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Mută membrii\"],\"ImOQa9\":[\"Răspunde\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"A trimis mai multe atașamente\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nu se poate șterge contul până când serverele nu sunt șterse sau transferate\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirmă acțiunea\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Vezi actualizări mai vechi\"],\"JUJmXm\":[\"Te rugăm să confirmi această acțiune folosind metoda selectată.\"],\"JW8mxK\":[\"Salvează în notițele tale\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Bun venit la\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"De asemenea, poți face clic dreapta pe pictograma utilizatorului din stânga sus sau clic stânga pe ea dacă ești deja acasă.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Șterge mesajul\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Conținutul încalcă una sau mai multe legi\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sunete\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Server oficial\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Șterge prieten\"],\"LcET2C\":[\"Politica de confidențialitate\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ți-am trimis un e-mail de verificare. Te rugăm să acorzi până la 10 minute pentru sosirea acestuia.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Numele Serverului\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Părăsește\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Afișează rapoartele de erori active în prezent.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Spune-ne cum putem îmbunătăți aplicația noastră, oferindu-ne feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Contul tău a fost verificat!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Adresă de e-mail\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nu ai permisiunea de a trimite mesaje pe acest canal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Resetează\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Respinge cererea de prietenie\"],\"PSP1MZ\":[\"Numele rolului\"],\"PWOA0E\":[\"Numai mențiuni\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Trimite integrări\"],\"PnzsrT\":[\"Codul sursă\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Sari la prezent\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inactiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Editează mesajul\"],\"QqoBlW\":[\"Verifică-ți emailul!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Resetează parola\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug tracker\"],\"S3bIKF\":[\"Copiază ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Te rugăm să scanezi sau să folosești token-ul de mai jos în aplicația ta de autentificare.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Dezactivează autentificatorul\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Gestionează mesaje\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Gestionează roluri\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Setări\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invită-ți toți prietenii, câțiva boți simpatici și dă o petrecere mare.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Schimbă avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesaj trimis\"],\"VJScHU\":[\"Motiv\"],\"VKsaTi\":[\"Se trimite răspuns către\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Dezactivează sunetul membrilor\"],\"VsHxv+\":[\"Copiază textul\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Se verifică contul…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Link-urile externe pot fi periculoase!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Setări Client\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplicație de autentificare\"],\"YcVBkL\":[\"Mesaj primit\"],\"YirHq7\":[\"Părere\"],\"YlFpiA\":[\"Verificarea a eșuat!\"],\"Yp+Hi/\":[\"Deschide setările\"],\"Z5HWHd\":[\"Pornit\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Codurile tale de recuperare\"],\"aAIQg2\":[\"Aspect\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Această acțiune nu poate fi anulată.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Oprit\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Dezactivează contul\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Citește istoricul mesajelor\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Interzice accesul membrului\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Gestionează permisiunile\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Invitator\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Șterge\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Anulare\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Creează un bot nou\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invită pe alții\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Invizibil\"],\"ekfzWq\":[\"Setări utilizator\"],\"etgedT\":[\"Emoji-uri\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Gestionează personalizarea\"],\"fTMMeD\":[\"Creează invitație\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Înregistrare\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Anulează cererea de prietenie\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Atribuire roluri\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Raportează\"],\"gkBHk/\":[\"Creează canal\"],\"gkmjYT\":[\"Părăsește serverul\"],\"go1IWB\":[\"Acest utilizator te-a blocat.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Șterge canalul\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Introdu adresa de email.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Creează\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Acasă\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Conectare\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Menționează\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Întoarce-te la conectare\"],\"jpJ5AL\":[\"Cod de recuperare\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Bun venit!\"],\"knjY+b\":[\"O poți redeschide ulterior dar va dispărea pe ambele părți.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Adaugă ca prieten\"],\"lSGjX7\":[\"Utilizatorul a intrat în apel\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Canale\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Numele grupului\"],\"mAYvqA\":[\"Salut!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Editează-ți identitatea\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Nu îți vei putea accesa contul decât dacă contactezi asistența - însă, datele tale nu vor fi șterse.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Status personalizat\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Prieteni în comun\"],\"nbzz1A\":[\"Introdu codul\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Acesta este începutul notelor tale.\"],\"o+XJ9D\":[\"Schimbă\"],\"oB4OOq\":[\"Interzice membri\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Exclude membri\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Implicit\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Deconectare\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Salt la început\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Utilizatorul a părăsit apelul\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Contul meu\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Toate mesajele\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"O persoană a reacționat\"],\"rxaY+5\":[\"Nu deranjați\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avansat\"],\"t43mBk\":[\"Raportează serverul\"],\"tBmnPU\":[\"Prieteni\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Modifică webhook-uri\"],\"tdTuUv\":[\"Blochează utilizatorul\"],\"tfDRzk\":[\"Salvare\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Utilizator Blocat\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Mergi la serverul testerilor\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Dă afară membrul\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Șterge rolul\"],\"utrCh2\":[\"Pune membrii în pauză\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Despre\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Descrierea serverului\"],\"v1kQyJ\":[\"Webhook-uri\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Sprijină proiectul prin donații - vă mulțumim!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Editează identitatea\"],\"vXIe7J\":[\"Limba\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Te rugăm să le salvezi într-o locație sigură.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Mesaje\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Intră în canal\"],\"wL3cK8\":[\"Ultimele\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Membri\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Mascare\"],\"xDAtGP\":[\"Trimite un mesaj\"],\"xGVfLh\":[\"Continuare\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Interdicții\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Termeni și condiții\"],\"xpgPPI\":[\"Boții mei\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Acceptă cererea de prietenie\"],\"y1eoq1\":[\"Copiază link-ul\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Confirm că am cel puțin 18 ani împliniți.\"],\"yDOdwQ\":[\"Gestionare utilizatori\"],\"yIBLq8\":[\"Vorbește\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Închidere\"],\"z0hW8A\":[\"Vizualizează codurile de recuperare\"],\"z0t9bb\":[\"Autentificare\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Acesta este începutul conversației tale.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Vechi\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ro/messages.po b/components/i18n/catalogs/ro/messages.po
new file mode 100644
index 0000000..ccd4426
--- /dev/null
+++ b/components/i18n/catalogs/ro/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ro\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "O persoană a reacționat"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Despre"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Acceptă cererea de prietenie"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Adaugă ca prieten"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avansat"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Toate mesajele"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Ești deja prieten cu acest utilizator."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Aspect"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Atribuire roluri"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplicație de autentificare"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Insigne"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Interzice accesul"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Interzice accesul membrului"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Interzice membri"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Interdicții"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blochează utilizatorul"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blocat"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Utilizator Blocat"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Bug tracker"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Anulare"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Anulează cererea de prietenie"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Nu se poate șterge contul până când serverele nu sunt șterse sau transferate"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Schimbă"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Schimbă avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Schimbă porecla"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Descrierea Canalului"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Numele Canalului"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Canale"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Verifică-ți emailul!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Șterge status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Setări Client"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Închidere"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Confirmă"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Confirmă acțiunea"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Conectare"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Conținutul încalcă una sau mai multe legi"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Continuare"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Conversații"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Copiază ID-ul canalului"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Copiază ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Copiază link-ul"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Copiază ID-ul mesajului"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Copiază ID-ul serverului"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Copiază textul"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Copiază ID-ul de utilizator"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Creează"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Creează un grup"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Creează un bot nou"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Creează un rol nou"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Creează un cont"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Creează o categorie"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Creează canal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Creează invitație"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Parola actuală"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Status personalizat"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Personalizare"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Dezactivează sunetul membrilor"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Implicit"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Șterge"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Șterge canalul"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Șterge mesajul"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Șterge rolul"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Dezactivează contul"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Nu deranjați"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Efectuat"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Editează identitatea"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Editează mesajul"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Editează-ți identitatea"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Adresă de e-mail"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji-uri"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Activează aplicația de autentificare"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Activează notificările pe desktop"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Introdu o parolă nouă."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Intră în canal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Introdu codul"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Introdu parola actuală."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Introdu numele de utilizator preferat."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Link-urile externe pot fi periculoase!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Verificarea a eșuat!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Părere"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Găsește o comunitate bazată pe hobby-urile sau interesele tale."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Concentrat"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Prieteni"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generează coduri de recuperare"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Se generează invitația…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Întoarce-te la conectare"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Mergi la serverul testerilor"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Numele grupului"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Salut!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Acasă"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Confirm că am cel puțin 18 ani împliniți."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inactiv"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Invizibil"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Invită-ți toți prietenii, câțiva boți simpatici și dă o petrecere mare."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Cod de invitație"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Invită pe alții"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Invitator"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Invitații"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Sari la prezent"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Salt la început"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Dă afară"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Dă afară membrul"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Exclude membri"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Limba"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Ultimele"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Părăsește"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Părăsește grupul"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Părăsește serverul"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Spune-ne cum putem îmbunătăți aplicația noastră, oferindu-ne feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Deconectare"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Deconectează-te de la toate celelalte sesiuni"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Autentificare"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Gestionează personalizarea"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Gestionează mesaje"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Gestionează porecle"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Gestionează permisiunile"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Gestionează roluri"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Gestionează serverul"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Modifică webhook-uri"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Marchează ca citit"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Marchează ca necitit"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Mascare"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Membri"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Menționează"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Numai mențiuni"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Trimite un mesaj"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mesaj neîncărcat, click pentru a sări"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Mesaj primit"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mesaj trimis"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Mesajul a fost trimis de pe o altă platformă"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Mesaje"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Mută membrii"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Pune membri pe pauză"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Amuțit"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Prieteni în comun"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grupuri în comun"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Contul meu"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Boții mei"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Parolă nouă"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Poreclă"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nici una"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notificări"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Oprit"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Comunicare oficială"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Server oficial"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Deconectat"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Vechi"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Pornit"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Odată ce a fost șters, nu mai există cale de întoarcere."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Deschide setările"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Prezentare generală"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Parolă"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Permisiuni"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Alege un nume de utilizator cu care dorești ca oamenii să te poată găsi. Acesta poate fi modificat ulterior în setări."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Te rugăm să confirmi această acțiune folosind metoda selectată."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Introdu adresa de email."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Te rugăm să le salvezi într-o locație sigură."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Te rugăm să scanezi sau să folosești token-ul de mai jos în aplicația ta de autentificare."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Te rugăm să selectezi o metodă pentru a autentifica cererea."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Politica de confidențialitate"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Citește istoricul mesajelor"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Motiv"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Cod de recuperare"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Înregistrare"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Respinge cererea de prietenie"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevanță"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Dezactivează autentificatorul"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Îndepărtează avatare"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Șterge prieten"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Răspunde"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Se trimite răspuns către"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Raportează"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Raportează mesajul"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Raportează serverul"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Raportează utilizatorul"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Retrimite confirmarea"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Resetează"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Resetează parola"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Numele rolului"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roluri"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Salvare"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Salvează în notițele tale"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Notițe salvate"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Selectează limba ta"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Trimite integrări"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Trimite mesaje"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "A trimis un atașament"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "A trimis mai multe atașamente"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Descrierea serverului"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Numele Serverului"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sesiuni"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Setări"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Mai multe persoane tastează…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sunete"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Codul sursă"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Vorbește"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Propune o nouă funcție"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Trimite o părere"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Sprijină proiectul prin donații - vă mulțumim!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Termeni și condiții"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Canal de Text"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Temă"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Acesta este începutul conversației tale."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Acesta este începutul notelor tale."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Acest utilizator te-a blocat."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Pune membrii în pauză"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Deblochează utilizatorul"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Încarcă fișiere"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Utilizator"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Utilizatorul a intrat în apel"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Utilizatorul a părăsit apelul"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Gestionare utilizatori"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Setări utilizator"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Nume de utilizator"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Se verifică contul…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Vezi canalul"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Afișează rapoartele de erori active în prezent."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Vezi actualizări mai vechi"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Vizualizează codurile de recuperare"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Acum vezi mesajele vechi"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Canal de Voce"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Ți-am trimis un e-mail de verificare. Te rugăm să acorzi până la 10 minute pentru sosirea acestuia."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhook-uri"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Bun venit la"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Bun venit!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "De asemenea, poți face clic dreapta pe pictograma utilizatorului din stânga sus sau clic stânga pe ea dacă ești deja acasă."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "O poți redeschide ulterior dar va dispărea pe ambele părți."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Poți să ne raportezi probleme și să discuți cu noi despre îmbunătățiri direct aici."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Această acțiune nu poate fi anulată."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Nu ai permisiunea de a trimite mesaje pe acest canal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Nu îți vei putea accesa contul decât dacă contactezi asistența - însă, datele tale nu vor fi șterse."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nu vei putea să reintri decât dacă ești reinvitat."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Contul tău a fost verificat!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Codurile tale de recuperare"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ru/messages.js b/components/i18n/catalogs/ru/messages.js
new file mode 100644
index 0000000..6e07b52
--- /dev/null
+++ b/components/i18n/catalogs/ru/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Заглушен\"],\"+YFgJi\":[\"Значки\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Отметить как прочитанное\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Создать новую роль\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Выйти из всех других сессий\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Выберите имя пользователя, по которому люди смогут находить вас. Позже его можно будет изменить в настройках.\"],\"/qQDwm\":[\"Создание приглашения…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Пожаловаться на сообщение\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Отправить отзыв\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Скопировать ID сообщения\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Покинуть группу\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Вы можете сообщать об ошибках и обсуждать идеи с нами прямо здесь.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Заблокированный\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Вы не сможете присоединиться снова, пока вас не пригласят повторно.\"],\"3QuNUr\":[\"Несколько людей печатают…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Вы уже дружите с этим пользователем.\"],\"3T8ziB\":[\"Создать аккаунт\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сессии\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Никнейм\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Выберите язык\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Найдите сообщество по вашим хобби или интересам.\"],\"572q5a\":[\"Пожаловаться на пользователя\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Пометить как непрочитанное\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Изменять никнейм\"],\"5dJK4M\":[\"Роли\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Обзор\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Не в сети\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Пользователь\"],\"7SU2U9\":[\"Скопировать ID сервера\"],\"7VpPHA\":[\"Подтвердить\"],\"7dZnmw\":[\"Актуальные\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Имя пользователя\"],\"7vhWI8\":[\"Новый пароль\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Управлять сервером\"],\"8FE4JE\":[\"Включить приложение для аутентификации\"],\"8VGnad\":[\"Сгенерировать резервные коды\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Пароль\"],\"8aTiea\":[\"Кастомизация\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Введите имя пользователя.\"],\"9D85wC\":[\"Скопировать ID пользователя\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Сбросить токен\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Права\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Забанить\"],\"9nffag\":[\"Просмотр старых сообщений\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Разблокировать пользователя\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Создать группу\"],\"A9Rhec\":[\"Название канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Введите новый пароль.\"],\"AU7IRi\":[\"Текстовый канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Голосовой канал\"],\"BHsrDx\":[\"Приглашения\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Сообщение было отправлено на другой платформе\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Просматривать канал\"],\"CK7kdd\":[\"Очистить статус\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Описание канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Отправлять сообщения\"],\"CkIs/i\":[\"Отключать микрофон участникам\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Текущий пароль\"],\"DDpDsO\":[\"Код приглашения\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Официальное сообщение\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Готово\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Сообщение не загружено, нажмите, чтобы перейти\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Отправить предложение\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Выгнать\"],\"EdQY6l\":[\"Ничего\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Беседы\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Отправил вложение\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Создать категорию\"],\"F1uGNS\":[\"Управлять никнеймами\"],\"FEr96N\":[\"Тема\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Удалять аватары\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Включить уведомления на рабочем столе\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Сосредоточен\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Скопировать ID канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Общие группы\"],\"GhCPk1\":[\"После удаления, пути назад не будет.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Введите ваш текущий пароль.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Пожалуйста, выберите метод аутентификации вашего запроса.\"],\"HAKBY9\":[\"Загружать файлы\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Заметки\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Отправить подтверждение повторно\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Перемещать участников\"],\"ImOQa9\":[\"Ответить\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Отправил несколько вложений\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Невозможно удалить аккаунт, пока серверы не будут удалены или переданы\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Подтвердить действие\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Прошлые обновления\"],\"JUJmXm\":[\"Пожалуйста, подтвердите это действие выбранным методом.\"],\"JW8mxK\":[\"Сохранить в заметки\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Добро пожаловать в\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Также вы можете кликнуть правой кнопкой мыши по иконке пользователя в левом верхнем углу, или кликнуть левой кнопкой мыши, если вы на домашней странице.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Удалить сообщение\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Содержимое нарушает один или несколько законов\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Звуки\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Официальный сервер\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Удалить из друзей\"],\"LcET2C\":[\"Политика конфиденциальности\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Мы отправили вам на электронную почту письмо для подтверждения. Пожалуйста, подождите до 10 минут для его получения.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Название сервера\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Покинуть\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Посмотреть активные в настоящее время отчеты об ошибках можно здесь.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Дайте нам знать, как мы можем улучшить наше приложение, оставив нам отзыв.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ваш аккаунт проверен!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Электронная почта\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"У вас нет прав на отправку сообщений в этом канале.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Сбросить\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Отклонить заявку в друзья\"],\"PSP1MZ\":[\"Название роли\"],\"PWOA0E\":[\"Только упоминания\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Отправлять эмбеды\"],\"PnzsrT\":[\"Исходный код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Перейти в конец\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактивен\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Редактировать сообщение\"],\"QqoBlW\":[\"Проверьте свою электронную почту!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Восстановить пароль\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Баг трекер\"],\"S3bIKF\":[\"Скопировать ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Пожалуйста, отсканируйте или используйте токен ниже в приложении для аутентификации.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Удалить аутентификатор\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Управлять сообщениями\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Управлять ролями\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Настройки\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Пригласите всех своих друзей, крутых ботов, и устройте большую вечеринку.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Изменять аватар\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Сообщение отправлено\"],\"VJScHU\":[\"Причина\"],\"VKsaTi\":[\"Ответ для\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Отключать звук участникам\"],\"VsHxv+\":[\"Скопировать текст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Проверка вашего аккаунта…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Внешние ссылки могут быть опасными!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Настройки клиента\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Приложение для аутентификации\"],\"YcVBkL\":[\"Сообщение получено\"],\"YirHq7\":[\"Обратная связь\"],\"YlFpiA\":[\"Не удалось проверить!\"],\"Yp+Hi/\":[\"Открыть настройки\"],\"Z5HWHd\":[\"Вкл\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ваши резервные коды\"],\"aAIQg2\":[\"Внешний вид\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Вы не можете отменить это действие.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Выкл\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Отключить учетную запись\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Просматривать историю сообщений\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Забанить участника\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Редактировать права\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Пригласил\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Удалить\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Отменить\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Создать нового бота\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Создавать приглашения\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидимый\"],\"ekfzWq\":[\"Настройки пользователя\"],\"etgedT\":[\"Эмодзи\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Управление персонализацией\"],\"fTMMeD\":[\"Создать приглашение\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Зарегистрироваться\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Отменить заявку в друзья\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Назначать роли\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Пожаловаться\"],\"gkBHk/\":[\"Создать канал\"],\"gkmjYT\":[\"Покинуть сервер\"],\"go1IWB\":[\"Этот пользователь заблокировал вас.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Удалить канал\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Введите свою электронную почту.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Создать\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Домашняя страница\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Подключаться\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Упомянуть\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Вернуться ко входу\"],\"jpJ5AL\":[\"Код восстановления\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Аватар\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добро пожаловать!\"],\"knjY+b\":[\"Вы можете снова открыть её позже, но она исчезнет с обеих сторон.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Добавить в друзья\"],\"lSGjX7\":[\"Пользователь присоединяется к звонку\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Каналы\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Название группы\"],\"mAYvqA\":[\"Привет!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Редактировать информацию о себе\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Вы не сможете получить доступ к своему аккаунту, пока не обратитесь в службу поддержки, однако ваши данные не будут удалены.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Пользовательский статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Общие друзья\"],\"nbzz1A\":[\"Введите код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Это начало ваших заметок.\"],\"o+XJ9D\":[\"Изменить\"],\"oB4OOq\":[\"Банить участников\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"В сети\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Выгонять участников\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"По умолчанию\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Выйти\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Перейти к началу\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Пользователь покидает звонок\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Мой аккаунт\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Все сообщения\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 человек отреагировал\"],\"rxaY+5\":[\"Не беспокоить\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Расширенные\"],\"t43mBk\":[\"Пожаловаться на сервер\"],\"tBmnPU\":[\"Друзья\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Управлять вебхуками\"],\"tdTuUv\":[\"Заблокировать пользователя\"],\"tfDRzk\":[\"Сохранить\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Заблокированный пользователь\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Перейти на сервер тестировщиков\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Выгнать участника\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Удалить роль\"],\"utrCh2\":[\"Отстранять участников\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"О нас\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Описание сервера\"],\"v1kQyJ\":[\"Вебхуки\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профиль\"],\"vJum3e\":[\"Поддержите проект пожертвованием - спасибо!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Видео\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Изменить личность\"],\"vXIe7J\":[\"Язык\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Пожалуйста, сохраните их в безопасном месте.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Переписка\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Войти в канал\"],\"wL3cK8\":[\"Последние\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Участники\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскарад\"],\"xDAtGP\":[\"Сообщение\"],\"xGVfLh\":[\"Продолжить\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Баны\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Условия использования\"],\"xpgPPI\":[\"Мои боты\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Принять заявку в друзья\"],\"y1eoq1\":[\"Скопировать ссылку\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Я подтверждаю, что мне больше 18 лет.\"],\"yDOdwQ\":[\"Управление пользователями\"],\"yIBLq8\":[\"Говорить\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Закрыть\"],\"z0hW8A\":[\"Просмотреть резервные коды\"],\"z0t9bb\":[\"Войти\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ок\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Это начало вашей беседы.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Старые\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ru/messages.mjs b/components/i18n/catalogs/ru/messages.mjs
new file mode 100644
index 0000000..b2405f5
--- /dev/null
+++ b/components/i18n/catalogs/ru/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Заглушен\"],\"+YFgJi\":[\"Значки\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Отметить как прочитанное\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Создать новую роль\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Выйти из всех других сессий\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Выберите имя пользователя, по которому люди смогут находить вас. Позже его можно будет изменить в настройках.\"],\"/qQDwm\":[\"Создание приглашения…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Пожаловаться на сообщение\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Отправить отзыв\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Скопировать ID сообщения\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Покинуть группу\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Вы можете сообщать об ошибках и обсуждать идеи с нами прямо здесь.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Заблокированный\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Вы не сможете присоединиться снова, пока вас не пригласят повторно.\"],\"3QuNUr\":[\"Несколько людей печатают…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Вы уже дружите с этим пользователем.\"],\"3T8ziB\":[\"Создать аккаунт\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сессии\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Никнейм\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Выберите язык\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Найдите сообщество по вашим хобби или интересам.\"],\"572q5a\":[\"Пожаловаться на пользователя\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Пометить как непрочитанное\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Изменять никнейм\"],\"5dJK4M\":[\"Роли\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Обзор\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Не в сети\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Пользователь\"],\"7SU2U9\":[\"Скопировать ID сервера\"],\"7VpPHA\":[\"Подтвердить\"],\"7dZnmw\":[\"Актуальные\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Имя пользователя\"],\"7vhWI8\":[\"Новый пароль\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Управлять сервером\"],\"8FE4JE\":[\"Включить приложение для аутентификации\"],\"8VGnad\":[\"Сгенерировать резервные коды\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Пароль\"],\"8aTiea\":[\"Кастомизация\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Введите имя пользователя.\"],\"9D85wC\":[\"Скопировать ID пользователя\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Сбросить токен\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Права\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Забанить\"],\"9nffag\":[\"Просмотр старых сообщений\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Разблокировать пользователя\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Создать группу\"],\"A9Rhec\":[\"Название канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Введите новый пароль.\"],\"AU7IRi\":[\"Текстовый канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Голосовой канал\"],\"BHsrDx\":[\"Приглашения\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Сообщение было отправлено на другой платформе\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Просматривать канал\"],\"CK7kdd\":[\"Очистить статус\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Описание канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Отправлять сообщения\"],\"CkIs/i\":[\"Отключать микрофон участникам\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Текущий пароль\"],\"DDpDsO\":[\"Код приглашения\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Официальное сообщение\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Готово\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Сообщение не загружено, нажмите, чтобы перейти\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Отправить предложение\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Выгнать\"],\"EdQY6l\":[\"Ничего\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Беседы\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Отправил вложение\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Создать категорию\"],\"F1uGNS\":[\"Управлять никнеймами\"],\"FEr96N\":[\"Тема\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Удалять аватары\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Включить уведомления на рабочем столе\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Сосредоточен\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Скопировать ID канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Общие группы\"],\"GhCPk1\":[\"После удаления, пути назад не будет.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Введите ваш текущий пароль.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Пожалуйста, выберите метод аутентификации вашего запроса.\"],\"HAKBY9\":[\"Загружать файлы\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Заметки\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Отправить подтверждение повторно\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Перемещать участников\"],\"ImOQa9\":[\"Ответить\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Отправил несколько вложений\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Невозможно удалить аккаунт, пока серверы не будут удалены или переданы\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Подтвердить действие\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Прошлые обновления\"],\"JUJmXm\":[\"Пожалуйста, подтвердите это действие выбранным методом.\"],\"JW8mxK\":[\"Сохранить в заметки\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Добро пожаловать в\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Также вы можете кликнуть правой кнопкой мыши по иконке пользователя в левом верхнем углу, или кликнуть левой кнопкой мыши, если вы на домашней странице.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Удалить сообщение\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Содержимое нарушает один или несколько законов\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Звуки\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Официальный сервер\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Удалить из друзей\"],\"LcET2C\":[\"Политика конфиденциальности\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Мы отправили вам на электронную почту письмо для подтверждения. Пожалуйста, подождите до 10 минут для его получения.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Название сервера\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Покинуть\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Посмотреть активные в настоящее время отчеты об ошибках можно здесь.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Дайте нам знать, как мы можем улучшить наше приложение, оставив нам отзыв.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ваш аккаунт проверен!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Электронная почта\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"У вас нет прав на отправку сообщений в этом канале.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Сбросить\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Отклонить заявку в друзья\"],\"PSP1MZ\":[\"Название роли\"],\"PWOA0E\":[\"Только упоминания\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Отправлять эмбеды\"],\"PnzsrT\":[\"Исходный код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Перейти в конец\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактивен\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Редактировать сообщение\"],\"QqoBlW\":[\"Проверьте свою электронную почту!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Восстановить пароль\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Баг трекер\"],\"S3bIKF\":[\"Скопировать ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Пожалуйста, отсканируйте или используйте токен ниже в приложении для аутентификации.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Удалить аутентификатор\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Управлять сообщениями\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Управлять ролями\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Настройки\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Пригласите всех своих друзей, крутых ботов, и устройте большую вечеринку.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Изменять аватар\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Сообщение отправлено\"],\"VJScHU\":[\"Причина\"],\"VKsaTi\":[\"Ответ для\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Отключать звук участникам\"],\"VsHxv+\":[\"Скопировать текст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Проверка вашего аккаунта…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Внешние ссылки могут быть опасными!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Настройки клиента\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Приложение для аутентификации\"],\"YcVBkL\":[\"Сообщение получено\"],\"YirHq7\":[\"Обратная связь\"],\"YlFpiA\":[\"Не удалось проверить!\"],\"Yp+Hi/\":[\"Открыть настройки\"],\"Z5HWHd\":[\"Вкл\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ваши резервные коды\"],\"aAIQg2\":[\"Внешний вид\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Вы не можете отменить это действие.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Выкл\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Отключить учетную запись\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Просматривать историю сообщений\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Забанить участника\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Редактировать права\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Пригласил\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Удалить\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Отменить\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Создать нового бота\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Создавать приглашения\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидимый\"],\"ekfzWq\":[\"Настройки пользователя\"],\"etgedT\":[\"Эмодзи\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Управление персонализацией\"],\"fTMMeD\":[\"Создать приглашение\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Зарегистрироваться\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Отменить заявку в друзья\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Назначать роли\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Пожаловаться\"],\"gkBHk/\":[\"Создать канал\"],\"gkmjYT\":[\"Покинуть сервер\"],\"go1IWB\":[\"Этот пользователь заблокировал вас.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Удалить канал\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Введите свою электронную почту.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Создать\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Домашняя страница\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Подключаться\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Упомянуть\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Вернуться ко входу\"],\"jpJ5AL\":[\"Код восстановления\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Аватар\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добро пожаловать!\"],\"knjY+b\":[\"Вы можете снова открыть её позже, но она исчезнет с обеих сторон.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Добавить в друзья\"],\"lSGjX7\":[\"Пользователь присоединяется к звонку\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Каналы\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Название группы\"],\"mAYvqA\":[\"Привет!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Редактировать информацию о себе\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Вы не сможете получить доступ к своему аккаунту, пока не обратитесь в службу поддержки, однако ваши данные не будут удалены.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Пользовательский статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Общие друзья\"],\"nbzz1A\":[\"Введите код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Это начало ваших заметок.\"],\"o+XJ9D\":[\"Изменить\"],\"oB4OOq\":[\"Банить участников\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"В сети\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Выгонять участников\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"По умолчанию\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Выйти\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Перейти к началу\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Пользователь покидает звонок\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Мой аккаунт\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Все сообщения\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 человек отреагировал\"],\"rxaY+5\":[\"Не беспокоить\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Расширенные\"],\"t43mBk\":[\"Пожаловаться на сервер\"],\"tBmnPU\":[\"Друзья\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Управлять вебхуками\"],\"tdTuUv\":[\"Заблокировать пользователя\"],\"tfDRzk\":[\"Сохранить\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Заблокированный пользователь\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Перейти на сервер тестировщиков\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Выгнать участника\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Удалить роль\"],\"utrCh2\":[\"Отстранять участников\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"О нас\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Описание сервера\"],\"v1kQyJ\":[\"Вебхуки\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профиль\"],\"vJum3e\":[\"Поддержите проект пожертвованием - спасибо!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Видео\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Изменить личность\"],\"vXIe7J\":[\"Язык\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Пожалуйста, сохраните их в безопасном месте.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Переписка\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Войти в канал\"],\"wL3cK8\":[\"Последние\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Участники\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскарад\"],\"xDAtGP\":[\"Сообщение\"],\"xGVfLh\":[\"Продолжить\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Баны\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Условия использования\"],\"xpgPPI\":[\"Мои боты\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Принять заявку в друзья\"],\"y1eoq1\":[\"Скопировать ссылку\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Я подтверждаю, что мне больше 18 лет.\"],\"yDOdwQ\":[\"Управление пользователями\"],\"yIBLq8\":[\"Говорить\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Закрыть\"],\"z0hW8A\":[\"Просмотреть резервные коды\"],\"z0t9bb\":[\"Войти\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ок\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Это начало вашей беседы.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Старые\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ru/messages.po b/components/i18n/catalogs/ru/messages.po
new file mode 100644
index 0000000..9384582
--- /dev/null
+++ b/components/i18n/catalogs/ru/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ru\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 человек отреагировал"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "О нас"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Принять заявку в друзья"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Добавить в друзья"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Расширенные"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Все сообщения"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Вы уже дружите с этим пользователем."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Внешний вид"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Назначать роли"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Приложение для аутентификации"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Аватар"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Значки"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Забанить"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Забанить участника"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Банить участников"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Баны"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Заблокировать пользователя"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Заблокированный"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Заблокированный пользователь"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Бот"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Баг трекер"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Отменить"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Отменить заявку в друзья"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Невозможно удалить аккаунт, пока серверы не будут удалены или переданы"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Изменить"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Изменять аватар"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Изменять никнейм"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Описание канала"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Название канала"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Каналы"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Проверьте свою электронную почту!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Очистить статус"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Настройки клиента"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Закрыть"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Подтвердить"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Подтвердить действие"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Подключаться"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Содержимое нарушает один или несколько законов"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Продолжить"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Беседы"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Скопировать ID канала"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Скопировать ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Скопировать ссылку"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Скопировать ID сообщения"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Скопировать ID сервера"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Скопировать текст"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Скопировать ID пользователя"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Создать"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Создать группу"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Создать нового бота"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Создать новую роль"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Создать аккаунт"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Создать категорию"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Создать канал"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Создать приглашение"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Текущий пароль"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Пользовательский статус"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Кастомизация"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Отключать звук участникам"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "По умолчанию"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Удалить"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Удалить канал"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Удалить сообщение"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Удалить роль"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Отключить учетную запись"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Не беспокоить"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Готово"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Изменить личность"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Редактировать сообщение"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Редактировать информацию о себе"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Электронная почта"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Эмодзи"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Включить приложение для аутентификации"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Включить уведомления на рабочем столе"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Введите новый пароль."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Войти в канал"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Введите код"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Введите ваш текущий пароль."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Введите имя пользователя."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Внешние ссылки могут быть опасными!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Не удалось проверить!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Обратная связь"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Найдите сообщество по вашим хобби или интересам."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Сосредоточен"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Друзья"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Сгенерировать резервные коды"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Создание приглашения…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Вернуться ко входу"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Перейти на сервер тестировщиков"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Название группы"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Привет!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Домашняя страница"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Я подтверждаю, что мне больше 18 лет."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Неактивен"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Невидимый"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Пригласите всех своих друзей, крутых ботов, и устройте большую вечеринку."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Код приглашения"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Создавать приглашения"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Пригласил"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Приглашения"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Перейти в конец"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Перейти к началу"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Выгнать"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Выгнать участника"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Выгонять участников"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Язык"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Последние"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Покинуть"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Покинуть группу"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Покинуть сервер"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Дайте нам знать, как мы можем улучшить наше приложение, оставив нам отзыв."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Выйти"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Выйти из всех других сессий"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Войти"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Управление персонализацией"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Управлять сообщениями"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Управлять никнеймами"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Редактировать права"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Управлять ролями"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Управлять сервером"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Управлять вебхуками"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Отметить как прочитанное"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Пометить как непрочитанное"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Маскарад"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Участники"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Упомянуть"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Только упоминания"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Сообщение"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Сообщение не загружено, нажмите, чтобы перейти"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Сообщение получено"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Сообщение отправлено"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Сообщение было отправлено на другой платформе"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Переписка"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Перемещать участников"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Отключать микрофон участникам"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Заглушен"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Общие друзья"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Общие группы"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Мой аккаунт"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Мои боты"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Новый пароль"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Никнейм"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ничего"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Уведомления"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Выкл"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Официальное сообщение"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Официальный сервер"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Не в сети"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ок"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Старые"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Вкл"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "После удаления, пути назад не будет."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "В сети"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Открыть настройки"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Обзор"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Пароль"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Права"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Выберите имя пользователя, по которому люди смогут находить вас. Позже его можно будет изменить в настройках."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Пожалуйста, подтвердите это действие выбранным методом."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Введите свою электронную почту."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Пожалуйста, сохраните их в безопасном месте."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Пожалуйста, отсканируйте или используйте токен ниже в приложении для аутентификации."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Пожалуйста, выберите метод аутентификации вашего запроса."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Политика конфиденциальности"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Профиль"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Просматривать историю сообщений"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Причина"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Код восстановления"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Зарегистрироваться"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Отклонить заявку в друзья"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Актуальные"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Удалить аутентификатор"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Удалять аватары"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Удалить из друзей"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Ответить"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Ответ для"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Пожаловаться"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Пожаловаться на сообщение"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Пожаловаться на сервер"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Пожаловаться на пользователя"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Отправить подтверждение повторно"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Сбросить"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Восстановить пароль"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Сбросить токен"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Название роли"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Роли"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Сохранить"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Сохранить в заметки"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Заметки"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Выберите язык"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Отправлять эмбеды"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Отправлять сообщения"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Отправил вложение"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Отправил несколько вложений"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Описание сервера"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Название сервера"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Сессии"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Настройки"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Несколько людей печатают…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Звуки"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Исходный код"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Говорить"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Отправить предложение"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Отправить отзыв"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Поддержите проект пожертвованием - спасибо!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Условия использования"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Текстовый канал"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Тема"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Это начало вашей беседы."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Это начало ваших заметок."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Этот пользователь заблокировал вас."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Отстранять участников"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Разблокировать пользователя"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Загружать файлы"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Пользователь"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Пользователь присоединяется к звонку"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Пользователь покидает звонок"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Управление пользователями"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Настройки пользователя"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Имя пользователя"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Проверка вашего аккаунта…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Видео"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Просматривать канал"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Посмотреть активные в настоящее время отчеты об ошибках можно здесь."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Прошлые обновления"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Просмотреть резервные коды"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Просмотр старых сообщений"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Голосовой канал"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Мы отправили вам на электронную почту письмо для подтверждения. Пожалуйста, подождите до 10 минут для его получения."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Вебхуки"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Добро пожаловать в"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Добро пожаловать!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Также вы можете кликнуть правой кнопкой мыши по иконке пользователя в левом верхнем углу, или кликнуть левой кнопкой мыши, если вы на домашней странице."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Вы можете снова открыть её позже, но она исчезнет с обеих сторон."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Вы можете сообщать об ошибках и обсуждать идеи с нами прямо здесь."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Вы не можете отменить это действие."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "У вас нет прав на отправку сообщений в этом канале."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Вы не сможете получить доступ к своему аккаунту, пока не обратитесь в службу поддержки, однако ваши данные не будут удалены."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Вы не сможете присоединиться снова, пока вас не пригласят повторно."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Ваш аккаунт проверен!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Ваши резервные коды"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/si/messages.js b/components/i18n/catalogs/si/messages.js
new file mode 100644
index 0000000..39f11c3
--- /dev/null
+++ b/components/i18n/catalogs/si/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"නිහඬයි\"],\"+YFgJi\":[\"චිහ්න\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"කියවූ බව යොදන්න\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"නම භූමිකාවක් සාදන්න\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"අන් සියළුම වාර නික්මවන්න\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"මිනිසුන්ට ඔබව සොයා ගැනීමට අවශ්ය පරිශීලක නාමයක් තෝරන්න. මෙය පසුව ඔබගේ පරිශීලක සැකසුම් තුළ වෙනස් කළ හැක.\"],\"/qQDwm\":[\"ඇරයුම උත්පාදනය වෙමින්…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"පණිවිඩය වාර්තා කිරීම\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"ප්රතිපෝෂණය යොමන්න\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"පණිවිඩයේ හැඳු. පිටපතක්\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"සමූහය හැරයන්න\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"ඔබට ගැටළු වාර්තා කිරීමට සහ වැඩිදියුණු කිරීම් පිළිබඳව අප සමඟ සෘජුවම මෙහි සාකච්ඡා කළ හැකිය.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"අවහිර කර ඇත\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"ඔබට ඇරයුමකින් තොරව නැවත එක්වීමට නොහැකිය.\"],\"3QuNUr\":[\"කිහිප දෙනෙක් ලියමින්…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"දැනටමත් ඔහු/ඇය සමඟ හිතවත්ය.\"],\"3T8ziB\":[\"ගිණුමක් සාදන්න\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"වාර\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"අපනාමය\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"ඔබගේ භාෂාව තෝරන්න\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"ඔබේ විනෝදාංශ හෝ රුචිකත්වයන් මත පදනම්ව ප්රජාවක් සොයා ගන්න.\"],\"572q5a\":[\"පරිශීලකයාව වාර්තා කරන්න\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"නොකියවූ ලෙස ලකුණු කරන්න\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"අපනාමය සංශෝධනය\"],\"5dJK4M\":[\"භූමිකා\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"දළ විශ්ලේෂණය\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"මාර්ගඅපගතයි\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"පරිශීලක\"],\"7SU2U9\":[\"සේවාදායක හැඳු. පිටපතක්\"],\"7VpPHA\":[\"තහවුරු\"],\"7dZnmw\":[\"අදාළත්වය\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"පරීශිලක නාමය\"],\"7vhWI8\":[\"නව මුරපදය\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"සේවාදායකය කළමණාකරනය\"],\"8FE4JE\":[\"සත්යාපන යෙදුම සක්රිය කරන්න\"],\"8VGnad\":[\"ප්රතිසාධන කේත උත්පාදනය\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"මුරපදය\"],\"8aTiea\":[\"අභිරුචිකරණය\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"ඔබ කැමති පරිශීලක නාමය ඇතුලත් කරන්න.\"],\"9D85wC\":[\"පරිශීලක හැඳු. පිටපතක්\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"සංකේතය නැවත සකසන්න\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"අවසර\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"තහනම් කිරීම\"],\"9nffag\":[\"පරණ පණිවිඩ දකිමින්\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"පරිශීලකයා අනවහිර\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"සමූහයක් සාදන්න\"],\"A9Rhec\":[\"නාලිකාවේ නම\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"නව මුරපදයක් යොදන්න.\"],\"AU7IRi\":[\"පාඨ නාලිකාව\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"කටහඬ නාලිකාව\"],\"BHsrDx\":[\"ඇරයුම්\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"පණිවිඩය වෙනත් වේදිකාවක් තුලදී යවන ලදී\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"නාලිකාව දකින්න\"],\"CK7kdd\":[\"තත්වය මකන්න\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"නාලිකාවේ සවිස්තරය\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"පණිවිඩ යවන්න\"],\"CkIs/i\":[\"සාමාජිකයින් නිහඬ කරන්න\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"වත්මන් මුරපදය\"],\"DDpDsO\":[\"ඇරයුම් කේතය\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"නිල සන්නිවේදනය\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"අහවරයි\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"පණිවිඩය පූරණය වී නැත, පැනීමට ක්ලික් කරන්න\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"විශේෂාංග යෝජනාව ඉදිරිපත් කරන්න\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"පයින් ගහන්න\"],\"EdQY6l\":[\"කිසිත් නැත\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"සංවාද\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ඇමුණුමක් යැවිණි\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"ප්රවර්ගය සාදන්න\"],\"F1uGNS\":[\"අපනාම කළමනාකරණය\"],\"FEr96N\":[\"තේමාව\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"පැතිකඩ පින්තූර ඉවත් කරන්න\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"වැඩතල දැනුම්දීම් සබල කරන්න\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"අවධානය යොමු කරන්\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"නාලිකාවේ හැඳු. පිටපතක්\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"අන්යෝන්ය සමූහ\"],\"GhCPk1\":[\"එය මකා දැමූ පසු, ආපසු යාමක් නැත.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"වත්මන් මුරපදය යොදන්න.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"කරුණාකර ඔබගේ ඉල්ලීම සත්යාපනය කිරීමට ක්රමයක් තෝරන්න.\"],\"HAKBY9\":[\"ගොනු උඩුගත\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"සුරැකි සටහන්\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"සත්යාපනය නැවත යවන්න\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"සමාජිකයින් ගෙනයන්න\"],\"ImOQa9\":[\"පිළිතුර\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ඇමුණුම් කිහිපයක් යැවිණි\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"සේවාදායක පරිගණකය මකා දමන තුරු හෝ මාරු කරන තුරු ගිණුම මකා දැමිය නොහැක\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"ක්රියාව තහවුරු කරන්න\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"පැරණි යාවත්කාලීන බලන්න\"],\"JUJmXm\":[\"කරුණාකර තෝරාගත් ක්රමය භාවිතයෙන් මෙම ක්රියාව තහවුරු කරන්න.\"],\"JW8mxK\":[\"ඔබගේ සටහන් වෙත සුරකින්න\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"සාදරයෙන් පිළිගනිමු\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"ඔබට ඉහළ වම්පස ඇති පරිශීලක නිරූපකය දකුණු-ක්ලික් කළ හැකිය, නැතහොත් ඔබ දැනටමත් නිවසේ සිටී නම් එය වම් ක්ලික් කරන්න.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"පණිවිඩය මකන්න\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"අන්තර්ගතය නීති එකක් හෝ කිහිපයක් කඩ කරයි\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ශබ්ද\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"නිල සේවාදායකය\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"යහළුවා ඉවත් කරන්න\"],\"LcET2C\":[\"රහස්යතා ප්රතිපත්තිය\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"අපි ඔබට සත්යාපන විද්යුත් තැපෑලක් එවා ඇත. කරුණාකර එය පැමිණීමට විනාඩි 10 ක් වත් ඉඩ දෙන්න.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"සේවාදායකයේ නම\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"හැරයන්න\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"දැනට සක්රිය දෝෂ වාර්තා මෙතැනින් බලන්න.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"අපට ප්රතිපෝෂණ ලබා දීමෙන් අපගේ යෙදුම වැඩිදියුණු කළ හැකි ආකාරය අපට දන්වන්න.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"ගිණුම සත්යාපනය වී ඇත!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ඊ-තැපෑල\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"ඔබට මෙම නාලිකාවේ පණිවිඩ යැවීමට අවසර නැත.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"යළි සකසන්න\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"මිතුරු ඉල්ලීම ප්රතික්ෂේප කරන්න\"],\"PSP1MZ\":[\"භූමිකාවේ නම\"],\"PWOA0E\":[\"සැඳහුම් පමණි\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Embeds යවන්න\"],\"PnzsrT\":[\"ප්රභව කේතය\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"වත්මනට යන්න\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"නිෂ්ක්රීයයි\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"පණිවිඩය සංස්කරණය\"],\"QqoBlW\":[\"වි-තැපෑල පරීක්ෂා කරන්න!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"මුරපදය යළි සකසන්න\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"දෝෂ සොයාගන්නා\"],\"S3bIKF\":[\"හැඳු. පිටපතක්\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"කරුණාකර ඔබගේ සත්යාපන යෙදුමේ පහත ටෝකනය පරිලෝකනය කරන්න හෝ භාවිතා කරන්න.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"ඔතන්ටිකේටරය ඉවත් කරන්න\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"පණිවිඩ කළමනාකරණය\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"භූමිකා කළමනාකරණය\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"සැකසුම්\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"ඔබගේ සියලු මිතුරන්ට ආරාධනා කරන්න, නියම රොබෝලා කිහිපයකට, සහ විශාල සාදයක් පවත්වන්න.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"පැතිකඩ පින්තූරය වෙනස් කරන්න\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"පණිවිඩය යැවිණි\"],\"VJScHU\":[\"හේතුව\"],\"VKsaTi\":[\"පිළිතුරු දෙමින්\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"සාමාජිකයින්ව බිහිරි කරන්න\"],\"VsHxv+\":[\"පෙළ පිටපතක්\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"ගිණුම සත්යාපනය වෙමින්…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"බාහිර සබැඳි අනතරායකාරී විය හැකිය!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"අනුග්රාහක සැකසුම්\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"සත්යාපන යෙදුම\"],\"YcVBkL\":[\"පණිවිඩය ලැබුණි\"],\"YirHq7\":[\"ප්රතිපෝෂණය\"],\"YlFpiA\":[\"සත්යාපනයට නොහැකි විය!\"],\"Yp+Hi/\":[\"සැකසුම් අරින්න\"],\"Z5HWHd\":[\"සක්රියයි\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"ඔබගේ ප්රතිසාධන කේත\"],\"aAIQg2\":[\"පෙනුම\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"ඔබට මෙම ක්රියාව පසුගමනය කළ නොහැක.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"අක්රියයි\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"ගිණුම අබල කරන්න\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"පණිවිඩ ඉතිහාසය කියවන්න\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"සමාජිකයා තහනම්\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"අවසරයන් කළමනාකරණය කරන්න\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"ඇරයුම්කරු\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"මකන්න\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"අවලංගු\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"නව ස්වයංක්රමලේඛයක් සාදන්න\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"අන් අයට ආරාධනා කරන්න\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"අදෘශ්යමානයි\"],\"ekfzWq\":[\"පරිශීලක සැකසුම්\"],\"etgedT\":[\"ඉමෝජි\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"අභිරුචිකරණය කළමනාකරණය කරන්න\"],\"fTMMeD\":[\"ඇරයුම සාදන්න\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"ලියාපදිංචි වන්න\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"මිතුරු ඉල්ලීම අවලංගු කරන්න\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"භූමිකාවන් පවරන්න\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"වාර්තාව\"],\"gkBHk/\":[\"නාලිකාව සාදන්න\"],\"gkmjYT\":[\"සේවාදායකය හැරයන්න\"],\"go1IWB\":[\"ඔහු/ඇය ඔබව අවහිර කර ඇත.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"නාලිකාව මකන්න\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"කරුණාවෙන්ඊ ඔබගේ ඊ-තැපෑල යොදන්න.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"සාදන්න\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"මුල\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"සබඳින්න\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"සැඳහුම\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ස්වයංක්රමලේඛය\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"පිවිසුමට ආපසු යන්න\"],\"jpJ5AL\":[\"ප්රතිසාධන කේතය\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"ප්රතිරූපය\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"සාදරයෙන් පිළිගනිමු!\"],\"knjY+b\":[\"ඔබට එය පසුව නැවත විවෘත කළ හැක, නමුත් එය දෙපැත්තෙන්ම අතුරුදහන් වනු ඇත.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"යහළුවා එක් කරන්න\"],\"lSGjX7\":[\"පුද්ඉගලයා ඇමතුමට එක්විය\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"නාලිකා\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"සමූහයේ නම\"],\"mAYvqA\":[\"ආයුබෝවන්!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"ඔබගේ අනන්යතාවය සංස්කරණය කරන්න\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"ඔබ සහාය සම්බන්ධ කර ගන්නේ නම් මිස ඔබට ඔබේ ගිණුමට ප්රවේශ වීමට නොහැකි වනු ඇත - කෙසේ වෙතත්, ඔබේ දත්ත මකා නොදමනු ඇත.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"අභිරුචි තත්වය\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"අන්යෝන්ය යහළුවන්\"],\"nbzz1A\":[\"කේතය යොදන්න\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"මෙය ඔබගේ සටහන්වල ආරම්භයයි.\"],\"o+XJ9D\":[\"වෙනස් කරන්න\"],\"oB4OOq\":[\"සාමාජිකයින් තහනම\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"මාර්ගගතයි\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"සාමාජිකයින්ට පයින් ගසන්න\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"පෙරනිමි\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"නික්මෙන්න\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"මුලට පනින්න\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"පුද්ගලයා ඇමතුම හැරගියා\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"මාගේ ගිණුම\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"සියළුම පණිවිඩ\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 පුද්ගලයෙක් ප්රතිචාර දැක්වීය\"],\"rxaY+5\":[\"බාධා කරන්න එපා\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"උසස්\"],\"t43mBk\":[\"සේවාදායකය වාර්තා කරන්න\"],\"tBmnPU\":[\"යහළුවන්\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks කළමනාකරණය කරන්න\"],\"tdTuUv\":[\"පරිශීලකයා අවහිර\"],\"tfDRzk\":[\"සුරකින්න\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"අවහිර කළ පරිශීලකයෙකි\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"පරීක්ෂක සේවාදායකයට එක්වන්න\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"සාමාජිකයාට පයින් ගසන්න\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"භූමිකාව මකන්න\"],\"utrCh2\":[\"සාමාජිකයින් ව කල් ඉකුත් කරන්න\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"පිළිබඳව\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"සේවාදායකයේ සවිස්තරය\"],\"v1kQyJ\":[\"වෙබ්කොකු\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"පැතිකඩ\"],\"vJum3e\":[\"මෙම ව්යාපෘතියට පරිත්යාග කිරීමෙන් උදව් වන්න - ස්තූතියි!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"වීඩියෝ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"හැඳුනුම සංස්කරණය\"],\"vXIe7J\":[\"භාෂාව\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"කරුණාකර මේවා ආරක්ෂිත ස්ථානයක සුරකින්න.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"පණිවිඩ යැවීම\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"නාලිකාවට ඇතුල් වන්න\"],\"wL3cK8\":[\"නවතම\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"සාමාජිකයින්\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"වෙස් මුහුණු\"],\"xDAtGP\":[\"පණිවිඩය\"],\"xGVfLh\":[\"ඉදිරියට\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"තහනම් කිරීම්\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"සේවාවේ නියම\"],\"xpgPPI\":[\"මාගේ ස්වයංක්රමලේඛ\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"මිතුරු ඉල්ලීම පිළිගන්න\"],\"y1eoq1\":[\"සබැඳියේ පිටපතක්\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"මම අවම වශයෙන් අවු. 18 ක් බව තහවුරු කරමි.\"],\"yDOdwQ\":[\"පරිශීලක කළමනාකරණය\"],\"yIBLq8\":[\"කතා කරන්න\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"වසන්න\"],\"z0hW8A\":[\"ප්රතිසාධන කේත බලන්න\"],\"z0t9bb\":[\"පිවිසෙන්න\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"හරි\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"මෙය ඔබගේ සංවාදයේ ආරම්භය යි.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"පරණම\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/si/messages.mjs b/components/i18n/catalogs/si/messages.mjs
new file mode 100644
index 0000000..1be544f
--- /dev/null
+++ b/components/i18n/catalogs/si/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"නිහඬයි\"],\"+YFgJi\":[\"චිහ්න\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"කියවූ බව යොදන්න\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"නම භූමිකාවක් සාදන්න\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"අන් සියළුම වාර නික්මවන්න\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"මිනිසුන්ට ඔබව සොයා ගැනීමට අවශ්ය පරිශීලක නාමයක් තෝරන්න. මෙය පසුව ඔබගේ පරිශීලක සැකසුම් තුළ වෙනස් කළ හැක.\"],\"/qQDwm\":[\"ඇරයුම උත්පාදනය වෙමින්…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"පණිවිඩය වාර්තා කිරීම\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"ප්රතිපෝෂණය යොමන්න\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"පණිවිඩයේ හැඳු. පිටපතක්\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"සමූහය හැරයන්න\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"ඔබට ගැටළු වාර්තා කිරීමට සහ වැඩිදියුණු කිරීම් පිළිබඳව අප සමඟ සෘජුවම මෙහි සාකච්ඡා කළ හැකිය.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"අවහිර කර ඇත\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"ඔබට ඇරයුමකින් තොරව නැවත එක්වීමට නොහැකිය.\"],\"3QuNUr\":[\"කිහිප දෙනෙක් ලියමින්…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"දැනටමත් ඔහු/ඇය සමඟ හිතවත්ය.\"],\"3T8ziB\":[\"ගිණුමක් සාදන්න\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"වාර\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"අපනාමය\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"ඔබගේ භාෂාව තෝරන්න\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"ඔබේ විනෝදාංශ හෝ රුචිකත්වයන් මත පදනම්ව ප්රජාවක් සොයා ගන්න.\"],\"572q5a\":[\"පරිශීලකයාව වාර්තා කරන්න\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"නොකියවූ ලෙස ලකුණු කරන්න\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"අපනාමය සංශෝධනය\"],\"5dJK4M\":[\"භූමිකා\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"දළ විශ්ලේෂණය\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"මාර්ගඅපගතයි\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"පරිශීලක\"],\"7SU2U9\":[\"සේවාදායක හැඳු. පිටපතක්\"],\"7VpPHA\":[\"තහවුරු\"],\"7dZnmw\":[\"අදාළත්වය\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"පරීශිලක නාමය\"],\"7vhWI8\":[\"නව මුරපදය\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"සේවාදායකය කළමණාකරනය\"],\"8FE4JE\":[\"සත්යාපන යෙදුම සක්රිය කරන්න\"],\"8VGnad\":[\"ප්රතිසාධන කේත උත්පාදනය\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"මුරපදය\"],\"8aTiea\":[\"අභිරුචිකරණය\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"ඔබ කැමති පරිශීලක නාමය ඇතුලත් කරන්න.\"],\"9D85wC\":[\"පරිශීලක හැඳු. පිටපතක්\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"සංකේතය නැවත සකසන්න\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"අවසර\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"තහනම් කිරීම\"],\"9nffag\":[\"පරණ පණිවිඩ දකිමින්\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"පරිශීලකයා අනවහිර\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"සමූහයක් සාදන්න\"],\"A9Rhec\":[\"නාලිකාවේ නම\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"නව මුරපදයක් යොදන්න.\"],\"AU7IRi\":[\"පාඨ නාලිකාව\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"කටහඬ නාලිකාව\"],\"BHsrDx\":[\"ඇරයුම්\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"පණිවිඩය වෙනත් වේදිකාවක් තුලදී යවන ලදී\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"නාලිකාව දකින්න\"],\"CK7kdd\":[\"තත්වය මකන්න\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"නාලිකාවේ සවිස්තරය\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"පණිවිඩ යවන්න\"],\"CkIs/i\":[\"සාමාජිකයින් නිහඬ කරන්න\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"වත්මන් මුරපදය\"],\"DDpDsO\":[\"ඇරයුම් කේතය\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"නිල සන්නිවේදනය\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"අහවරයි\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"පණිවිඩය පූරණය වී නැත, පැනීමට ක්ලික් කරන්න\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"විශේෂාංග යෝජනාව ඉදිරිපත් කරන්න\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"පයින් ගහන්න\"],\"EdQY6l\":[\"කිසිත් නැත\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"සංවාද\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ඇමුණුමක් යැවිණි\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"ප්රවර්ගය සාදන්න\"],\"F1uGNS\":[\"අපනාම කළමනාකරණය\"],\"FEr96N\":[\"තේමාව\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"පැතිකඩ පින්තූර ඉවත් කරන්න\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"වැඩතල දැනුම්දීම් සබල කරන්න\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"අවධානය යොමු කරන්\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"නාලිකාවේ හැඳු. පිටපතක්\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"අන්යෝන්ය සමූහ\"],\"GhCPk1\":[\"එය මකා දැමූ පසු, ආපසු යාමක් නැත.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"වත්මන් මුරපදය යොදන්න.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"කරුණාකර ඔබගේ ඉල්ලීම සත්යාපනය කිරීමට ක්රමයක් තෝරන්න.\"],\"HAKBY9\":[\"ගොනු උඩුගත\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"සුරැකි සටහන්\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"සත්යාපනය නැවත යවන්න\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"සමාජිකයින් ගෙනයන්න\"],\"ImOQa9\":[\"පිළිතුර\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ඇමුණුම් කිහිපයක් යැවිණි\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"සේවාදායක පරිගණකය මකා දමන තුරු හෝ මාරු කරන තුරු ගිණුම මකා දැමිය නොහැක\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"ක්රියාව තහවුරු කරන්න\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"පැරණි යාවත්කාලීන බලන්න\"],\"JUJmXm\":[\"කරුණාකර තෝරාගත් ක්රමය භාවිතයෙන් මෙම ක්රියාව තහවුරු කරන්න.\"],\"JW8mxK\":[\"ඔබගේ සටහන් වෙත සුරකින්න\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"සාදරයෙන් පිළිගනිමු\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"ඔබට ඉහළ වම්පස ඇති පරිශීලක නිරූපකය දකුණු-ක්ලික් කළ හැකිය, නැතහොත් ඔබ දැනටමත් නිවසේ සිටී නම් එය වම් ක්ලික් කරන්න.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"පණිවිඩය මකන්න\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"අන්තර්ගතය නීති එකක් හෝ කිහිපයක් කඩ කරයි\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ශබ්ද\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"නිල සේවාදායකය\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"යහළුවා ඉවත් කරන්න\"],\"LcET2C\":[\"රහස්යතා ප්රතිපත්තිය\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"අපි ඔබට සත්යාපන විද්යුත් තැපෑලක් එවා ඇත. කරුණාකර එය පැමිණීමට විනාඩි 10 ක් වත් ඉඩ දෙන්න.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"සේවාදායකයේ නම\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"හැරයන්න\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"දැනට සක්රිය දෝෂ වාර්තා මෙතැනින් බලන්න.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"අපට ප්රතිපෝෂණ ලබා දීමෙන් අපගේ යෙදුම වැඩිදියුණු කළ හැකි ආකාරය අපට දන්වන්න.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"ගිණුම සත්යාපනය වී ඇත!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"ඊ-තැපෑල\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"ඔබට මෙම නාලිකාවේ පණිවිඩ යැවීමට අවසර නැත.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"යළි සකසන්න\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"මිතුරු ඉල්ලීම ප්රතික්ෂේප කරන්න\"],\"PSP1MZ\":[\"භූමිකාවේ නම\"],\"PWOA0E\":[\"සැඳහුම් පමණි\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Embeds යවන්න\"],\"PnzsrT\":[\"ප්රභව කේතය\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"වත්මනට යන්න\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"නිෂ්ක්රීයයි\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"පණිවිඩය සංස්කරණය\"],\"QqoBlW\":[\"වි-තැපෑල පරීක්ෂා කරන්න!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"මුරපදය යළි සකසන්න\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"දෝෂ සොයාගන්නා\"],\"S3bIKF\":[\"හැඳු. පිටපතක්\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"කරුණාකර ඔබගේ සත්යාපන යෙදුමේ පහත ටෝකනය පරිලෝකනය කරන්න හෝ භාවිතා කරන්න.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"ඔතන්ටිකේටරය ඉවත් කරන්න\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"පණිවිඩ කළමනාකරණය\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"භූමිකා කළමනාකරණය\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"සැකසුම්\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"ඔබගේ සියලු මිතුරන්ට ආරාධනා කරන්න, නියම රොබෝලා කිහිපයකට, සහ විශාල සාදයක් පවත්වන්න.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"පැතිකඩ පින්තූරය වෙනස් කරන්න\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"පණිවිඩය යැවිණි\"],\"VJScHU\":[\"හේතුව\"],\"VKsaTi\":[\"පිළිතුරු දෙමින්\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"සාමාජිකයින්ව බිහිරි කරන්න\"],\"VsHxv+\":[\"පෙළ පිටපතක්\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"ගිණුම සත්යාපනය වෙමින්…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"බාහිර සබැඳි අනතරායකාරී විය හැකිය!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"අනුග්රාහක සැකසුම්\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"සත්යාපන යෙදුම\"],\"YcVBkL\":[\"පණිවිඩය ලැබුණි\"],\"YirHq7\":[\"ප්රතිපෝෂණය\"],\"YlFpiA\":[\"සත්යාපනයට නොහැකි විය!\"],\"Yp+Hi/\":[\"සැකසුම් අරින්න\"],\"Z5HWHd\":[\"සක්රියයි\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"ඔබගේ ප්රතිසාධන කේත\"],\"aAIQg2\":[\"පෙනුම\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"ඔබට මෙම ක්රියාව පසුගමනය කළ නොහැක.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"අක්රියයි\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"ගිණුම අබල කරන්න\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"පණිවිඩ ඉතිහාසය කියවන්න\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"සමාජිකයා තහනම්\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"අවසරයන් කළමනාකරණය කරන්න\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"ඇරයුම්කරු\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"මකන්න\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"අවලංගු\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"නව ස්වයංක්රමලේඛයක් සාදන්න\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"අන් අයට ආරාධනා කරන්න\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"අදෘශ්යමානයි\"],\"ekfzWq\":[\"පරිශීලක සැකසුම්\"],\"etgedT\":[\"ඉමෝජි\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"අභිරුචිකරණය කළමනාකරණය කරන්න\"],\"fTMMeD\":[\"ඇරයුම සාදන්න\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"ලියාපදිංචි වන්න\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"මිතුරු ඉල්ලීම අවලංගු කරන්න\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"භූමිකාවන් පවරන්න\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"වාර්තාව\"],\"gkBHk/\":[\"නාලිකාව සාදන්න\"],\"gkmjYT\":[\"සේවාදායකය හැරයන්න\"],\"go1IWB\":[\"ඔහු/ඇය ඔබව අවහිර කර ඇත.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"නාලිකාව මකන්න\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"කරුණාවෙන්ඊ ඔබගේ ඊ-තැපෑල යොදන්න.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"සාදන්න\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"මුල\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"සබඳින්න\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"සැඳහුම\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ස්වයංක්රමලේඛය\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"පිවිසුමට ආපසු යන්න\"],\"jpJ5AL\":[\"ප්රතිසාධන කේතය\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"ප්රතිරූපය\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"සාදරයෙන් පිළිගනිමු!\"],\"knjY+b\":[\"ඔබට එය පසුව නැවත විවෘත කළ හැක, නමුත් එය දෙපැත්තෙන්ම අතුරුදහන් වනු ඇත.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"යහළුවා එක් කරන්න\"],\"lSGjX7\":[\"පුද්ඉගලයා ඇමතුමට එක්විය\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"නාලිකා\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"සමූහයේ නම\"],\"mAYvqA\":[\"ආයුබෝවන්!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"ඔබගේ අනන්යතාවය සංස්කරණය කරන්න\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"ඔබ සහාය සම්බන්ධ කර ගන්නේ නම් මිස ඔබට ඔබේ ගිණුමට ප්රවේශ වීමට නොහැකි වනු ඇත - කෙසේ වෙතත්, ඔබේ දත්ත මකා නොදමනු ඇත.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"අභිරුචි තත්වය\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"අන්යෝන්ය යහළුවන්\"],\"nbzz1A\":[\"කේතය යොදන්න\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"මෙය ඔබගේ සටහන්වල ආරම්භයයි.\"],\"o+XJ9D\":[\"වෙනස් කරන්න\"],\"oB4OOq\":[\"සාමාජිකයින් තහනම\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"මාර්ගගතයි\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"සාමාජිකයින්ට පයින් ගසන්න\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"පෙරනිමි\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"නික්මෙන්න\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"මුලට පනින්න\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"පුද්ගලයා ඇමතුම හැරගියා\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"මාගේ ගිණුම\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"සියළුම පණිවිඩ\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 පුද්ගලයෙක් ප්රතිචාර දැක්වීය\"],\"rxaY+5\":[\"බාධා කරන්න එපා\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"උසස්\"],\"t43mBk\":[\"සේවාදායකය වාර්තා කරන්න\"],\"tBmnPU\":[\"යහළුවන්\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Webhooks කළමනාකරණය කරන්න\"],\"tdTuUv\":[\"පරිශීලකයා අවහිර\"],\"tfDRzk\":[\"සුරකින්න\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"අවහිර කළ පරිශීලකයෙකි\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"පරීක්ෂක සේවාදායකයට එක්වන්න\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"සාමාජිකයාට පයින් ගසන්න\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"භූමිකාව මකන්න\"],\"utrCh2\":[\"සාමාජිකයින් ව කල් ඉකුත් කරන්න\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"පිළිබඳව\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"සේවාදායකයේ සවිස්තරය\"],\"v1kQyJ\":[\"වෙබ්කොකු\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"පැතිකඩ\"],\"vJum3e\":[\"මෙම ව්යාපෘතියට පරිත්යාග කිරීමෙන් උදව් වන්න - ස්තූතියි!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"වීඩියෝ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"හැඳුනුම සංස්කරණය\"],\"vXIe7J\":[\"භාෂාව\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"කරුණාකර මේවා ආරක්ෂිත ස්ථානයක සුරකින්න.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"පණිවිඩ යැවීම\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"නාලිකාවට ඇතුල් වන්න\"],\"wL3cK8\":[\"නවතම\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"සාමාජිකයින්\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"වෙස් මුහුණු\"],\"xDAtGP\":[\"පණිවිඩය\"],\"xGVfLh\":[\"ඉදිරියට\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"තහනම් කිරීම්\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"සේවාවේ නියම\"],\"xpgPPI\":[\"මාගේ ස්වයංක්රමලේඛ\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"මිතුරු ඉල්ලීම පිළිගන්න\"],\"y1eoq1\":[\"සබැඳියේ පිටපතක්\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"මම අවම වශයෙන් අවු. 18 ක් බව තහවුරු කරමි.\"],\"yDOdwQ\":[\"පරිශීලක කළමනාකරණය\"],\"yIBLq8\":[\"කතා කරන්න\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"වසන්න\"],\"z0hW8A\":[\"ප්රතිසාධන කේත බලන්න\"],\"z0t9bb\":[\"පිවිසෙන්න\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"හරි\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"මෙය ඔබගේ සංවාදයේ ආරම්භය යි.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"පරණම\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/si/messages.po b/components/i18n/catalogs/si/messages.po
new file mode 100644
index 0000000..ec52eda
--- /dev/null
+++ b/components/i18n/catalogs/si/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: si\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 පුද්ගලයෙක් ප්රතිචාර දැක්වීය"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "පිළිබඳව"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "මිතුරු ඉල්ලීම පිළිගන්න"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "යහළුවා එක් කරන්න"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "උසස්"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "සියළුම පණිවිඩ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "දැනටමත් ඔහු/ඇය සමඟ හිතවත්ය."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "පෙනුම"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "භූමිකාවන් පවරන්න"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "සත්යාපන යෙදුම"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "ප්රතිරූපය"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "චිහ්න"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "තහනම් කිරීම"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "සමාජිකයා තහනම්"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "සාමාජිකයින් තහනම"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "තහනම් කිරීම්"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "පරිශීලකයා අවහිර"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "අවහිර කර ඇත"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "අවහිර කළ පරිශීලකයෙකි"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "ස්වයංක්රමලේඛය"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "දෝෂ සොයාගන්නා"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "අවලංගු"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "මිතුරු ඉල්ලීම අවලංගු කරන්න"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "සේවාදායක පරිගණකය මකා දමන තුරු හෝ මාරු කරන තුරු ගිණුම මකා දැමිය නොහැක"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "වෙනස් කරන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "පැතිකඩ පින්තූරය වෙනස් කරන්න"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "අපනාමය සංශෝධනය"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "නාලිකාවේ සවිස්තරය"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "නාලිකාවේ නම"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "නාලිකා"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "වි-තැපෑල පරීක්ෂා කරන්න!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "තත්වය මකන්න"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "අනුග්රාහක සැකසුම්"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "වසන්න"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "තහවුරු"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "ක්රියාව තහවුරු කරන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "සබඳින්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "අන්තර්ගතය නීති එකක් හෝ කිහිපයක් කඩ කරයි"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "ඉදිරියට"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "සංවාද"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "නාලිකාවේ හැඳු. පිටපතක්"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "හැඳු. පිටපතක්"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "සබැඳියේ පිටපතක්"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "පණිවිඩයේ හැඳු. පිටපතක්"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "සේවාදායක හැඳු. පිටපතක්"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "පෙළ පිටපතක්"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "පරිශීලක හැඳු. පිටපතක්"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "සාදන්න"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "සමූහයක් සාදන්න"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "නව ස්වයංක්රමලේඛයක් සාදන්න"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "නම භූමිකාවක් සාදන්න"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "ගිණුමක් සාදන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "ප්රවර්ගය සාදන්න"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "නාලිකාව සාදන්න"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "ඇරයුම සාදන්න"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "වත්මන් මුරපදය"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "අභිරුචි තත්වය"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "අභිරුචිකරණය"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "සාමාජිකයින්ව බිහිරි කරන්න"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "පෙරනිමි"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "මකන්න"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "නාලිකාව මකන්න"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "පණිවිඩය මකන්න"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "භූමිකාව මකන්න"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "ගිණුම අබල කරන්න"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "බාධා කරන්න එපා"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "අහවරයි"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "හැඳුනුම සංස්කරණය"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "පණිවිඩය සංස්කරණය"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "ඔබගේ අනන්යතාවය සංස්කරණය කරන්න"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "ඊ-තැපෑල"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "ඉමෝජි"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "සත්යාපන යෙදුම සක්රිය කරන්න"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "වැඩතල දැනුම්දීම් සබල කරන්න"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "නව මුරපදයක් යොදන්න."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "නාලිකාවට ඇතුල් වන්න"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "කේතය යොදන්න"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "වත්මන් මුරපදය යොදන්න."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "ඔබ කැමති පරිශීලක නාමය ඇතුලත් කරන්න."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "බාහිර සබැඳි අනතරායකාරී විය හැකිය!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "සත්යාපනයට නොහැකි විය!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "ප්රතිපෝෂණය"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "ඔබේ විනෝදාංශ හෝ රුචිකත්වයන් මත පදනම්ව ප්රජාවක් සොයා ගන්න."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "අවධානය යොමු කරන්"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "යහළුවන්"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "ප්රතිසාධන කේත උත්පාදනය"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "ඇරයුම උත්පාදනය වෙමින්…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "පිවිසුමට ආපසු යන්න"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "පරීක්ෂක සේවාදායකයට එක්වන්න"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "සමූහයේ නම"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "ආයුබෝවන්!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "මුල"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "මම අවම වශයෙන් අවු. 18 ක් බව තහවුරු කරමි."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "නිෂ්ක්රීයයි"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "අදෘශ්යමානයි"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "ඔබගේ සියලු මිතුරන්ට ආරාධනා කරන්න, නියම රොබෝලා කිහිපයකට, සහ විශාල සාදයක් පවත්වන්න."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "ඇරයුම් කේතය"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "අන් අයට ආරාධනා කරන්න"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "ඇරයුම්කරු"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "ඇරයුම්"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "වත්මනට යන්න"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "මුලට පනින්න"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "පයින් ගහන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "සාමාජිකයාට පයින් ගසන්න"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "සාමාජිකයින්ට පයින් ගසන්න"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "භාෂාව"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "නවතම"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "හැරයන්න"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "සමූහය හැරයන්න"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "සේවාදායකය හැරයන්න"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "අපට ප්රතිපෝෂණ ලබා දීමෙන් අපගේ යෙදුම වැඩිදියුණු කළ හැකි ආකාරය අපට දන්වන්න."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "නික්මෙන්න"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "අන් සියළුම වාර නික්මවන්න"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "පිවිසෙන්න"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "අභිරුචිකරණය කළමනාකරණය කරන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "පණිවිඩ කළමනාකරණය"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "අපනාම කළමනාකරණය"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "අවසරයන් කළමනාකරණය කරන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "භූමිකා කළමනාකරණය"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "සේවාදායකය කළමණාකරනය"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Webhooks කළමනාකරණය කරන්න"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "කියවූ බව යොදන්න"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "නොකියවූ ලෙස ලකුණු කරන්න"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "වෙස් මුහුණු"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "සාමාජිකයින්"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "සැඳහුම"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "සැඳහුම් පමණි"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "පණිවිඩය"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "පණිවිඩය පූරණය වී නැත, පැනීමට ක්ලික් කරන්න"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "පණිවිඩය ලැබුණි"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "පණිවිඩය යැවිණි"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "පණිවිඩය වෙනත් වේදිකාවක් තුලදී යවන ලදී"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "පණිවිඩ යැවීම"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "සමාජිකයින් ගෙනයන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "සාමාජිකයින් නිහඬ කරන්න"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "නිහඬයි"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "අන්යෝන්ය යහළුවන්"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "අන්යෝන්ය සමූහ"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "මාගේ ගිණුම"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "මාගේ ස්වයංක්රමලේඛ"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "නව මුරපදය"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "අපනාමය"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "කිසිත් නැත"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "දැනුම්දීම්"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "අක්රියයි"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "නිල සන්නිවේදනය"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "නිල සේවාදායකය"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "මාර්ගඅපගතයි"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "හරි"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "පරණම"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "සක්රියයි"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "එය මකා දැමූ පසු, ආපසු යාමක් නැත."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "මාර්ගගතයි"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "සැකසුම් අරින්න"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "දළ විශ්ලේෂණය"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "මුරපදය"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "අවසර"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "මිනිසුන්ට ඔබව සොයා ගැනීමට අවශ්ය පරිශීලක නාමයක් තෝරන්න. මෙය පසුව ඔබගේ පරිශීලක සැකසුම් තුළ වෙනස් කළ හැක."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "කරුණාකර තෝරාගත් ක්රමය භාවිතයෙන් මෙම ක්රියාව තහවුරු කරන්න."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "කරුණාවෙන්ඊ ඔබගේ ඊ-තැපෑල යොදන්න."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "කරුණාකර මේවා ආරක්ෂිත ස්ථානයක සුරකින්න."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "කරුණාකර ඔබගේ සත්යාපන යෙදුමේ පහත ටෝකනය පරිලෝකනය කරන්න හෝ භාවිතා කරන්න."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "කරුණාකර ඔබගේ ඉල්ලීම සත්යාපනය කිරීමට ක්රමයක් තෝරන්න."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "රහස්යතා ප්රතිපත්තිය"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "පැතිකඩ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "පණිවිඩ ඉතිහාසය කියවන්න"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "හේතුව"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "ප්රතිසාධන කේතය"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "ලියාපදිංචි වන්න"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "මිතුරු ඉල්ලීම ප්රතික්ෂේප කරන්න"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "අදාළත්වය"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "ඔතන්ටිකේටරය ඉවත් කරන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "පැතිකඩ පින්තූර ඉවත් කරන්න"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "යහළුවා ඉවත් කරන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "පිළිතුර"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "පිළිතුරු දෙමින්"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "වාර්තාව"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "පණිවිඩය වාර්තා කිරීම"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "සේවාදායකය වාර්තා කරන්න"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "පරිශීලකයාව වාර්තා කරන්න"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "සත්යාපනය නැවත යවන්න"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "යළි සකසන්න"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "මුරපදය යළි සකසන්න"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "සංකේතය නැවත සකසන්න"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "භූමිකාවේ නම"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "භූමිකා"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "සුරකින්න"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "ඔබගේ සටහන් වෙත සුරකින්න"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "සුරැකි සටහන්"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "ඔබගේ භාෂාව තෝරන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Embeds යවන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "පණිවිඩ යවන්න"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "ඇමුණුමක් යැවිණි"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "ඇමුණුම් කිහිපයක් යැවිණි"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "සේවාදායකයේ සවිස්තරය"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "සේවාදායකයේ නම"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "වාර"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "සැකසුම්"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "කිහිප දෙනෙක් ලියමින්…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "ශබ්ද"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "ප්රභව කේතය"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "කතා කරන්න"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "විශේෂාංග යෝජනාව ඉදිරිපත් කරන්න"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "ප්රතිපෝෂණය යොමන්න"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "මෙම ව්යාපෘතියට පරිත්යාග කිරීමෙන් උදව් වන්න - ස්තූතියි!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "සේවාවේ නියම"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "පාඨ නාලිකාව"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "තේමාව"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "මෙය ඔබගේ සංවාදයේ ආරම්භය යි."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "මෙය ඔබගේ සටහන්වල ආරම්භයයි."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "ඔහු/ඇය ඔබව අවහිර කර ඇත."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "සාමාජිකයින් ව කල් ඉකුත් කරන්න"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "පරිශීලකයා අනවහිර"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "ගොනු උඩුගත"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "පරිශීලක"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "පුද්ඉගලයා ඇමතුමට එක්විය"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "පුද්ගලයා ඇමතුම හැරගියා"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "පරිශීලක කළමනාකරණය"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "පරිශීලක සැකසුම්"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "පරීශිලක නාමය"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "ගිණුම සත්යාපනය වෙමින්…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "වීඩියෝ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "නාලිකාව දකින්න"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "දැනට සක්රිය දෝෂ වාර්තා මෙතැනින් බලන්න."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "පැරණි යාවත්කාලීන බලන්න"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "ප්රතිසාධන කේත බලන්න"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "පරණ පණිවිඩ දකිමින්"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "කටහඬ නාලිකාව"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "අපි ඔබට සත්යාපන විද්යුත් තැපෑලක් එවා ඇත. කරුණාකර එය පැමිණීමට විනාඩි 10 ක් වත් ඉඩ දෙන්න."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "වෙබ්කොකු"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "සාදරයෙන් පිළිගනිමු"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "සාදරයෙන් පිළිගනිමු!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "ඔබට ඉහළ වම්පස ඇති පරිශීලක නිරූපකය දකුණු-ක්ලික් කළ හැකිය, නැතහොත් ඔබ දැනටමත් නිවසේ සිටී නම් එය වම් ක්ලික් කරන්න."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "ඔබට එය පසුව නැවත විවෘත කළ හැක, නමුත් එය දෙපැත්තෙන්ම අතුරුදහන් වනු ඇත."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "ඔබට ගැටළු වාර්තා කිරීමට සහ වැඩිදියුණු කිරීම් පිළිබඳව අප සමඟ සෘජුවම මෙහි සාකච්ඡා කළ හැකිය."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "ඔබට මෙම ක්රියාව පසුගමනය කළ නොහැක."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "ඔබට මෙම නාලිකාවේ පණිවිඩ යැවීමට අවසර නැත."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "ඔබ සහාය සම්බන්ධ කර ගන්නේ නම් මිස ඔබට ඔබේ ගිණුමට ප්රවේශ වීමට නොහැකි වනු ඇත - කෙසේ වෙතත්, ඔබේ දත්ත මකා නොදමනු ඇත."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "ඔබට ඇරයුමකින් තොරව නැවත එක්වීමට නොහැකිය."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "ගිණුම සත්යාපනය වී ඇත!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "ඔබගේ ප්රතිසාධන කේත"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/sk/messages.js b/components/i18n/catalogs/sk/messages.js
new file mode 100644
index 0000000..3b38e1b
--- /dev/null
+++ b/components/i18n/catalogs/sk/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Stlmený\"],\"+YFgJi\":[\"Odznaky\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označiť ako prečítané\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Vytvoriť novú rolu\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odhlás sa zo všetkých ostatných relácií\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vyberte používateľské meno, podľa ktorého vás chcú ľudia nájsť, toto je možné neskôr zmeniť v nastaveniach.\"],\"/qQDwm\":[\"Generuje sa pozvánka…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Nahlásiť správu\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Odoslať spätnú väzbu\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Skopírovať ID správy\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Opustit skupinu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Tu môžete nahlásiť problémy a diskutovať o vylepšeniach.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Zablokované\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nebudete sa môcť znova pripojiť, pokiaľ nebudete znova pozvaní.\"],\"3QuNUr\":[\"Niekoľko ľudí píše…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"S týmto používateľom sa už priatelíte.\"],\"3T8ziB\":[\"Vytvoriť učet\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Relácie\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Prezývka\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Vyberte svoj jazyk\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Nájdite komunitu na základe svojich koníčkov alebo záujmov.\"],\"572q5a\":[\"Nahlásiť používateľa\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označiť ako neprečítané\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Zmeňte Prezývku\"],\"5dJK4M\":[\"Roly\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Prehľad\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Používateľ\"],\"7SU2U9\":[\"Skopírovať ID servera\"],\"7VpPHA\":[\"Potvrdiť\"],\"7dZnmw\":[\"Relevantnosť\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Používateľske Meno\"],\"7vhWI8\":[\"Nové heslo\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Spravovať Server\"],\"8FE4JE\":[\"Povoliť aplikáciu autentifikátora\"],\"8VGnad\":[\"Generovať obnovovacie kódy\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Heslo\"],\"8aTiea\":[\"Prispôsobenie\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Zadaj tvoje používateľské meno.\"],\"9D85wC\":[\"Skopírovať ID používateľa\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Povolenia\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Zobrazenie starších správ\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokovať používateľa\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Vytvoriť skupinu\"],\"A9Rhec\":[\"Meno Kanála\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Zadaj nové heslo.\"],\"AU7IRi\":[\"Textový Kanál\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Hlasový Kanál\"],\"BHsrDx\":[\"Pozvánky\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Správa bola odoslaná na inej platforme\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Zobraziť Kanál\"],\"CK7kdd\":[\"Vymazať status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Popis Kanála\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Posielať Správy\"],\"CkIs/i\":[\"Umlčať Členov\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuálne Heslo\"],\"DDpDsO\":[\"Kód Pozvánky\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiálna komunikácia\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hotovo\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Správa nie je načítaná, kliknutím na ňu preskočíte\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Odošlite návrh Funkcie\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Vyhodiť\"],\"EdQY6l\":[\"Žiadny\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konverzácie\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Odoslal prílohu\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Vytvoriť Kategóriu\"],\"F1uGNS\":[\"Spravovať Prezývky\"],\"FEr96N\":[\"Motív\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Odstrániť Avatary\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Povoliť Oznámenia na Ploche\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Sústredenie\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Skopírovať ID kanála\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Vzájomné Skupiny\"],\"GhCPk1\":[\"Akonáhle je vymazaný, nie je cesty späť.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Zadaj tvoje súčasné heslo.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vyberte spôsob overenia vašej žiadosti.\"],\"HAKBY9\":[\"Nahrať súbory\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Uložené poznámky\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Znova odoslať overenie\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Presunúť Členov\"],\"ImOQa9\":[\"Odpovedať\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Odoslal viacero príloh\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potvrďiť akciu\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Zobraziť staršie aktualizácie\"],\"JUJmXm\":[\"Potvrďte prosím zvolenou metódou.\"],\"JW8mxK\":[\"Uložiť do poznámok\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Vitajte v\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Taktiež môžete kliknúť pravým tlačidlom myši na ikonu používateľa vľavo hore, alebo kliknúť ľavým tlačidlom ak už ste na domovskej stránke.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Odstrániť správu\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Obsah porušuje jeden alebo viacero zákonov\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Zvuky\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiálny server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Odstrániť Priateľa\"],\"LcET2C\":[\"Zásady ochrany osobných údajov\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Odoslali sme ti overovací e-mail. Počkajte, prosím, do 10 minút, kým príde.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Meno Servera\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Odísť\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Aktuálne aktívne hlásenia chýb nájdete tu.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Poskytnite nám spätnú väzbu a dajte nám vedieť, ako môžeme zlepšiť našu aplikáciu.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Tvoj účet bol overený!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Na odosielanie správ v tomto kanáli nemáte povolenie.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Meno Role\"],\"PWOA0E\":[\"Iba Zmienky\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Odoslať Vložené Položky (Embed)\"],\"PnzsrT\":[\"Zdrojový Kód\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Skočiť do dneška\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nečinný\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Upraviť správu\"],\"QqoBlW\":[\"Skontrolujte si email!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Obnoviť heslo\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Sledovanie Chýb\"],\"S3bIKF\":[\"Kopírovať ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Naskenujte alebo použite token nižšie vo svojej overovacej aplikácii.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Odstrániť Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Správa Správ\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Spravovať Roly\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nastavenia\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pozvite všetkých svojich priateľov, pár cool robotov a usporiadajte veľkú párty.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Zmeniť Avatara\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Správa Odoslaná\"],\"VJScHU\":[\"Dôvod\"],\"VKsaTi\":[\"Odpovedám\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ohlušiť členov\"],\"VsHxv+\":[\"Kopírovať Text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Overuje sa váš účet…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externé odkazy môžu byť nebezpečné!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Nastavenie Klienta\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Overovacia aplikácia\"],\"YcVBkL\":[\"Správa Prijatá\"],\"YirHq7\":[\"Spätná väzba\"],\"YlFpiA\":[\"Nepodarilo sa overiť!\"],\"Yp+Hi/\":[\"Otvoriť nastavenia\"],\"Z5HWHd\":[\"Zapnuté\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaše kódy na obnovenie\"],\"aAIQg2\":[\"Vzhľad\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Túto akciu nemôžete vrátiť späť.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Vypnuté\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktivovať Účet\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Prečítajte si Históriu Správ\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Zabanovať Člena\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Spravovať Povolenia\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pozývateľ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Vymazať\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Zrušiť\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Vytvorte nového robota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pozvať Ostatných\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Neviditeľný\"],\"ekfzWq\":[\"Užívateľské nastavenia\"],\"etgedT\":[\"Emotikony\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Spravovanie prispôsobenia\"],\"fTMMeD\":[\"Vytvoriť pozvánku\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Zaregistrovať\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Zrušiť požiadavku\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Priradiť roly\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Nahlásiť\"],\"gkBHk/\":[\"Vytvoriť kanál\"],\"gkmjYT\":[\"Opustiť server\"],\"go1IWB\":[\"Tento používateľ vás zablokoval.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Odstrániť Kanál\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Prosím zadaj tvoj e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Vytvoriť\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Domov\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Oznámenia\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Pripojiť\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Zmienka\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Späť na prihlásenie\"],\"jpJ5AL\":[\"Obnovovací kód\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Vitaj!\"],\"knjY+b\":[\"Môžete ho znova otvoriť neskôr, ale zmizne na oboch stranách.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Pridať Priateľa\"],\"lSGjX7\":[\"Používateľ sa pripojil do Hovoru\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanály\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Meno Skupiny\"],\"mAYvqA\":[\"Ahoj!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Vlastný status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Spoloční Priatelia\"],\"nbzz1A\":[\"Zadajte kód\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Toto je začiatok tvojich poznámok.\"],\"o+XJ9D\":[\"Zmeniť\"],\"oB4OOq\":[\"Zabanovať Členov\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Vyhodiť členov\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Predvolené\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Odhlásiť sa\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Skočiť na začiatok\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Používateľ odišiel z Hovoru\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Môj Účet\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Všetky Správy\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 osoba reagovala\"],\"rxaY+5\":[\"Nevyrušovať\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Nahlásiť server\"],\"tBmnPU\":[\"Priatelia\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Spravujte Webhooky\"],\"tdTuUv\":[\"Zablokovať používateľa\"],\"tfDRzk\":[\"Uložiť\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Zablokovaný Používateľ\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Prejsť na server testerov\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Vyhodiť Člena\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Vymazať Rolu\"],\"utrCh2\":[\"Umlčať Členov\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O Revolte\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Popis Servera\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podporte projekt príspevkom - ďakujeme!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Upraviť identitu\"],\"vXIe7J\":[\"Jazyk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Uložte si ich na bezpečné miesto.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Zadajte kanál\"],\"wL3cK8\":[\"Najnovšie\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Členovia\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maškaráda\"],\"xDAtGP\":[\"Správa\"],\"xGVfLh\":[\"Pokračovať\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bany\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Podmienky Služby\"],\"xpgPPI\":[\"Moji Boti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Skopírovať Odkaz\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potvrdzujem, že mám aspoň 18 rokov.\"],\"yDOdwQ\":[\"Správa Užívateľov\"],\"yIBLq8\":[\"Hovoriť\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zatvoriť\"],\"z0hW8A\":[\"Zobraziť Kódy pre Obnovenie\"],\"z0t9bb\":[\"Prihlásiť sa\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Toto je začiatok vašej konverzácie.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstaršie\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/sk/messages.mjs b/components/i18n/catalogs/sk/messages.mjs
new file mode 100644
index 0000000..09af694
--- /dev/null
+++ b/components/i18n/catalogs/sk/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Stlmený\"],\"+YFgJi\":[\"Odznaky\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označiť ako prečítané\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Vytvoriť novú rolu\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odhlás sa zo všetkých ostatných relácií\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Vyberte používateľské meno, podľa ktorého vás chcú ľudia nájsť, toto je možné neskôr zmeniť v nastaveniach.\"],\"/qQDwm\":[\"Generuje sa pozvánka…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Nahlásiť správu\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Odoslať spätnú väzbu\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Skopírovať ID správy\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Opustit skupinu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Tu môžete nahlásiť problémy a diskutovať o vylepšeniach.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Zablokované\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nebudete sa môcť znova pripojiť, pokiaľ nebudete znova pozvaní.\"],\"3QuNUr\":[\"Niekoľko ľudí píše…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"S týmto používateľom sa už priatelíte.\"],\"3T8ziB\":[\"Vytvoriť učet\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Relácie\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Prezývka\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Vyberte svoj jazyk\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Nájdite komunitu na základe svojich koníčkov alebo záujmov.\"],\"572q5a\":[\"Nahlásiť používateľa\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označiť ako neprečítané\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Zmeňte Prezývku\"],\"5dJK4M\":[\"Roly\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Prehľad\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Používateľ\"],\"7SU2U9\":[\"Skopírovať ID servera\"],\"7VpPHA\":[\"Potvrdiť\"],\"7dZnmw\":[\"Relevantnosť\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Používateľske Meno\"],\"7vhWI8\":[\"Nové heslo\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Spravovať Server\"],\"8FE4JE\":[\"Povoliť aplikáciu autentifikátora\"],\"8VGnad\":[\"Generovať obnovovacie kódy\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Heslo\"],\"8aTiea\":[\"Prispôsobenie\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Zadaj tvoje používateľské meno.\"],\"9D85wC\":[\"Skopírovať ID používateľa\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Povolenia\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Zobrazenie starších správ\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokovať používateľa\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Vytvoriť skupinu\"],\"A9Rhec\":[\"Meno Kanála\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Zadaj nové heslo.\"],\"AU7IRi\":[\"Textový Kanál\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Hlasový Kanál\"],\"BHsrDx\":[\"Pozvánky\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Správa bola odoslaná na inej platforme\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Zobraziť Kanál\"],\"CK7kdd\":[\"Vymazať status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Popis Kanála\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Posielať Správy\"],\"CkIs/i\":[\"Umlčať Členov\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Aktuálne Heslo\"],\"DDpDsO\":[\"Kód Pozvánky\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Oficiálna komunikácia\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Hotovo\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Správa nie je načítaná, kliknutím na ňu preskočíte\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Odošlite návrh Funkcie\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Vyhodiť\"],\"EdQY6l\":[\"Žiadny\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konverzácie\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Odoslal prílohu\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Vytvoriť Kategóriu\"],\"F1uGNS\":[\"Spravovať Prezývky\"],\"FEr96N\":[\"Motív\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Odstrániť Avatary\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Povoliť Oznámenia na Ploche\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Sústredenie\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Skopírovať ID kanála\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Vzájomné Skupiny\"],\"GhCPk1\":[\"Akonáhle je vymazaný, nie je cesty späť.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Zadaj tvoje súčasné heslo.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Vyberte spôsob overenia vašej žiadosti.\"],\"HAKBY9\":[\"Nahrať súbory\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Uložené poznámky\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Znova odoslať overenie\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Presunúť Členov\"],\"ImOQa9\":[\"Odpovedať\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Odoslal viacero príloh\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potvrďiť akciu\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Zobraziť staršie aktualizácie\"],\"JUJmXm\":[\"Potvrďte prosím zvolenou metódou.\"],\"JW8mxK\":[\"Uložiť do poznámok\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Vitajte v\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Taktiež môžete kliknúť pravým tlačidlom myši na ikonu používateľa vľavo hore, alebo kliknúť ľavým tlačidlom ak už ste na domovskej stránke.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Odstrániť správu\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Obsah porušuje jeden alebo viacero zákonov\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Zvuky\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Oficiálny server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Odstrániť Priateľa\"],\"LcET2C\":[\"Zásady ochrany osobných údajov\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Odoslali sme ti overovací e-mail. Počkajte, prosím, do 10 minút, kým príde.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Meno Servera\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Odísť\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Aktuálne aktívne hlásenia chýb nájdete tu.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Poskytnite nám spätnú väzbu a dajte nám vedieť, ako môžeme zlepšiť našu aplikáciu.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Tvoj účet bol overený!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Email\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Na odosielanie správ v tomto kanáli nemáte povolenie.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Meno Role\"],\"PWOA0E\":[\"Iba Zmienky\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Odoslať Vložené Položky (Embed)\"],\"PnzsrT\":[\"Zdrojový Kód\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Skočiť do dneška\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Nečinný\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Upraviť správu\"],\"QqoBlW\":[\"Skontrolujte si email!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Obnoviť heslo\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Sledovanie Chýb\"],\"S3bIKF\":[\"Kopírovať ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Naskenujte alebo použite token nižšie vo svojej overovacej aplikácii.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Odstrániť Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Správa Správ\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Spravovať Roly\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nastavenia\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Pozvite všetkých svojich priateľov, pár cool robotov a usporiadajte veľkú párty.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Zmeniť Avatara\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Správa Odoslaná\"],\"VJScHU\":[\"Dôvod\"],\"VKsaTi\":[\"Odpovedám\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Ohlušiť členov\"],\"VsHxv+\":[\"Kopírovať Text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Overuje sa váš účet…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externé odkazy môžu byť nebezpečné!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Nastavenie Klienta\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Overovacia aplikácia\"],\"YcVBkL\":[\"Správa Prijatá\"],\"YirHq7\":[\"Spätná väzba\"],\"YlFpiA\":[\"Nepodarilo sa overiť!\"],\"Yp+Hi/\":[\"Otvoriť nastavenia\"],\"Z5HWHd\":[\"Zapnuté\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaše kódy na obnovenie\"],\"aAIQg2\":[\"Vzhľad\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Túto akciu nemôžete vrátiť späť.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Vypnuté\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Deaktivovať Účet\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Prečítajte si Históriu Správ\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Zabanovať Člena\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Spravovať Povolenia\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Pozývateľ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Vymazať\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Zrušiť\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Vytvorte nového robota\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Pozvať Ostatných\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Neviditeľný\"],\"ekfzWq\":[\"Užívateľské nastavenia\"],\"etgedT\":[\"Emotikony\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Spravovanie prispôsobenia\"],\"fTMMeD\":[\"Vytvoriť pozvánku\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Zaregistrovať\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Zrušiť požiadavku\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Priradiť roly\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Nahlásiť\"],\"gkBHk/\":[\"Vytvoriť kanál\"],\"gkmjYT\":[\"Opustiť server\"],\"go1IWB\":[\"Tento používateľ vás zablokoval.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Odstrániť Kanál\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Prosím zadaj tvoj e-mail.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Vytvoriť\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Domov\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Oznámenia\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Pripojiť\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Zmienka\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Bot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Späť na prihlásenie\"],\"jpJ5AL\":[\"Obnovovací kód\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Vitaj!\"],\"knjY+b\":[\"Môžete ho znova otvoriť neskôr, ale zmizne na oboch stranách.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Pridať Priateľa\"],\"lSGjX7\":[\"Používateľ sa pripojil do Hovoru\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanály\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Meno Skupiny\"],\"mAYvqA\":[\"Ahoj!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Vlastný status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Spoloční Priatelia\"],\"nbzz1A\":[\"Zadajte kód\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Toto je začiatok tvojich poznámok.\"],\"o+XJ9D\":[\"Zmeniť\"],\"oB4OOq\":[\"Zabanovať Členov\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Vyhodiť členov\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Predvolené\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Odhlásiť sa\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Skočiť na začiatok\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Používateľ odišiel z Hovoru\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Môj Účet\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Všetky Správy\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 osoba reagovala\"],\"rxaY+5\":[\"Nevyrušovať\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Nahlásiť server\"],\"tBmnPU\":[\"Priatelia\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Spravujte Webhooky\"],\"tdTuUv\":[\"Zablokovať používateľa\"],\"tfDRzk\":[\"Uložiť\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Zablokovaný Používateľ\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Prejsť na server testerov\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Vyhodiť Člena\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Vymazať Rolu\"],\"utrCh2\":[\"Umlčať Členov\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O Revolte\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Popis Servera\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podporte projekt príspevkom - ďakujeme!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Upraviť identitu\"],\"vXIe7J\":[\"Jazyk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Uložte si ich na bezpečné miesto.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Zadajte kanál\"],\"wL3cK8\":[\"Najnovšie\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Členovia\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maškaráda\"],\"xDAtGP\":[\"Správa\"],\"xGVfLh\":[\"Pokračovať\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bany\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Podmienky Služby\"],\"xpgPPI\":[\"Moji Boti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Skopírovať Odkaz\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potvrdzujem, že mám aspoň 18 rokov.\"],\"yDOdwQ\":[\"Správa Užívateľov\"],\"yIBLq8\":[\"Hovoriť\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zatvoriť\"],\"z0hW8A\":[\"Zobraziť Kódy pre Obnovenie\"],\"z0t9bb\":[\"Prihlásiť sa\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Toto je začiatok vašej konverzácie.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstaršie\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/sk/messages.po b/components/i18n/catalogs/sk/messages.po
new file mode 100644
index 0000000..abd5877
--- /dev/null
+++ b/components/i18n/catalogs/sk/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: sk\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 osoba reagovala"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "O Revolte"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Pridať Priateľa"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Všetky Správy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "S týmto používateľom sa už priatelíte."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Vzhľad"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Priradiť roly"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Overovacia aplikácia"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Odznaky"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Zabanovať Člena"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Zabanovať Členov"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bany"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Zablokovať používateľa"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Zablokované"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Zablokovaný Používateľ"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Bot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Sledovanie Chýb"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Zrušiť"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Zrušiť požiadavku"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Zmeniť"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Zmeniť Avatara"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Zmeňte Prezývku"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Popis Kanála"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Meno Kanála"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanály"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Skontrolujte si email!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Vymazať status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Nastavenie Klienta"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Zatvoriť"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Potvrdiť"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Potvrďiť akciu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Pripojiť"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Obsah porušuje jeden alebo viacero zákonov"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Pokračovať"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Konverzácie"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Skopírovať ID kanála"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopírovať ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Skopírovať Odkaz"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Skopírovať ID správy"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Skopírovať ID servera"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopírovať Text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Skopírovať ID používateľa"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Vytvoriť"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Vytvoriť skupinu"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Vytvorte nového robota"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Vytvoriť novú rolu"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Vytvoriť učet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Vytvoriť Kategóriu"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Vytvoriť kanál"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Vytvoriť pozvánku"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Aktuálne Heslo"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Vlastný status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Prispôsobenie"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Ohlušiť členov"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Predvolené"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Vymazať"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Odstrániť Kanál"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Odstrániť správu"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Vymazať Rolu"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Deaktivovať Účet"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Nevyrušovať"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Hotovo"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Upraviť identitu"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Upraviť správu"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Email"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emotikony"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Povoliť aplikáciu autentifikátora"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Povoliť Oznámenia na Ploche"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Zadaj nové heslo."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Zadajte kanál"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Zadajte kód"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Zadaj tvoje súčasné heslo."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Zadaj tvoje používateľské meno."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Externé odkazy môžu byť nebezpečné!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Nepodarilo sa overiť!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Spätná väzba"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Nájdite komunitu na základe svojich koníčkov alebo záujmov."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Sústredenie"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Priatelia"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generovať obnovovacie kódy"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generuje sa pozvánka…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Späť na prihlásenie"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Prejsť na server testerov"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Meno Skupiny"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Ahoj!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Domov"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Potvrdzujem, že mám aspoň 18 rokov."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Nečinný"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Neviditeľný"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Pozvite všetkých svojich priateľov, pár cool robotov a usporiadajte veľkú párty."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Kód Pozvánky"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Pozvať Ostatných"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Pozývateľ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Pozvánky"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Skočiť do dneška"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Skočiť na začiatok"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Vyhodiť"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Vyhodiť Člena"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Vyhodiť členov"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Jazyk"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Najnovšie"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Odísť"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Opustit skupinu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Opustiť server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Poskytnite nám spätnú väzbu a dajte nám vedieť, ako môžeme zlepšiť našu aplikáciu."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Odhlásiť sa"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Odhlás sa zo všetkých ostatných relácií"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Prihlásiť sa"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Spravovanie prispôsobenia"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Správa Správ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Spravovať Prezývky"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Spravovať Povolenia"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Spravovať Roly"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Spravovať Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Spravujte Webhooky"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Označiť ako prečítané"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Označiť ako neprečítané"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maškaráda"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Členovia"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Zmienka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Iba Zmienky"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Správa"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Správa nie je načítaná, kliknutím na ňu preskočíte"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Správa Prijatá"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Správa Odoslaná"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Správa bola odoslaná na inej platforme"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Presunúť Členov"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Umlčať Členov"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Stlmený"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Spoloční Priatelia"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Vzájomné Skupiny"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Môj Účet"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Moji Boti"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nové heslo"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Prezývka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Žiadny"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Oznámenia"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Vypnuté"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Oficiálna komunikácia"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Oficiálny server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ok"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Najstaršie"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Zapnuté"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Akonáhle je vymazaný, nie je cesty späť."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Otvoriť nastavenia"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Prehľad"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Heslo"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Povolenia"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Vyberte používateľské meno, podľa ktorého vás chcú ľudia nájsť, toto je možné neskôr zmeniť v nastaveniach."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Potvrďte prosím zvolenou metódou."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Prosím zadaj tvoj e-mail."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Uložte si ich na bezpečné miesto."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Naskenujte alebo použite token nižšie vo svojej overovacej aplikácii."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Vyberte spôsob overenia vašej žiadosti."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Zásady ochrany osobných údajov"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Prečítajte si Históriu Správ"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Dôvod"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Obnovovací kód"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Zaregistrovať"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevantnosť"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Odstrániť Authenticator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Odstrániť Avatary"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Odstrániť Priateľa"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Odpovedať"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Odpovedám"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Nahlásiť"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Nahlásiť správu"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Nahlásiť server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Nahlásiť používateľa"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Znova odoslať overenie"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Reset"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Obnoviť heslo"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Meno Role"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roly"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Uložiť"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Uložiť do poznámok"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Uložené poznámky"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Vyberte svoj jazyk"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Odoslať Vložené Položky (Embed)"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Posielať Správy"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Odoslal prílohu"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Odoslal viacero príloh"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Popis Servera"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Meno Servera"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Relácie"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Nastavenia"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Niekoľko ľudí píše…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Zvuky"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Zdrojový Kód"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Hovoriť"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Odošlite návrh Funkcie"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Odoslať spätnú väzbu"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Podporte projekt príspevkom - ďakujeme!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Podmienky Služby"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Textový Kanál"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Motív"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Toto je začiatok vašej konverzácie."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Toto je začiatok tvojich poznámok."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Tento používateľ vás zablokoval."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Umlčať Členov"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Odblokovať používateľa"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Nahrať súbory"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Používateľ"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Používateľ sa pripojil do Hovoru"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Používateľ odišiel z Hovoru"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Správa Užívateľov"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Užívateľské nastavenia"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Používateľske Meno"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Overuje sa váš účet…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Zobraziť Kanál"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Aktuálne aktívne hlásenia chýb nájdete tu."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Zobraziť staršie aktualizácie"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Zobraziť Kódy pre Obnovenie"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Zobrazenie starších správ"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Hlasový Kanál"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Odoslali sme ti overovací e-mail. Počkajte, prosím, do 10 minút, kým príde."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Webhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Vitajte v"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Vitaj!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Taktiež môžete kliknúť pravým tlačidlom myši na ikonu používateľa vľavo hore, alebo kliknúť ľavým tlačidlom ak už ste na domovskej stránke."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Môžete ho znova otvoriť neskôr, ale zmizne na oboch stranách."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Tu môžete nahlásiť problémy a diskutovať o vylepšeniach."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Túto akciu nemôžete vrátiť späť."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Na odosielanie správ v tomto kanáli nemáte povolenie."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nebudete sa môcť znova pripojiť, pokiaľ nebudete znova pozvaní."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Tvoj účet bol overený!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Vaše kódy na obnovenie"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/sl/messages.js b/components/i18n/catalogs/sl/messages.js
new file mode 100644
index 0000000..f6b9dfb
--- /dev/null
+++ b/components/i18n/catalogs/sl/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Utišan\"],\"+YFgJi\":[\"Značke\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označi kot prebrano\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Ustvari novo vlogo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odjavite se z vseh drugih sej\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Izberite uporabniško ime, po katerem želite da vas ljudje najdejo. To lahko spremenite kasneje v vaših nastavitvah računa.\"],\"/qQDwm\":[\"Generiranje kode za povabitev…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Prijavi sporočilo\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Pošlji povratne informacije\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiraj ID sporočila\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Zapusti skupino\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Težave lahko prijavite in tukaj z nami razpravljate o njihovih izboljšavah.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokirani\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ne boste imeli možnosti se ponovno pridružiti, razen če vas nekdo ponovno povabi.\"],\"3QuNUr\":[\"Več ljudi so tipkanje…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"S tem uporabnikom ste že prijatelja.\"],\"3T8ziB\":[\"Ustvari račun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seje\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Vzdevek\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Izberite svoj jezik\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Poiščite skupnost na podlagi vaših hobijev in/ali interesov.\"],\"572q5a\":[\"Prijavi uporabnika\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označi kot neprebrano\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Spreminjanje Vzdevka\"],\"5dJK4M\":[\"Vloge\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Pregled\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Brez povezave\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Uporabnik\"],\"7SU2U9\":[\"Kopiraj strežnikov ID\"],\"7VpPHA\":[\"Potrdi\"],\"7dZnmw\":[\"Ustreznost\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Uporabniško ime\"],\"7vhWI8\":[\"Novo Geslo\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Upravljanje strežnika\"],\"8FE4JE\":[\"Omogoči avtentikacijsko aplikacijo\"],\"8VGnad\":[\"Generirajte Obnovitvene Kode\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Geslo\"],\"8aTiea\":[\"Prilagajanje\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Vnesi svoje želeno uporabniško ime.\"],\"9D85wC\":[\"Kopiraj uporabniški ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Žeton za ponastavitev\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Dovoljenja\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Ogled starejših sporočil\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokiraj uporabnika\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Ustvarite skupino\"],\"A9Rhec\":[\"Ime Kanala\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Vnesite novo geslo.\"],\"AU7IRi\":[\"Besedilni kanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Glasovni kanal\"],\"BHsrDx\":[\"Povabila\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Sporočilo je bilo poslano na drugi platformi\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ogled Kanala\"],\"CK7kdd\":[\"Odstrani status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Opis Kanala\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Pošiljanje Sporočil\"],\"CkIs/i\":[\"Izključevanje Mikorfona Članov\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Trenutni geslo\"],\"DDpDsO\":[\"Povabilna Koda\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Uradna Komunikacija\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Končano\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Sporočilo ni bilo naloženo, kliknite da skočite do njega\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Predložite predlog funkcije\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Odstrani\"],\"EdQY6l\":[\"Nobena\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Pogovori\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Poslali prilogo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Ustvari kategorijo\"],\"F1uGNS\":[\"Upravljanje Vzdevkev\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Odstranjevanje Avatarjev\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Omogoči Namizna Obvestila\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiraj ID kanala\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Sorodne Skupine\"],\"GhCPk1\":[\"Ko ga enkrat izbrišete bo šel za vedno.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Vnesite svoje trenutno geslo.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Prosimo vas, da izberete metodo za avtentikacijo vaše prošnje.\"],\"HAKBY9\":[\"Nalaganje Datotek\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Shranjeni zapiski\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ponovno pošlji verifikacijo\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Premikanje Članov\"],\"ImOQa9\":[\"Odgovori\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Poslano več priključki\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Računa ni mogoče izbrisati, dokler strežniki niso izbrisani ali predani\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potrdi akcijo\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Poglej starejše posodobitve\"],\"JUJmXm\":[\"Prosimo vas, da potrdite to akcijo z izbrano metodo.\"],\"JW8mxK\":[\"Shranite v zapiske\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Dobrotošli v\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Lahko tudi kliknete z desnim klikom na uporabniško ikono v zgornjem levem kotu, ali pa jo kliknite z levim klikom če ste že na domu.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Izbriši sporočilo\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Vsebina prekrši en ali več zakonov\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sliši se\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Uradni Strežnik\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Odstrani prijatelja\"],\"LcET2C\":[\"Politika zasebnosti\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Poslali smo vam epoštno sporočilo za verifikacijo. Prosimo vas, da počakate do 10 minut da prispe.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Ime Strežnika\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Zapusti\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Poglejte trenutno aktivne prijave hroščev tukaj.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Povejte nam kako lahko izboljšamo našo aplikacijo tako, da nam pošljete povratne informacije.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Vač račun je bil verificiran!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E -pošta\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nimate dovoljenja za pošiljanje sporočil v tem kanalu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Ponastavi\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Zavrnite prijateljsko prošnjo\"],\"PSP1MZ\":[\"Ime Vloge\"],\"PWOA0E\":[\"omenja le\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Pošiljanje Emebed-ov\"],\"PnzsrT\":[\"Izvorna koda\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Skoči na predstavitev\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"V prostem teku\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Uredi sporočilo\"],\"QqoBlW\":[\"Preverite svojo pošto!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ponastavi geslo\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Sledilec Hroščev\"],\"S3bIKF\":[\"Kopiraj ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Prosimo vas da poskenirate ali uporabite žeton napisan spodaj v vaši avtentikacijski aplikaciji.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Odstrani Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Upravljanje Sporočil\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Upravljanje vlog\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nastavitve\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Povabite svoje prijatelje, nekaj kul robotov in priredite veliko zabavo.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Sprememba Avatarja\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Sporočilo poslano\"],\"VJScHU\":[\"Razlog\"],\"VKsaTi\":[\"Odgovarjate\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Utišanje Članov\"],\"VsHxv+\":[\"Kopiraj tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificiranje vašega računa…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Zunanje povezava so lahko nevarne!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Nastavitve odjemalca\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacija Authenticator\"],\"YcVBkL\":[\"Sporočilo je prejeto\"],\"YirHq7\":[\"Povratne informacije\"],\"YlFpiA\":[\"Verifikacija je bila neuspešna!\"],\"Yp+Hi/\":[\"Odpri nastavitve\"],\"Z5HWHd\":[\"Vklopljeno\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaše obnovitvene kode\"],\"aAIQg2\":[\"Videz\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Te akcije ne možno razveljavti.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Izklopljeno\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Onemogoči račun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Branje Zgodovine Sporočil\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban-aj člana\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Urejaj Dovoljenja\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Ustvarjalec Povabila\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Izbriši\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Razveljavi\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Ustvarite nov robot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Povabljanje Drugih\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nevidno\"],\"ekfzWq\":[\"Uporabniške nastavitve\"],\"etgedT\":[\"Emojiji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Urejaj Prilagoditve\"],\"fTMMeD\":[\"Ustvari povabilo\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrirajte se\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Prekliči prošnjo\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Dodeljevanje Vlog\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Prijavi\"],\"gkBHk/\":[\"Ustvari kanal\"],\"gkmjYT\":[\"Zapusti strežnik\"],\"go1IWB\":[\"Ta uporabnik vas je blokiral.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Izbriši kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Vpišite svoj elektronski naslov.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Ustvari\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Domov\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Povezovanje\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Omeni\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Vrnite se na prijavo\"],\"jpJ5AL\":[\"Koda za izterjavo\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Dobrodošli nazaj!\"],\"knjY+b\":[\"Lahko ga ponovno odprete kasneje, vendar bo izginil na obeh straneh.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dodaj prijatelja\"],\"lSGjX7\":[\"Uporabnik Pridružil Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanali\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ime skupine\"],\"mAYvqA\":[\"Pozdravljeni!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Uredite svojo identiteto\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Ne boste zmožni dostopati do svojega računa, razen če kontaktirate našo uporabnikovo podporo - toda brez skrbi, vaši podatki ne bodo izbrisani.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Prilagodi status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Sorodni Prijatelji\"],\"nbzz1A\":[\"Vpišite Kodo\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"To je začetek vaših zapiskov.\"],\"o+XJ9D\":[\"Spremenite\"],\"oB4OOq\":[\"Ban-anje Članon\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Na spletu\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Odstranjevanje Članov\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Privzeto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Izpis\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Skoči na začetek\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Levi klic uporabnika\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Moj račun\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Vsa sporočila\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 oseba je reagirala\"],\"rxaY+5\":[\"Ne moti\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Napredno\"],\"t43mBk\":[\"Prijavi strežnik\"],\"tBmnPU\":[\"Prijatelji\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Urejanje Spletnih Trnkov\"],\"tdTuUv\":[\"Blokiraj uporabnika\"],\"tfDRzk\":[\"Shrani\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokirani uporabnik\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pojdite v strežnik preizkuševalcev\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Odstrani člana\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Izbriši Vlogo\"],\"utrCh2\":[\"Pavziraj Člane\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O Projektu\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Opis strežnika\"],\"v1kQyJ\":[\"Spletni trnki\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podprite projekt z donacijo - hvala!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Uredi identiteto\"],\"vXIe7J\":[\"Jezik\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Prosimo vas, da jih shranite na varno lokacijo.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Vnesite kanal\"],\"wL3cK8\":[\"Najnovejše\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Člani\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maškarada\"],\"xDAtGP\":[\"Sporoči\"],\"xGVfLh\":[\"Nadaljuj\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bani\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Pogoji storitve\"],\"xpgPPI\":[\"Moji roboti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Sprejmite prijateljsko prošnjo\"],\"y1eoq1\":[\"Kopiraj povezavo\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potrjujem, da sem star najmanj 18 let.\"],\"yDOdwQ\":[\"Upravljanje Uporabnikov\"],\"yIBLq8\":[\"Govorjenje\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zapri\"],\"z0hW8A\":[\"Poglejte Kode za Obnovitev\"],\"z0t9bb\":[\"Prijava\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"To je začetek vašega pogovora.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstarejši\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/sl/messages.mjs b/components/i18n/catalogs/sl/messages.mjs
new file mode 100644
index 0000000..5617c66
--- /dev/null
+++ b/components/i18n/catalogs/sl/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Utišan\"],\"+YFgJi\":[\"Značke\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Označi kot prebrano\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Ustvari novo vlogo\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Odjavite se z vseh drugih sej\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Izberite uporabniško ime, po katerem želite da vas ljudje najdejo. To lahko spremenite kasneje v vaših nastavitvah računa.\"],\"/qQDwm\":[\"Generiranje kode za povabitev…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Prijavi sporočilo\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Pošlji povratne informacije\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiraj ID sporočila\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Zapusti skupino\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Težave lahko prijavite in tukaj z nami razpravljate o njihovih izboljšavah.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blokirani\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Ne boste imeli možnosti se ponovno pridružiti, razen če vas nekdo ponovno povabi.\"],\"3QuNUr\":[\"Več ljudi so tipkanje…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"S tem uporabnikom ste že prijatelja.\"],\"3T8ziB\":[\"Ustvari račun\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seje\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Vzdevek\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Izberite svoj jezik\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Poiščite skupnost na podlagi vaših hobijev in/ali interesov.\"],\"572q5a\":[\"Prijavi uporabnika\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Označi kot neprebrano\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Spreminjanje Vzdevka\"],\"5dJK4M\":[\"Vloge\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Pregled\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Brez povezave\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Uporabnik\"],\"7SU2U9\":[\"Kopiraj strežnikov ID\"],\"7VpPHA\":[\"Potrdi\"],\"7dZnmw\":[\"Ustreznost\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Uporabniško ime\"],\"7vhWI8\":[\"Novo Geslo\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Upravljanje strežnika\"],\"8FE4JE\":[\"Omogoči avtentikacijsko aplikacijo\"],\"8VGnad\":[\"Generirajte Obnovitvene Kode\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Geslo\"],\"8aTiea\":[\"Prilagajanje\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Vnesi svoje želeno uporabniško ime.\"],\"9D85wC\":[\"Kopiraj uporabniški ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Žeton za ponastavitev\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Dovoljenja\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"Ogled starejših sporočil\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Odblokiraj uporabnika\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Ustvarite skupino\"],\"A9Rhec\":[\"Ime Kanala\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Vnesite novo geslo.\"],\"AU7IRi\":[\"Besedilni kanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Glasovni kanal\"],\"BHsrDx\":[\"Povabila\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Sporočilo je bilo poslano na drugi platformi\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Ogled Kanala\"],\"CK7kdd\":[\"Odstrani status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Opis Kanala\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Pošiljanje Sporočil\"],\"CkIs/i\":[\"Izključevanje Mikorfona Članov\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Trenutni geslo\"],\"DDpDsO\":[\"Povabilna Koda\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Uradna Komunikacija\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Končano\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Sporočilo ni bilo naloženo, kliknite da skočite do njega\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Predložite predlog funkcije\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Odstrani\"],\"EdQY6l\":[\"Nobena\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Pogovori\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Poslali prilogo\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Ustvari kategorijo\"],\"F1uGNS\":[\"Upravljanje Vzdevkev\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Odstranjevanje Avatarjev\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Omogoči Namizna Obvestila\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiraj ID kanala\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Sorodne Skupine\"],\"GhCPk1\":[\"Ko ga enkrat izbrišete bo šel za vedno.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Vnesite svoje trenutno geslo.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Prosimo vas, da izberete metodo za avtentikacijo vaše prošnje.\"],\"HAKBY9\":[\"Nalaganje Datotek\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Shranjeni zapiski\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ponovno pošlji verifikacijo\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Premikanje Članov\"],\"ImOQa9\":[\"Odgovori\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Poslano več priključki\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Računa ni mogoče izbrisati, dokler strežniki niso izbrisani ali predani\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Potrdi akcijo\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Poglej starejše posodobitve\"],\"JUJmXm\":[\"Prosimo vas, da potrdite to akcijo z izbrano metodo.\"],\"JW8mxK\":[\"Shranite v zapiske\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Dobrotošli v\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Lahko tudi kliknete z desnim klikom na uporabniško ikono v zgornjem levem kotu, ali pa jo kliknite z levim klikom če ste že na domu.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Izbriši sporočilo\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Vsebina prekrši en ali več zakonov\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Sliši se\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Uradni Strežnik\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Odstrani prijatelja\"],\"LcET2C\":[\"Politika zasebnosti\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Poslali smo vam epoštno sporočilo za verifikacijo. Prosimo vas, da počakate do 10 minut da prispe.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Ime Strežnika\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Zapusti\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Poglejte trenutno aktivne prijave hroščev tukaj.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Povejte nam kako lahko izboljšamo našo aplikacijo tako, da nam pošljete povratne informacije.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Vač račun je bil verificiran!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E -pošta\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Nimate dovoljenja za pošiljanje sporočil v tem kanalu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Ponastavi\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Zavrnite prijateljsko prošnjo\"],\"PSP1MZ\":[\"Ime Vloge\"],\"PWOA0E\":[\"omenja le\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Pošiljanje Emebed-ov\"],\"PnzsrT\":[\"Izvorna koda\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Skoči na predstavitev\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"V prostem teku\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Uredi sporočilo\"],\"QqoBlW\":[\"Preverite svojo pošto!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ponastavi geslo\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Sledilec Hroščev\"],\"S3bIKF\":[\"Kopiraj ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Prosimo vas da poskenirate ali uporabite žeton napisan spodaj v vaši avtentikacijski aplikaciji.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Odstrani Authenticator\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Upravljanje Sporočil\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Upravljanje vlog\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Nastavitve\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Povabite svoje prijatelje, nekaj kul robotov in priredite veliko zabavo.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Sprememba Avatarja\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Sporočilo poslano\"],\"VJScHU\":[\"Razlog\"],\"VKsaTi\":[\"Odgovarjate\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Utišanje Članov\"],\"VsHxv+\":[\"Kopiraj tekst\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verificiranje vašega računa…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Zunanje povezava so lahko nevarne!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Nastavitve odjemalca\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacija Authenticator\"],\"YcVBkL\":[\"Sporočilo je prejeto\"],\"YirHq7\":[\"Povratne informacije\"],\"YlFpiA\":[\"Verifikacija je bila neuspešna!\"],\"Yp+Hi/\":[\"Odpri nastavitve\"],\"Z5HWHd\":[\"Vklopljeno\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Vaše obnovitvene kode\"],\"aAIQg2\":[\"Videz\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Te akcije ne možno razveljavti.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Izklopljeno\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Onemogoči račun\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Branje Zgodovine Sporočil\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban-aj člana\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Urejaj Dovoljenja\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Ustvarjalec Povabila\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Izbriši\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Razveljavi\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Ustvarite nov robot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Povabljanje Drugih\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Nevidno\"],\"ekfzWq\":[\"Uporabniške nastavitve\"],\"etgedT\":[\"Emojiji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Urejaj Prilagoditve\"],\"fTMMeD\":[\"Ustvari povabilo\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrirajte se\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Prekliči prošnjo\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Dodeljevanje Vlog\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Prijavi\"],\"gkBHk/\":[\"Ustvari kanal\"],\"gkmjYT\":[\"Zapusti strežnik\"],\"go1IWB\":[\"Ta uporabnik vas je blokiral.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Izbriši kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Vpišite svoj elektronski naslov.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Ustvari\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Domov\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Povezovanje\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Omeni\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Vrnite se na prijavo\"],\"jpJ5AL\":[\"Koda za izterjavo\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Dobrodošli nazaj!\"],\"knjY+b\":[\"Lahko ga ponovno odprete kasneje, vendar bo izginil na obeh straneh.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Dodaj prijatelja\"],\"lSGjX7\":[\"Uporabnik Pridružil Call\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanali\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Ime skupine\"],\"mAYvqA\":[\"Pozdravljeni!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Uredite svojo identiteto\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Ne boste zmožni dostopati do svojega računa, razen če kontaktirate našo uporabnikovo podporo - toda brez skrbi, vaši podatki ne bodo izbrisani.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Prilagodi status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Sorodni Prijatelji\"],\"nbzz1A\":[\"Vpišite Kodo\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"To je začetek vaših zapiskov.\"],\"o+XJ9D\":[\"Spremenite\"],\"oB4OOq\":[\"Ban-anje Članon\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Na spletu\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Odstranjevanje Članov\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Privzeto\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Izpis\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Skoči na začetek\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Levi klic uporabnika\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Moj račun\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Vsa sporočila\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 oseba je reagirala\"],\"rxaY+5\":[\"Ne moti\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Napredno\"],\"t43mBk\":[\"Prijavi strežnik\"],\"tBmnPU\":[\"Prijatelji\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Urejanje Spletnih Trnkov\"],\"tdTuUv\":[\"Blokiraj uporabnika\"],\"tfDRzk\":[\"Shrani\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blokirani uporabnik\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Pojdite v strežnik preizkuševalcev\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Odstrani člana\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Izbriši Vlogo\"],\"utrCh2\":[\"Pavziraj Člane\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"O Projektu\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Opis strežnika\"],\"v1kQyJ\":[\"Spletni trnki\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Podprite projekt z donacijo - hvala!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Uredi identiteto\"],\"vXIe7J\":[\"Jezik\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Prosimo vas, da jih shranite na varno lokacijo.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Vnesite kanal\"],\"wL3cK8\":[\"Najnovejše\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Člani\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maškarada\"],\"xDAtGP\":[\"Sporoči\"],\"xGVfLh\":[\"Nadaljuj\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bani\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Pogoji storitve\"],\"xpgPPI\":[\"Moji roboti\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Sprejmite prijateljsko prošnjo\"],\"y1eoq1\":[\"Kopiraj povezavo\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Potrjujem, da sem star najmanj 18 let.\"],\"yDOdwQ\":[\"Upravljanje Uporabnikov\"],\"yIBLq8\":[\"Govorjenje\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Zapri\"],\"z0hW8A\":[\"Poglejte Kode za Obnovitev\"],\"z0t9bb\":[\"Prijava\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"To je začetek vašega pogovora.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Najstarejši\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/sl/messages.po b/components/i18n/catalogs/sl/messages.po
new file mode 100644
index 0000000..6dc5ea9
--- /dev/null
+++ b/components/i18n/catalogs/sl/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: sl\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 oseba je reagirala"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "O Projektu"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Sprejmite prijateljsko prošnjo"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Dodaj prijatelja"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Napredno"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Vsa sporočila"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "S tem uporabnikom ste že prijatelja."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Videz"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Dodeljevanje Vlog"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplikacija Authenticator"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Značke"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Ban"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Ban-aj člana"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Ban-anje Članon"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Bani"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blokiraj uporabnika"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blokirani"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blokirani uporabnik"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Sledilec Hroščev"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Razveljavi"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Prekliči prošnjo"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Računa ni mogoče izbrisati, dokler strežniki niso izbrisani ali predani"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Spremenite"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Sprememba Avatarja"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Spreminjanje Vzdevka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Opis Kanala"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Ime Kanala"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanali"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Preverite svojo pošto!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Odstrani status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Nastavitve odjemalca"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Zapri"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Potrdi"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Potrdi akcijo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Povezovanje"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Vsebina prekrši en ali več zakonov"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Nadaljuj"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Pogovori"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopiraj ID kanala"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopiraj ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopiraj povezavo"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopiraj ID sporočila"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopiraj strežnikov ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopiraj tekst"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopiraj uporabniški ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Ustvari"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Ustvarite skupino"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Ustvarite nov robot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Ustvari novo vlogo"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Ustvari račun"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Ustvari kategorijo"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Ustvari kanal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Ustvari povabilo"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Trenutni geslo"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Prilagodi status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Prilagajanje"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Utišanje Članov"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Privzeto"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Izbriši"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Izbriši kanal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Izbriši sporočilo"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Izbriši Vlogo"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Onemogoči račun"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Ne moti"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Končano"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Uredi identiteto"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Uredi sporočilo"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Uredite svojo identiteto"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E -pošta"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emojiji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Omogoči avtentikacijsko aplikacijo"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Omogoči Namizna Obvestila"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Vnesite novo geslo."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Vnesite kanal"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Vpišite Kodo"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Vnesite svoje trenutno geslo."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Vnesi svoje želeno uporabniško ime."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Zunanje povezava so lahko nevarne!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Verifikacija je bila neuspešna!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Povratne informacije"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Poiščite skupnost na podlagi vaših hobijev in/ali interesov."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Prijatelji"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generirajte Obnovitvene Kode"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Generiranje kode za povabitev…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Vrnite se na prijavo"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Pojdite v strežnik preizkuševalcev"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Ime skupine"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Pozdravljeni!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Domov"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Potrjujem, da sem star najmanj 18 let."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "V prostem teku"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Nevidno"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Povabite svoje prijatelje, nekaj kul robotov in priredite veliko zabavo."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Povabilna Koda"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Povabljanje Drugih"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Ustvarjalec Povabila"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Povabila"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Skoči na predstavitev"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Skoči na začetek"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Odstrani"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Odstrani člana"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Odstranjevanje Članov"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Jezik"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Najnovejše"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Zapusti"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Zapusti skupino"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Zapusti strežnik"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Povejte nam kako lahko izboljšamo našo aplikacijo tako, da nam pošljete povratne informacije."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Izpis"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Odjavite se z vseh drugih sej"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Prijava"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Urejaj Prilagoditve"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Upravljanje Sporočil"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Upravljanje Vzdevkev"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Urejaj Dovoljenja"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Upravljanje vlog"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Upravljanje strežnika"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Urejanje Spletnih Trnkov"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Označi kot prebrano"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Označi kot neprebrano"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maškarada"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Člani"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Omeni"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "omenja le"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Sporoči"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Sporočilo ni bilo naloženo, kliknite da skočite do njega"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Sporočilo je prejeto"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Sporočilo poslano"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Sporočilo je bilo poslano na drugi platformi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Premikanje Članov"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Izključevanje Mikorfona Članov"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Utišan"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Sorodni Prijatelji"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Sorodne Skupine"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Moj račun"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Moji roboti"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Novo Geslo"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Vzdevek"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Nobena"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Obvestila"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Izklopljeno"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Uradna Komunikacija"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Uradni Strežnik"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Brez povezave"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Najstarejši"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Vklopljeno"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Ko ga enkrat izbrišete bo šel za vedno."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Na spletu"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Odpri nastavitve"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Pregled"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Geslo"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Dovoljenja"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Izberite uporabniško ime, po katerem želite da vas ljudje najdejo. To lahko spremenite kasneje v vaših nastavitvah računa."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Prosimo vas, da potrdite to akcijo z izbrano metodo."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Vpišite svoj elektronski naslov."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Prosimo vas, da jih shranite na varno lokacijo."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Prosimo vas da poskenirate ali uporabite žeton napisan spodaj v vaši avtentikacijski aplikaciji."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Prosimo vas, da izberete metodo za avtentikacijo vaše prošnje."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Politika zasebnosti"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Branje Zgodovine Sporočil"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Razlog"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Koda za izterjavo"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrirajte se"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Zavrnite prijateljsko prošnjo"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Ustreznost"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Odstrani Authenticator"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Odstranjevanje Avatarjev"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Odstrani prijatelja"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Odgovori"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Odgovarjate"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Prijavi"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Prijavi sporočilo"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Prijavi strežnik"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Prijavi uporabnika"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Ponovno pošlji verifikacijo"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Ponastavi"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Ponastavi geslo"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Žeton za ponastavitev"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Ime Vloge"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Vloge"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Shrani"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Shranite v zapiske"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Shranjeni zapiski"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Izberite svoj jezik"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Pošiljanje Emebed-ov"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Pošiljanje Sporočil"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Poslali prilogo"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Poslano več priključki"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Opis strežnika"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Ime Strežnika"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Seje"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Nastavitve"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Več ljudi so tipkanje…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Sliši se"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Izvorna koda"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Govorjenje"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Predložite predlog funkcije"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Pošlji povratne informacije"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Podprite projekt z donacijo - hvala!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Pogoji storitve"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Besedilni kanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "To je začetek vašega pogovora."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "To je začetek vaših zapiskov."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Ta uporabnik vas je blokiral."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Pavziraj Člane"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Odblokiraj uporabnika"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Nalaganje Datotek"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Uporabnik"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Uporabnik Pridružil Call"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Levi klic uporabnika"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Upravljanje Uporabnikov"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Uporabniške nastavitve"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Uporabniško ime"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verificiranje vašega računa…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Ogled Kanala"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Poglejte trenutno aktivne prijave hroščev tukaj."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Poglej starejše posodobitve"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Poglejte Kode za Obnovitev"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Ogled starejših sporočil"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Glasovni kanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Poslali smo vam epoštno sporočilo za verifikacijo. Prosimo vas, da počakate do 10 minut da prispe."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Spletni trnki"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Dobrotošli v"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Dobrodošli nazaj!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Lahko tudi kliknete z desnim klikom na uporabniško ikono v zgornjem levem kotu, ali pa jo kliknite z levim klikom če ste že na domu."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Lahko ga ponovno odprete kasneje, vendar bo izginil na obeh straneh."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Težave lahko prijavite in tukaj z nami razpravljate o njihovih izboljšavah."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Te akcije ne možno razveljavti."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Nimate dovoljenja za pošiljanje sporočil v tem kanalu."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Ne boste zmožni dostopati do svojega računa, razen če kontaktirate našo uporabnikovo podporo - toda brez skrbi, vaši podatki ne bodo izbrisani."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Ne boste imeli možnosti se ponovno pridružiti, razen če vas nekdo ponovno povabi."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Vač račun je bil verificiran!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Vaše obnovitvene kode"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/sq/messages.js b/components/i18n/catalogs/sq/messages.js
new file mode 100644
index 0000000..063b287
--- /dev/null
+++ b/components/i18n/catalogs/sq/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Heshtur\"],\"+YFgJi\":[\"Bexhet\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Shënoni si të lexuar\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Shkyçu nga gjithë seancat e tjera\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Zgjidhni një emër me të cilin dëshironi që njerëzit të mund t'ju gjejnë. Emëri mund të ndryshohet më vonë tek opsionet e tua të përdoruesit.\"],\"/qQDwm\":[\"Ftesa po gjenerohet…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Raporto mesazhin\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Dërgo komente\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopjo ID-në e mesazhit\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Largohu nga grupi\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Ju mund të raportoni probleme dhe të diskutoni përmirësime me ne këtu.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nuk do të mund të bashkohesh sërish nëse nuk ftoheni sërish.\"],\"3QuNUr\":[\"Disa njerëz po shkruajnë…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Tashmë miq me këtë përdorues.\"],\"3T8ziB\":[\"Krijo një llogari\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seancat\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Pseudonimi\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Zgjidhni gjuhën tuaj\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Gjeni një komunitet të bazuar mbi hobitë ose interesat e tua.\"],\"572q5a\":[\"Anulo kerkesen\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Shëno si të palexuar\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ndrysho pseudonimin\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Kopjo ID-në e serverit\"],\"7VpPHA\":[\"Konfirmo\"],\"7dZnmw\":[\"Rëndësia\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Emri i përdoruesit\"],\"7vhWI8\":[\"Fjalëkalimi i ri\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Menaxho serverin\"],\"8FE4JE\":[\"Aktivizo aplikacionin e vërtetuesit\"],\"8VGnad\":[\"Krijo kodet e rikthimit\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Fjalëkalimi\"],\"8aTiea\":[\"Përshtatje\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Shkruani emrin e dëshiruar.\"],\"9D85wC\":[\"Kopjo ID-në e përdoruesit\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Përjashto\"],\"9nffag\":[\"Po lexon mesazhe të vjetra\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Zhblloko përdoruesin\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Krijo një grup\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Shkruani një fjalëkalim të ri.\"],\"AU7IRi\":[\"Kanal prej teksti\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Kanal prej zëri\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesazhi është nisur mbi një platform tjetër\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Shiko Kanalin\"],\"CK7kdd\":[\"Statusi i personalizuar\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Dërgo Mesazhe\"],\"CkIs/i\":[\"Heshtja e anëtarëve\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Fjalëkalimi i tanishëm\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Komunikim Zyrtar\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"U krye\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesazhi nuk është ngarkuar, klikoni për t'u kthyer\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Largo\"],\"EdQY6l\":[\"Asgjë\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Bisedat\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Dërgo një bashkangjitje\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Krijo kategori\"],\"F1uGNS\":[\"Menaxho pseudonimet\"],\"FEr96N\":[\"Pamja\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Hiq Avatarët\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktivizo njoftimet e desktopit\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"I fokusuar\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopjo ID-në e kanalit\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupet e përbashkëta\"],\"GhCPk1\":[\"Pasi të fshihet, nuk ka kthim prapa.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Shkruani fjalëkalimin tuaj të tanishëm.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Ju lutemi zgjidhni një metodë për të vërtetuar kërkesën tuaj.\"],\"HAKBY9\":[\"Ngarko skedarë\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Shënimet e ruajtura\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ridërgo verifikimin\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Zhvendos anëtarët\"],\"ImOQa9\":[\"Përgjigju\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Dërgo disa bashkangjitje\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nuk mund të fshihet llogaria derisa serverat të fshihen ose transferohen\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Konfirmo veprimin\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Shiko përditësimet më të vjetra\"],\"JUJmXm\":[\"Ju lutemi konfirmojeni këtë aksion duke përdorur metodën e zgjedhur.\"],\"JW8mxK\":[\"Ruaje në shënimet e tua\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Mire se erdhet ne\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Ju gjithashtu mund të klikoni me anën e djathtë ikonin e përdoruesit lart majtas, ose të klikoni normalisht në qoftë se jeni në krye.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Fshi mesazhin\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Përmbajtja shkel një ose më shumë ligje\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Tingujt\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Serveri zyrtar\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Hiq shokun\"],\"LcET2C\":[\"Politika e privatësisë\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ju kemi dërguar një email verifikimi. Ju lutem, prisni të paktën 10 minuta për mbërritjen e email-it.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Largohu\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Na tregoni se si mund ta përmirësojmë aplikacionin tonë duke na dhënë komente.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Llogaria juaj është verifikuar!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Adresa e email-it\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ju nuk keni leje për të dërguar mesazhe këtu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Rivendos\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Emër roli\"],\"PWOA0E\":[\"Vetëm njoftimet\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Dërgo Embeds\"],\"PnzsrT\":[\"Kodi source\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Rikthehu tek mesazhet e tashme\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktivë\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redakto mesazhin\"],\"QqoBlW\":[\"Kontrolloni email-in tuaj!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Rivendosni fjalëkalimin\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Gjurmuesi i gabimeve\"],\"S3bIKF\":[\"Kopjo ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Ju lutemi skanojeni ose përdoreni kodin më poshtë me aplikacionin tuaj të identifkimit.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Hiq faktorin e identifikimit\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Menaxho Mesazhet\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Menaxho rolet\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Opsionet\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Ftoni të gjithë miqtë e tua, shtoni disa robotë të lezetshëm dhe organizoni një festë të madhe.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Ndrysho Avatarin\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesazhi u Dergua\"],\"VJScHU\":[\"Arsyje\"],\"VKsaTi\":[\"Duke iu përgjigjur\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Anëtarët e shurdhër\"],\"VsHxv+\":[\"Kopjo tekstin\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Po verifikojmë llogarinë tënde…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Lidhjet e jashtme mund të jenë të rrezikshme!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Opsionet e klientit\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacioni i identifikimit\"],\"YcVBkL\":[\"mesazhi i marrë\"],\"YirHq7\":[\"Reagimet\"],\"YlFpiA\":[\"Dështoi të verifikohej!\"],\"Yp+Hi/\":[\"Hap opsionet\"],\"Z5HWHd\":[\"Aktivizuar\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Kodet e tua të rikthimit\"],\"aAIQg2\":[\"Pamja\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ju nuk mund ta zhbëni këtë veprim.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Çaktivizuar\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Çaktivizo llogarinë\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lexoni Historinë e Mesazheve\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Anëtari i ndalimit\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Menaxho lejimet\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Fshije\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Anulo\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Krijo një bot të ri\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Ftoni të tjerët\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"I padukshëm\"],\"ekfzWq\":[\"Opsionet e përdoruesit\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Menaxho personalizimin\"],\"fTMMeD\":[\"Krijo ftesë\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Regjistrohu\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Hiq shokun\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Cakto role\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Raporto\"],\"gkBHk/\":[\"Krijo kanal\"],\"gkmjYT\":[\"Largohu nga serveri\"],\"go1IWB\":[\"Ky përdorues ju ka bllokuar.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Fshi kanalin\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ju lutem shkruani email-in tuaj.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Krijo\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Krye\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Lidhu\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Përmend\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Shko mbrapsht për tek identifikimi\"],\"jpJ5AL\":[\"Kodi i rikuperimit\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Imazhi i profilit\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Mirësevini!\"],\"knjY+b\":[\"Mund ta rihapni më vonë, por do të zhduket nga të dyja palet.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Shtoni mik\"],\"lSGjX7\":[\"Përdoruesi iu bashkua telefonatës\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalet\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Emri i grupit\"],\"mAYvqA\":[\"Përshëndetje!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Do duhet ta kontaktoni suportin për ta aksesur llogarinë tuaj - të dhënat e llogarisë nuk do fshihen.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Raporto përdoruesin\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Shoke te perbashket\"],\"nbzz1A\":[\"Shkruani kodin\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ky është fillimi i shënimeve suaj.\"],\"o+XJ9D\":[\"Ndrysho\"],\"oB4OOq\":[\"Ndaloni anëtarët\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Anëtarët\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"E paracaktuar\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Shko tek fillimi\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Perdoruesi u largua nga thirreja\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Llogaria ime\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Të githa mesazhet\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 njeri ka reaguar\"],\"rxaY+5\":[\"Mos e shqetësoni\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Serveri i raportit\"],\"tBmnPU\":[\"Shokët\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Menaxho Webhooks\"],\"tdTuUv\":[\"Blloko përdoruesin\"],\"tfDRzk\":[\"Ruaj\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Përdorues i bllokuar\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Shko tek serveri i testuesve\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Anëtar i goditjes\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Fshij Rolin\"],\"utrCh2\":[\"Kohëzgjatja e anëtarëve\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Rreth\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Përshkrimi i serverit\"],\"v1kQyJ\":[\"Uebhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profili\"],\"vJum3e\":[\"Mbështetni projektin duke dhuruar!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redakto identitetin\"],\"vXIe7J\":[\"Gjuhë\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Ju lutemi ruani këto në një vend të sigurt.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Hyr tek kanali\"],\"wL3cK8\":[\"Më të fundit\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskaradë\"],\"xDAtGP\":[\"Mesazh\"],\"xGVfLh\":[\"Vazhdo\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Kushtet e Shërbimit\"],\"xpgPPI\":[\"Robotat e mi\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopjo lidhjen\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Konfirmoj që jam të paktën 18 vjeç.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Fol\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Mbylle\"],\"z0hW8A\":[\"Shiko kodet e rikuperimit\"],\"z0t9bb\":[\"Hyr\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ky është fillimi i bisedës suaj.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Më të vjetrat\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/sq/messages.mjs b/components/i18n/catalogs/sq/messages.mjs
new file mode 100644
index 0000000..c779add
--- /dev/null
+++ b/components/i18n/catalogs/sq/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Heshtur\"],\"+YFgJi\":[\"Bexhet\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Shënoni si të lexuar\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Create a new role\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Shkyçu nga gjithë seancat e tjera\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Zgjidhni një emër me të cilin dëshironi që njerëzit të mund t'ju gjejnë. Emëri mund të ndryshohet më vonë tek opsionet e tua të përdoruesit.\"],\"/qQDwm\":[\"Ftesa po gjenerohet…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Raporto mesazhin\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Dërgo komente\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopjo ID-në e mesazhit\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Largohu nga grupi\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Ju mund të raportoni probleme dhe të diskutoni përmirësime me ne këtu.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Nuk do të mund të bashkohesh sërish nëse nuk ftoheni sërish.\"],\"3QuNUr\":[\"Disa njerëz po shkruajnë…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Tashmë miq me këtë përdorues.\"],\"3T8ziB\":[\"Krijo një llogari\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Seancat\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Pseudonimi\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Zgjidhni gjuhën tuaj\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Gjeni një komunitet të bazuar mbi hobitë ose interesat e tua.\"],\"572q5a\":[\"Anulo kerkesen\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Shëno si të palexuar\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ndrysho pseudonimin\"],\"5dJK4M\":[\"Roles\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Overview\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"User\"],\"7SU2U9\":[\"Kopjo ID-në e serverit\"],\"7VpPHA\":[\"Konfirmo\"],\"7dZnmw\":[\"Rëndësia\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Emri i përdoruesit\"],\"7vhWI8\":[\"Fjalëkalimi i ri\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Menaxho serverin\"],\"8FE4JE\":[\"Aktivizo aplikacionin e vërtetuesit\"],\"8VGnad\":[\"Krijo kodet e rikthimit\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Fjalëkalimi\"],\"8aTiea\":[\"Përshtatje\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Shkruani emrin e dëshiruar.\"],\"9D85wC\":[\"Kopjo ID-në e përdoruesit\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Permissions\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Përjashto\"],\"9nffag\":[\"Po lexon mesazhe të vjetra\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Zhblloko përdoruesin\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Krijo një grup\"],\"A9Rhec\":[\"Channel Name\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Shkruani një fjalëkalim të ri.\"],\"AU7IRi\":[\"Kanal prej teksti\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Kanal prej zëri\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Mesazhi është nisur mbi një platform tjetër\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Shiko Kanalin\"],\"CK7kdd\":[\"Statusi i personalizuar\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Channel Description\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Dërgo Mesazhe\"],\"CkIs/i\":[\"Heshtja e anëtarëve\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Fjalëkalimi i tanishëm\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Komunikim Zyrtar\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"U krye\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Mesazhi nuk është ngarkuar, klikoni për t'u kthyer\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Largo\"],\"EdQY6l\":[\"Asgjë\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Bisedat\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Dërgo një bashkangjitje\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Krijo kategori\"],\"F1uGNS\":[\"Menaxho pseudonimet\"],\"FEr96N\":[\"Pamja\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Hiq Avatarët\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktivizo njoftimet e desktopit\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"I fokusuar\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopjo ID-në e kanalit\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Grupet e përbashkëta\"],\"GhCPk1\":[\"Pasi të fshihet, nuk ka kthim prapa.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Shkruani fjalëkalimin tuaj të tanishëm.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Ju lutemi zgjidhni një metodë për të vërtetuar kërkesën tuaj.\"],\"HAKBY9\":[\"Ngarko skedarë\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Shënimet e ruajtura\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Ridërgo verifikimin\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Zhvendos anëtarët\"],\"ImOQa9\":[\"Përgjigju\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Dërgo disa bashkangjitje\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Nuk mund të fshihet llogaria derisa serverat të fshihen ose transferohen\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Konfirmo veprimin\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Shiko përditësimet më të vjetra\"],\"JUJmXm\":[\"Ju lutemi konfirmojeni këtë aksion duke përdorur metodën e zgjedhur.\"],\"JW8mxK\":[\"Ruaje në shënimet e tua\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Mire se erdhet ne\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Ju gjithashtu mund të klikoni me anën e djathtë ikonin e përdoruesit lart majtas, ose të klikoni normalisht në qoftë se jeni në krye.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Fshi mesazhin\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Përmbajtja shkel një ose më shumë ligje\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Tingujt\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Serveri zyrtar\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Hiq shokun\"],\"LcET2C\":[\"Politika e privatësisë\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Ju kemi dërguar një email verifikimi. Ju lutem, prisni të paktën 10 minuta për mbërritjen e email-it.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Server Name\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Largohu\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Na tregoni se si mund ta përmirësojmë aplikacionin tonë duke na dhënë komente.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Llogaria juaj është verifikuar!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Adresa e email-it\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Ju nuk keni leje për të dërguar mesazhe këtu.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Rivendos\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Emër roli\"],\"PWOA0E\":[\"Vetëm njoftimet\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Dërgo Embeds\"],\"PnzsrT\":[\"Kodi source\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Rikthehu tek mesazhet e tashme\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktivë\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redakto mesazhin\"],\"QqoBlW\":[\"Kontrolloni email-in tuaj!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Rivendosni fjalëkalimin\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Gjurmuesi i gabimeve\"],\"S3bIKF\":[\"Kopjo ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Ju lutemi skanojeni ose përdoreni kodin më poshtë me aplikacionin tuaj të identifkimit.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Hiq faktorin e identifikimit\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Menaxho Mesazhet\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Menaxho rolet\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Opsionet\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Ftoni të gjithë miqtë e tua, shtoni disa robotë të lezetshëm dhe organizoni një festë të madhe.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Ndrysho Avatarin\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Mesazhi u Dergua\"],\"VJScHU\":[\"Arsyje\"],\"VKsaTi\":[\"Duke iu përgjigjur\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Anëtarët e shurdhër\"],\"VsHxv+\":[\"Kopjo tekstin\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Po verifikojmë llogarinë tënde…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Lidhjet e jashtme mund të jenë të rrezikshme!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Opsionet e klientit\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Aplikacioni i identifikimit\"],\"YcVBkL\":[\"mesazhi i marrë\"],\"YirHq7\":[\"Reagimet\"],\"YlFpiA\":[\"Dështoi të verifikohej!\"],\"Yp+Hi/\":[\"Hap opsionet\"],\"Z5HWHd\":[\"Aktivizuar\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Kodet e tua të rikthimit\"],\"aAIQg2\":[\"Pamja\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Ju nuk mund ta zhbëni këtë veprim.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Çaktivizuar\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Çaktivizo llogarinë\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Lexoni Historinë e Mesazheve\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Anëtari i ndalimit\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Menaxho lejimet\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inviter\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Fshije\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Anulo\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Krijo një bot të ri\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Ftoni të tjerët\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"I padukshëm\"],\"ekfzWq\":[\"Opsionet e përdoruesit\"],\"etgedT\":[\"Emoji\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Menaxho personalizimin\"],\"fTMMeD\":[\"Krijo ftesë\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Regjistrohu\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Hiq shokun\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Cakto role\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Raporto\"],\"gkBHk/\":[\"Krijo kanal\"],\"gkmjYT\":[\"Largohu nga serveri\"],\"go1IWB\":[\"Ky përdorues ju ka bllokuar.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Fshi kanalin\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ju lutem shkruani email-in tuaj.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Krijo\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Krye\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Lidhu\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Përmend\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Shko mbrapsht për tek identifikimi\"],\"jpJ5AL\":[\"Kodi i rikuperimit\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Imazhi i profilit\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Mirësevini!\"],\"knjY+b\":[\"Mund ta rihapni më vonë, por do të zhduket nga të dyja palet.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Shtoni mik\"],\"lSGjX7\":[\"Përdoruesi iu bashkua telefonatës\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanalet\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Emri i grupit\"],\"mAYvqA\":[\"Përshëndetje!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Do duhet ta kontaktoni suportin për ta aksesur llogarinë tuaj - të dhënat e llogarisë nuk do fshihen.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Raporto përdoruesin\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Shoke te perbashket\"],\"nbzz1A\":[\"Shkruani kodin\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ky është fillimi i shënimeve suaj.\"],\"o+XJ9D\":[\"Ndrysho\"],\"oB4OOq\":[\"Ndaloni anëtarët\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Anëtarët\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"E paracaktuar\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Log Out\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Shko tek fillimi\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Perdoruesi u largua nga thirreja\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Llogaria ime\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Të githa mesazhet\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 njeri ka reaguar\"],\"rxaY+5\":[\"Mos e shqetësoni\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Serveri i raportit\"],\"tBmnPU\":[\"Shokët\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Menaxho Webhooks\"],\"tdTuUv\":[\"Blloko përdoruesin\"],\"tfDRzk\":[\"Ruaj\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Përdorues i bllokuar\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Shko tek serveri i testuesve\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Anëtar i goditjes\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Fshij Rolin\"],\"utrCh2\":[\"Kohëzgjatja e anëtarëve\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Rreth\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Përshkrimi i serverit\"],\"v1kQyJ\":[\"Uebhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profili\"],\"vJum3e\":[\"Mbështetni projektin duke dhuruar!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redakto identitetin\"],\"vXIe7J\":[\"Gjuhë\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Ju lutemi ruani këto në një vend të sigurt.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Hyr tek kanali\"],\"wL3cK8\":[\"Më të fundit\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Members\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskaradë\"],\"xDAtGP\":[\"Mesazh\"],\"xGVfLh\":[\"Vazhdo\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Bans\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Kushtet e Shërbimit\"],\"xpgPPI\":[\"Robotat e mi\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopjo lidhjen\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Konfirmoj që jam të paktën 18 vjeç.\"],\"yDOdwQ\":[\"User Management\"],\"yIBLq8\":[\"Fol\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Mbylle\"],\"z0hW8A\":[\"Shiko kodet e rikuperimit\"],\"z0t9bb\":[\"Hyr\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ky është fillimi i bisedës suaj.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Më të vjetrat\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/sq/messages.po b/components/i18n/catalogs/sq/messages.po
new file mode 100644
index 0000000..ed8b2ce
--- /dev/null
+++ b/components/i18n/catalogs/sq/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: sq\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 njeri ka reaguar"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Rreth"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Shtoni mik"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Të githa mesazhet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Tashmë miq me këtë përdorues."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Pamja"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Cakto role"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Aplikacioni i identifikimit"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Imazhi i profilit"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Bexhet"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Përjashto"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Anëtari i ndalimit"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Ndaloni anëtarët"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blloko përdoruesin"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Përdorues i bllokuar"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Gjurmuesi i gabimeve"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Anulo"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Hiq shokun"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Nuk mund të fshihet llogaria derisa serverat të fshihen ose transferohen"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Ndrysho"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Ndrysho Avatarin"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Ndrysho pseudonimin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanalet"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Kontrolloni email-in tuaj!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Statusi i personalizuar"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Opsionet e klientit"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Mbylle"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Konfirmo"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Konfirmo veprimin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Lidhu"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Përmbajtja shkel një ose më shumë ligje"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Vazhdo"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Bisedat"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopjo ID-në e kanalit"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopjo ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopjo lidhjen"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopjo ID-në e mesazhit"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopjo ID-në e serverit"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopjo tekstin"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopjo ID-në e përdoruesit"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Krijo"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Krijo një grup"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Krijo një bot të ri"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Krijo një llogari"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Krijo kategori"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Krijo kanal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Krijo ftesë"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Fjalëkalimi i tanishëm"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Raporto përdoruesin"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Përshtatje"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Anëtarët e shurdhër"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "E paracaktuar"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Fshije"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Fshi kanalin"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Fshi mesazhin"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Fshij Rolin"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Çaktivizo llogarinë"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Mos e shqetësoni"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "U krye"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Redakto identitetin"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Redakto mesazhin"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Adresa e email-it"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emoji"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Aktivizo aplikacionin e vërtetuesit"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Aktivizo njoftimet e desktopit"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Shkruani një fjalëkalim të ri."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Hyr tek kanali"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Shkruani kodin"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Shkruani fjalëkalimin tuaj të tanishëm."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Shkruani emrin e dëshiruar."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Lidhjet e jashtme mund të jenë të rrezikshme!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Dështoi të verifikohej!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Reagimet"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Gjeni një komunitet të bazuar mbi hobitë ose interesat e tua."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "I fokusuar"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Shokët"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Krijo kodet e rikthimit"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Ftesa po gjenerohet…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Shko mbrapsht për tek identifikimi"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Shko tek serveri i testuesve"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Emri i grupit"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Përshëndetje!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Krye"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Konfirmoj që jam të paktën 18 vjeç."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inaktivë"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "I padukshëm"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Ftoni të gjithë miqtë e tua, shtoni disa robotë të lezetshëm dhe organizoni një festë të madhe."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Ftoni të tjerët"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Rikthehu tek mesazhet e tashme"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Shko tek fillimi"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Largo"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Anëtar i goditjes"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Kick Anëtarët"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Gjuhë"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Më të fundit"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Largohu"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Largohu nga grupi"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Largohu nga serveri"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Na tregoni se si mund ta përmirësojmë aplikacionin tonë duke na dhënë komente."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Shkyçu nga gjithë seancat e tjera"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Hyr"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Menaxho personalizimin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Menaxho Mesazhet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Menaxho pseudonimet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Menaxho lejimet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Menaxho rolet"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Menaxho serverin"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Menaxho Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Shënoni si të lexuar"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Shëno si të palexuar"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskaradë"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Përmend"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Vetëm njoftimet"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Mesazh"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Mesazhi nuk është ngarkuar, klikoni për t'u kthyer"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "mesazhi i marrë"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Mesazhi u Dergua"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Mesazhi është nisur mbi një platform tjetër"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Zhvendos anëtarët"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Heshtja e anëtarëve"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Heshtur"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Shoke te perbashket"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Grupet e përbashkëta"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Llogaria ime"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Robotat e mi"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Fjalëkalimi i ri"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Pseudonimi"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Asgjë"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Njoftimet"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Çaktivizuar"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Komunikim Zyrtar"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Serveri zyrtar"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Më të vjetrat"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Aktivizuar"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Pasi të fshihet, nuk ka kthim prapa."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Hap opsionet"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Fjalëkalimi"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Zgjidhni një emër me të cilin dëshironi që njerëzit të mund t'ju gjejnë. Emëri mund të ndryshohet më vonë tek opsionet e tua të përdoruesit."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Ju lutemi konfirmojeni këtë aksion duke përdorur metodën e zgjedhur."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Ju lutem shkruani email-in tuaj."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Ju lutemi ruani këto në një vend të sigurt."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Ju lutemi skanojeni ose përdoreni kodin më poshtë me aplikacionin tuaj të identifkimit."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Ju lutemi zgjidhni një metodë për të vërtetuar kërkesën tuaj."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Politika e privatësisë"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profili"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Lexoni Historinë e Mesazheve"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Arsyje"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Kodi i rikuperimit"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Regjistrohu"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Rëndësia"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Hiq faktorin e identifikimit"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Hiq Avatarët"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Hiq shokun"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Përgjigju"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Duke iu përgjigjur"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Raporto"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Raporto mesazhin"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Serveri i raportit"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Anulo kerkesen"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Ridërgo verifikimin"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Rivendos"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Rivendosni fjalëkalimin"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Emër roli"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roles"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Ruaj"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Ruaje në shënimet e tua"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Shënimet e ruajtura"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Zgjidhni gjuhën tuaj"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Dërgo Embeds"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Dërgo Mesazhe"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Dërgo një bashkangjitje"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Dërgo disa bashkangjitje"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Përshkrimi i serverit"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Seancat"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Opsionet"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Disa njerëz po shkruajnë…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Tingujt"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Kodi source"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Fol"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Dërgo komente"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Mbështetni projektin duke dhuruar!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Kushtet e Shërbimit"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Kanal prej teksti"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Pamja"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Ky është fillimi i bisedës suaj."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Ky është fillimi i shënimeve suaj."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Ky përdorues ju ka bllokuar."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Kohëzgjatja e anëtarëve"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Zhblloko përdoruesin"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Ngarko skedarë"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Përdoruesi iu bashkua telefonatës"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Perdoruesi u largua nga thirreja"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Opsionet e përdoruesit"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Emri i përdoruesit"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Po verifikojmë llogarinë tënde…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Shiko Kanalin"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Shiko përditësimet më të vjetra"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Shiko kodet e rikuperimit"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Po lexon mesazhe të vjetra"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Kanal prej zëri"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Ju kemi dërguar një email verifikimi. Ju lutem, prisni të paktën 10 minuta për mbërritjen e email-it."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Uebhooks"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Mire se erdhet ne"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Mirësevini!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Ju gjithashtu mund të klikoni me anën e djathtë ikonin e përdoruesit lart majtas, ose të klikoni normalisht në qoftë se jeni në krye."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Mund ta rihapni më vonë, por do të zhduket nga të dyja palet."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Ju mund të raportoni probleme dhe të diskutoni përmirësime me ne këtu."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Ju nuk mund ta zhbëni këtë veprim."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Ju nuk keni leje për të dërguar mesazhe këtu."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Do duhet ta kontaktoni suportin për ta aksesur llogarinë tuaj - të dhënat e llogarisë nuk do fshihen."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Nuk do të mund të bashkohesh sërish nëse nuk ftoheni sërish."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Llogaria juaj është verifikuar!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Kodet e tua të rikthimit"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/sr/messages.js b/components/i18n/catalogs/sr/messages.js
new file mode 100644
index 0000000..fa98f7d
--- /dev/null
+++ b/components/i18n/catalogs/sr/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Утишан\"],\"+YFgJi\":[\"Значке\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Означи као прочитано\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Направите нову улогу\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Одјавите се из свих осталих сесија\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Изаберите корисничко име по којем вас људи могу пронаћи. Ово можете променити касније у подешавањима корисника.\"],\"/qQDwm\":[\"Генерисање позива…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Пријави поруку\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Пошаљите повратне информације\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Копирај ИД поруке\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Изађи из групе\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Можете пријавити проблеме и разговарати о побољшањима са нама директно овде.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Блокиран\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Нећете моћи поново да уђете ако нисте поново позвани.\"],\"3QuNUr\":[\"Више људи пишу…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Већ сте пријатељи са овим корисником.\"],\"3T8ziB\":[\"Направите налог\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сесије\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Надимак\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Изаберите ваш језик\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Пронађите заједницу засновану на вашим хобијима или интересовањима.\"],\"572q5a\":[\"Пријави корисника\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Означи као необрађено\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Промени Надимак\"],\"5dJK4M\":[\"Улоге\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Преглед\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Офлајн\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Корисник\"],\"7SU2U9\":[\"Коприај сервер ИД\"],\"7VpPHA\":[\"Потврди\"],\"7dZnmw\":[\"Релевантност\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Корисничко име\"],\"7vhWI8\":[\"Нова лозинка\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Управљање Сервером\"],\"8FE4JE\":[\"Омогући аутентикациону апликацију\"],\"8VGnad\":[\"Генеришите кодове за опоравак\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Лозинка\"],\"8aTiea\":[\"Прилагођавање\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Унесите жељено корисничко име.\"],\"9D85wC\":[\"Копирај кориснички ИД\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Дозволе\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Прогона\"],\"9nffag\":[\"Прегледање старијих порука\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Деблокирај корисника\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Направи групу\"],\"A9Rhec\":[\"Име Канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Унесите нову лозинку.\"],\"AU7IRi\":[\"Текст Канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Гласни Канал\"],\"BHsrDx\":[\"Позиви\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Порука је послата на другој платформи\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Погледај Канал\"],\"CK7kdd\":[\"Очисти статус\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Дескрипција Канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Слање Порука\"],\"CkIs/i\":[\"Заглуши чланове\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Тренутна лозинка\"],\"DDpDsO\":[\"Позивни Код\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Званична Комуникација\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Готово\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Порука није учитана, кликните да скочите\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Поднесите предлог функције\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Избаци\"],\"EdQY6l\":[\"Ниједно\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Ћаскања\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Послат прилог\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Направи категорију\"],\"F1uGNS\":[\"Управљање Надимцима\"],\"FEr96N\":[\"Тема\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Уклнои Аватаре\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Омогући Desktop Oбавештања\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Фокус\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Копирај ИД канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Заједничке Групе\"],\"GhCPk1\":[\"Када избришете, нећете моћи ићи уназад.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Унесите своју тренутну лозинку.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Молимо вас да изаберете метод за аутентификацију ваше захтев.\"],\"HAKBY9\":[\"Додај Фајлове\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Сачуване Белешке\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Поново пошаљи верификациони код\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Премести чланове\"],\"ImOQa9\":[\"Одговори\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Послато више прилога\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Налог не можете обрисати док сервери нису обрисани или пренети\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Потврди акцију\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Погледајте старија ажурирања\"],\"JUJmXm\":[\"Молимо вас да потврдите ову акцију користећи изабрани метод.\"],\"JW8mxK\":[\"Сачувај у својим белешкама\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Добродошли у\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Такође можете да кликнете са десним кликом на корисничку иконицу у горе левом ћошку или да притиснете левим кликом ако сте већ кући.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Избриши поруку\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Садржај крши један или више закона\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Звуци\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Званични Сервер\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Уклони пријатеља\"],\"LcET2C\":[\"Политика приватности\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Послали смо вам верификациони имејл. Молимо вас да сачекате до 10 минута да стигне.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Име Сервера\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Изађи\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Погледајте тренутно активне буг извештаје овде.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Обавестите нас како можемо побољшати нашу апликацију дајући нам повратне информације.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ваш налог је успешно верификован!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Имејл\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Немате дозволу да шаљете поруке у овом каналу.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Ресетуј\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Одбиј захтев за пријатељство\"],\"PSP1MZ\":[\"Име Улоге\"],\"PWOA0E\":[\"Само Помињања\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Пошаљи уграђене поруке\"],\"PnzsrT\":[\"Изворни Код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Скочи од скорашњег\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактиван\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Измени поруку\"],\"QqoBlW\":[\"Проверите ваш мејл!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ресетуј лозинку\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Трагач Грешака\"],\"S3bIKF\":[\"Копирај ИД\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Молимо вас да скенирате или користите токен испод у вашој аутентикационој апликацији.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Уклони Аутентификатор\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Управљање Порукама\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Управљај Улогама\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Подешавања\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Позовите све ваше пријатеље, неке кул ботове и направите огромну журку.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Промени Профилну Слику\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Порука Послата\"],\"VJScHU\":[\"Разлог\"],\"VKsaTi\":[\"Одговарајући на\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Оглуши чланове\"],\"VsHxv+\":[\"Коприрај текст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Верификујемо ваш налог…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Екстерни линкови могу да буду опасни!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Подешавања Апликације\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Апликација за аутентификацију\"],\"YcVBkL\":[\"Порука Примљена\"],\"YirHq7\":[\"Повратна Информација\"],\"YlFpiA\":[\"Верификовање је неуспешно!\"],\"Yp+Hi/\":[\"Отвори подешавања\"],\"Z5HWHd\":[\"Укључено\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ваши кодови за опоравак\"],\"aAIQg2\":[\"Изглед\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Не можете опозвати ову акцију.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Искључено\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Онемогући Налог\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Прочитај историју порука\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Прогони члана\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Управљај дозволама\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Позивник\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Избриши\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Откажи\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Направите новог бота\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Позови Остале\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидљив\"],\"ekfzWq\":[\"Корисничка Подешавања\"],\"etgedT\":[\"Емоји\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Управљај прилагођавањем\"],\"fTMMeD\":[\"Направи позивницу\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Региструјте се\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Откажи захтев за пријатељство\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Додели улоге\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Пријави\"],\"gkBHk/\":[\"Направи канал\"],\"gkmjYT\":[\"Изађи из сервера\"],\"go1IWB\":[\"Овај корисник вас је блокирао.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Обриши канал\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Молимо вас да унесете ваш имејл.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Направи\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Почетак\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Обавештење\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Повежи се\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Помени\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Вратите се на пријаву\"],\"jpJ5AL\":[\"Код за опоравак\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Профилна Слика\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добродошли!\"],\"knjY+b\":[\"Можете га поново отворити касније, али ће нестати са обе стране.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Додај пријатеља\"],\"lSGjX7\":[\"Корисник је се прикључио позиву\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Канали\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Име Групе\"],\"mAYvqA\":[\"Здраво!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Измени свој идентитет\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Нећете моћи да приступите свом налогу осим ако не контактирате подршку - међутим, ваши подаци неће бити обрисани.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Прилагођени статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Заједнички Пријатељи\"],\"nbzz1A\":[\"Унесите код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ово је почетак ваших бележака.\"],\"o+XJ9D\":[\"Измени\"],\"oB4OOq\":[\"Прогони Чланове\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Онлајн\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Избаци Чланове\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Уобичајено\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Одјавите Се\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Скочите од почетка\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Корисник је изашао из позива\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Мој Налог\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Све Поруке\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 особа је реаговала\"],\"rxaY+5\":[\"Не узнемиравај\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Напредно\"],\"t43mBk\":[\"Пријави сервер\"],\"tBmnPU\":[\"Пријатељи\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Управљај вебхуковима\"],\"tdTuUv\":[\"Блокирај корисника\"],\"tfDRzk\":[\"Сачувај\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Блокиран Корисник\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Иди у сервер за тестере\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Избаци члана\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Обриши Улогу\"],\"utrCh2\":[\"Затвори чланове\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"О томе\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Опис Сервера\"],\"v1kQyJ\":[\"Вебхукови\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профил\"],\"vJum3e\":[\"Подржите пројекат донацијом - хвала вам!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Видео\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Промени идентитет\"],\"vXIe7J\":[\"Језик\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Молимо вас да их сачувате на сигурном месту.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Поруке\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Приступи каналу\"],\"wL3cK8\":[\"Најновије\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Чланови\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскирање\"],\"xDAtGP\":[\"Порука\"],\"xGVfLh\":[\"Настави\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Забране\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Услови коришћења\"],\"xpgPPI\":[\"Моји Ботови\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Прихвати захтев за пријатељство\"],\"y1eoq1\":[\"Копирај линк\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Потврђујем да имам најмање 18 година.\"],\"yDOdwQ\":[\"Упраљање корисницима\"],\"yIBLq8\":[\"Говори\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Затвори\"],\"z0hW8A\":[\"Погледајте кодове за опоравак\"],\"z0t9bb\":[\"Пријавите се\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ово је почетак вашег разговора.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Најстарије\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/sr/messages.mjs b/components/i18n/catalogs/sr/messages.mjs
new file mode 100644
index 0000000..a23fefe
--- /dev/null
+++ b/components/i18n/catalogs/sr/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Утишан\"],\"+YFgJi\":[\"Значке\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Означи као прочитано\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Направите нову улогу\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Одјавите се из свих осталих сесија\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Изаберите корисничко име по којем вас људи могу пронаћи. Ово можете променити касније у подешавањима корисника.\"],\"/qQDwm\":[\"Генерисање позива…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Пријави поруку\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Пошаљите повратне информације\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Копирај ИД поруке\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Изађи из групе\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Можете пријавити проблеме и разговарати о побољшањима са нама директно овде.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Блокиран\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Нећете моћи поново да уђете ако нисте поново позвани.\"],\"3QuNUr\":[\"Више људи пишу…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Већ сте пријатељи са овим корисником.\"],\"3T8ziB\":[\"Направите налог\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Сесије\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Надимак\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Изаберите ваш језик\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Пронађите заједницу засновану на вашим хобијима или интересовањима.\"],\"572q5a\":[\"Пријави корисника\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Означи као необрађено\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Промени Надимак\"],\"5dJK4M\":[\"Улоге\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Преглед\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Офлајн\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Корисник\"],\"7SU2U9\":[\"Коприај сервер ИД\"],\"7VpPHA\":[\"Потврди\"],\"7dZnmw\":[\"Релевантност\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Корисничко име\"],\"7vhWI8\":[\"Нова лозинка\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Управљање Сервером\"],\"8FE4JE\":[\"Омогући аутентикациону апликацију\"],\"8VGnad\":[\"Генеришите кодове за опоравак\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Лозинка\"],\"8aTiea\":[\"Прилагођавање\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Унесите жељено корисничко име.\"],\"9D85wC\":[\"Копирај кориснички ИД\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Дозволе\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Прогона\"],\"9nffag\":[\"Прегледање старијих порука\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Деблокирај корисника\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Направи групу\"],\"A9Rhec\":[\"Име Канала\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Унесите нову лозинку.\"],\"AU7IRi\":[\"Текст Канал\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Гласни Канал\"],\"BHsrDx\":[\"Позиви\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Порука је послата на другој платформи\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Погледај Канал\"],\"CK7kdd\":[\"Очисти статус\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Дескрипција Канала\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Слање Порука\"],\"CkIs/i\":[\"Заглуши чланове\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Тренутна лозинка\"],\"DDpDsO\":[\"Позивни Код\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Званична Комуникација\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Готово\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Порука није учитана, кликните да скочите\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Поднесите предлог функције\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Избаци\"],\"EdQY6l\":[\"Ниједно\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Ћаскања\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Послат прилог\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Направи категорију\"],\"F1uGNS\":[\"Управљање Надимцима\"],\"FEr96N\":[\"Тема\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Уклнои Аватаре\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Омогући Desktop Oбавештања\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Фокус\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Копирај ИД канала\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Заједничке Групе\"],\"GhCPk1\":[\"Када избришете, нећете моћи ићи уназад.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Унесите своју тренутну лозинку.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Молимо вас да изаберете метод за аутентификацију ваше захтев.\"],\"HAKBY9\":[\"Додај Фајлове\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Сачуване Белешке\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Поново пошаљи верификациони код\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Премести чланове\"],\"ImOQa9\":[\"Одговори\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Послато више прилога\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Налог не можете обрисати док сервери нису обрисани или пренети\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Потврди акцију\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Погледајте старија ажурирања\"],\"JUJmXm\":[\"Молимо вас да потврдите ову акцију користећи изабрани метод.\"],\"JW8mxK\":[\"Сачувај у својим белешкама\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Добродошли у\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Такође можете да кликнете са десним кликом на корисничку иконицу у горе левом ћошку или да притиснете левим кликом ако сте већ кући.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Избриши поруку\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Садржај крши један или више закона\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Звуци\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Званични Сервер\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Уклони пријатеља\"],\"LcET2C\":[\"Политика приватности\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Послали смо вам верификациони имејл. Молимо вас да сачекате до 10 минута да стигне.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Име Сервера\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Изађи\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Погледајте тренутно активне буг извештаје овде.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Обавестите нас како можемо побољшати нашу апликацију дајући нам повратне информације.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ваш налог је успешно верификован!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"Имејл\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Немате дозволу да шаљете поруке у овом каналу.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Ресетуј\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Одбиј захтев за пријатељство\"],\"PSP1MZ\":[\"Име Улоге\"],\"PWOA0E\":[\"Само Помињања\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Пошаљи уграђене поруке\"],\"PnzsrT\":[\"Изворни Код\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Скочи од скорашњег\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Неактиван\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Измени поруку\"],\"QqoBlW\":[\"Проверите ваш мејл!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Ресетуј лозинку\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Трагач Грешака\"],\"S3bIKF\":[\"Копирај ИД\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Молимо вас да скенирате или користите токен испод у вашој аутентикационој апликацији.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Уклони Аутентификатор\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Управљање Порукама\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Управљај Улогама\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Подешавања\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Позовите све ваше пријатеље, неке кул ботове и направите огромну журку.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Промени Профилну Слику\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Порука Послата\"],\"VJScHU\":[\"Разлог\"],\"VKsaTi\":[\"Одговарајући на\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Оглуши чланове\"],\"VsHxv+\":[\"Коприрај текст\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Верификујемо ваш налог…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Екстерни линкови могу да буду опасни!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Подешавања Апликације\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Апликација за аутентификацију\"],\"YcVBkL\":[\"Порука Примљена\"],\"YirHq7\":[\"Повратна Информација\"],\"YlFpiA\":[\"Верификовање је неуспешно!\"],\"Yp+Hi/\":[\"Отвори подешавања\"],\"Z5HWHd\":[\"Укључено\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Ваши кодови за опоравак\"],\"aAIQg2\":[\"Изглед\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Не можете опозвати ову акцију.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Искључено\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Онемогући Налог\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Прочитај историју порука\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Прогони члана\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Управљај дозволама\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Позивник\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Избриши\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Откажи\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Направите новог бота\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Позови Остале\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Невидљив\"],\"ekfzWq\":[\"Корисничка Подешавања\"],\"etgedT\":[\"Емоји\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Управљај прилагођавањем\"],\"fTMMeD\":[\"Направи позивницу\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Региструјте се\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Откажи захтев за пријатељство\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Додели улоге\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Пријави\"],\"gkBHk/\":[\"Направи канал\"],\"gkmjYT\":[\"Изађи из сервера\"],\"go1IWB\":[\"Овај корисник вас је блокирао.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Обриши канал\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Молимо вас да унесете ваш имејл.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Направи\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Почетак\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Обавештење\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Повежи се\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Помени\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Бот\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Вратите се на пријаву\"],\"jpJ5AL\":[\"Код за опоравак\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Профилна Слика\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Добродошли!\"],\"knjY+b\":[\"Можете га поново отворити касније, али ће нестати са обе стране.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Додај пријатеља\"],\"lSGjX7\":[\"Корисник је се прикључио позиву\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Канали\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Име Групе\"],\"mAYvqA\":[\"Здраво!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Измени свој идентитет\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Нећете моћи да приступите свом налогу осим ако не контактирате подршку - међутим, ваши подаци неће бити обрисани.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Прилагођени статус\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Заједнички Пријатељи\"],\"nbzz1A\":[\"Унесите код\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Ово је почетак ваших бележака.\"],\"o+XJ9D\":[\"Измени\"],\"oB4OOq\":[\"Прогони Чланове\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Онлајн\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Избаци Чланове\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Уобичајено\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Одјавите Се\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Скочите од почетка\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Корисник је изашао из позива\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Мој Налог\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Све Поруке\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 особа је реаговала\"],\"rxaY+5\":[\"Не узнемиравај\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Напредно\"],\"t43mBk\":[\"Пријави сервер\"],\"tBmnPU\":[\"Пријатељи\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Управљај вебхуковима\"],\"tdTuUv\":[\"Блокирај корисника\"],\"tfDRzk\":[\"Сачувај\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Блокиран Корисник\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Иди у сервер за тестере\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Избаци члана\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Обриши Улогу\"],\"utrCh2\":[\"Затвори чланове\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"О томе\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Опис Сервера\"],\"v1kQyJ\":[\"Вебхукови\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Профил\"],\"vJum3e\":[\"Подржите пројекат донацијом - хвала вам!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Видео\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Промени идентитет\"],\"vXIe7J\":[\"Језик\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Молимо вас да их сачувате на сигурном месту.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Поруке\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Приступи каналу\"],\"wL3cK8\":[\"Најновије\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Чланови\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Маскирање\"],\"xDAtGP\":[\"Порука\"],\"xGVfLh\":[\"Настави\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Забране\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Услови коришћења\"],\"xpgPPI\":[\"Моји Ботови\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Прихвати захтев за пријатељство\"],\"y1eoq1\":[\"Копирај линк\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Потврђујем да имам најмање 18 година.\"],\"yDOdwQ\":[\"Упраљање корисницима\"],\"yIBLq8\":[\"Говори\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Затвори\"],\"z0hW8A\":[\"Погледајте кодове за опоравак\"],\"z0t9bb\":[\"Пријавите се\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Ово је почетак вашег разговора.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Најстарије\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/sr/messages.po b/components/i18n/catalogs/sr/messages.po
new file mode 100644
index 0000000..0d23218
--- /dev/null
+++ b/components/i18n/catalogs/sr/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: sr\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "1 особа је реаговала"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "О томе"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "Прихвати захтев за пријатељство"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Додај пријатеља"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Напредно"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Све Поруке"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Већ сте пријатељи са овим корисником."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Изглед"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Додели улоге"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Апликација за аутентификацију"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Профилна Слика"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Значке"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Прогона"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Прогони члана"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Прогони Чланове"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Забране"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Блокирај корисника"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Блокиран"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Блокиран Корисник"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Бот"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Трагач Грешака"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Откажи"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Откажи захтев за пријатељство"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Налог не можете обрисати док сервери нису обрисани или пренети"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Измени"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Промени Профилну Слику"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Промени Надимак"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Дескрипција Канала"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Име Канала"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Канали"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Проверите ваш мејл!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Очисти статус"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Подешавања Апликације"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Затвори"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Потврди"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Потврди акцију"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Повежи се"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Садржај крши један или више закона"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Настави"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Ћаскања"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Копирај ИД канала"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Копирај ИД"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Копирај линк"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Копирај ИД поруке"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Коприај сервер ИД"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Коприрај текст"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Копирај кориснички ИД"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Направи"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Направи групу"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Направите новог бота"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Направите нову улогу"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Направите налог"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Направи категорију"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Направи канал"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Направи позивницу"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Тренутна лозинка"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Прилагођени статус"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Прилагођавање"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Оглуши чланове"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Уобичајено"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Избриши"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Обриши канал"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Избриши поруку"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Обриши Улогу"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Онемогући Налог"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Не узнемиравај"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Готово"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Промени идентитет"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Измени поруку"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr "Измени свој идентитет"
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "Имејл"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Емоји"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Омогући аутентикациону апликацију"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Омогући Desktop Oбавештања"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Унесите нову лозинку."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Приступи каналу"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Унесите код"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Унесите своју тренутну лозинку."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Унесите жељено корисничко име."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Екстерни линкови могу да буду опасни!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Верификовање је неуспешно!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Повратна Информација"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Пронађите заједницу засновану на вашим хобијима или интересовањима."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Фокус"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Пријатељи"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Генеришите кодове за опоравак"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Генерисање позива…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Вратите се на пријаву"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Иди у сервер за тестере"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Име Групе"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Здраво!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Почетак"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Потврђујем да имам најмање 18 година."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Неактиван"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Невидљив"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Позовите све ваше пријатеље, неке кул ботове и направите огромну журку."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Позивни Код"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Позови Остале"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Позивник"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Позиви"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Скочи од скорашњег"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Скочите од почетка"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Избаци"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Избаци члана"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Избаци Чланове"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Језик"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Најновије"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Изађи"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Изађи из групе"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Изађи из сервера"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Обавестите нас како можемо побољшати нашу апликацију дајући нам повратне информације."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Одјавите Се"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Одјавите се из свих осталих сесија"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Пријавите се"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Управљај прилагођавањем"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Управљање Порукама"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Управљање Надимцима"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Управљај дозволама"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Управљај Улогама"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Управљање Сервером"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Управљај вебхуковима"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Означи као прочитано"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Означи као необрађено"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Маскирање"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Чланови"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Помени"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Само Помињања"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Порука"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Порука није учитана, кликните да скочите"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Порука Примљена"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Порука Послата"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Порука је послата на другој платформи"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Поруке"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Премести чланове"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Заглуши чланове"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Утишан"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Заједнички Пријатељи"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Заједничке Групе"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Мој Налог"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Моји Ботови"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Нова лозинка"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Надимак"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Ниједно"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Обавештење"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Искључено"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Званична Комуникација"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Званични Сервер"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Офлајн"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "OK"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Најстарије"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "Укључено"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "Када избришете, нећете моћи ићи уназад."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Онлајн"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Отвори подешавања"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Преглед"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Лозинка"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Дозволе"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Изаберите корисничко име по којем вас људи могу пронаћи. Ово можете променити касније у подешавањима корисника."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Молимо вас да потврдите ову акцију користећи изабрани метод."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Молимо вас да унесете ваш имејл."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Молимо вас да их сачувате на сигурном месту."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Молимо вас да скенирате или користите токен испод у вашој аутентикационој апликацији."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Молимо вас да изаберете метод за аутентификацију ваше захтев."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Политика приватности"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Профил"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Прочитај историју порука"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Разлог"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Код за опоравак"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Региструјте се"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "Одбиј захтев за пријатељство"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Релевантност"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Уклони Аутентификатор"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Уклнои Аватаре"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Уклони пријатеља"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Одговори"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Одговарајући на"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Пријави"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Пријави поруку"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Пријави сервер"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Пријави корисника"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Поново пошаљи верификациони код"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Ресетуј"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Ресетуј лозинку"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Име Улоге"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Улоге"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Сачувај"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Сачувај у својим белешкама"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Сачуване Белешке"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Изаберите ваш језик"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Пошаљи уграђене поруке"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Слање Порука"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Послат прилог"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Послато више прилога"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Опис Сервера"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Име Сервера"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Сесије"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Подешавања"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Више људи пишу…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Звуци"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Изворни Код"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Говори"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Поднесите предлог функције"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Пошаљите повратне информације"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Подржите пројекат донацијом - хвала вам!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Услови коришћења"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Текст Канал"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Тема"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Ово је почетак вашег разговора."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Ово је почетак ваших бележака."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Овај корисник вас је блокирао."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Затвори чланове"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Деблокирај корисника"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Додај Фајлове"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Корисник"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Корисник је се прикључио позиву"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Корисник је изашао из позива"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Упраљање корисницима"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Корисничка Подешавања"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Корисничко име"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Верификујемо ваш налог…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Видео"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Погледај Канал"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Погледајте тренутно активне буг извештаје овде."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Погледајте старија ажурирања"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Погледајте кодове за опоравак"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Прегледање старијих порука"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Гласни Канал"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Послали смо вам верификациони имејл. Молимо вас да сачекате до 10 минута да стигне."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "Вебхукови"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Добродошли у"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Добродошли!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Такође можете да кликнете са десним кликом на корисничку иконицу у горе левом ћошку или да притиснете левим кликом ако сте већ кући."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Можете га поново отворити касније, али ће нестати са обе стране."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Можете пријавити проблеме и разговарати о побољшањима са нама директно овде."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Не можете опозвати ову акцију."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Немате дозволу да шаљете поруке у овом каналу."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Нећете моћи да приступите свом налогу осим ако не контактирате подршку - међутим, ваши подаци неће бити обрисани."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Нећете моћи поново да уђете ако нисте поново позвани."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Ваш налог је успешно верификован!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Ваши кодови за опоравак"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/sv/messages.js b/components/i18n/catalogs/sv/messages.js
new file mode 100644
index 0000000..3076c61
--- /dev/null
+++ b/components/i18n/catalogs/sv/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"Tystad\"],\"+YFgJi\":[\"Märken\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markera som läst\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Skapa en ny roll\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logga ut från alla andra sessioner\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Välj ett användarnamn som du vill att folk ska kunna hitta dig genom. Detta kan ändras senare via inställningarna.\"],\"/qQDwm\":[\"Genererar inbjudan…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Rapportera meddelande\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Skicka feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiera meddelande-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Lämna grupp\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Du kan rapportera problem och diskutera förbättringar med oss direkt här.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blockerade\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du kommer inte kunna gå med igen om inte du blir inbjuden.\"],\"3QuNUr\":[\"Flera personer skriver…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Redan vän med användaren.\"],\"3T8ziB\":[\"Skapa ett konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioner\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Smeknamn\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Välj ditt språk\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Hitta en gemenskap baserat på dina hobbyer eller intressen.\"],\"572q5a\":[\"Rapportera användare\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markera som oläst\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ändra Smeknamn\"],\"5dJK4M\":[\"Roller\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Översikt\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Användare\"],\"7SU2U9\":[\"Kopiera server-ID\"],\"7VpPHA\":[\"Bekräfta\"],\"7dZnmw\":[\"Relevans\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Användarnamn\"],\"7vhWI8\":[\"Nytt Lösenord\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Hantera Server\"],\"8FE4JE\":[\"Aktivera autentiseringsappen\"],\"8VGnad\":[\"Generera återställningskoder\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Lösenord\"],\"8aTiea\":[\"Anpassning\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Skriv in ditt önskade användarnamn.\"],\"9D85wC\":[\"Kopiera användar-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Återställ Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Behörigheter\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bannlys\"],\"9nffag\":[\"Visar äldre meddelanden\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Avblockera användare\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Skapa en grupp\"],\"A9Rhec\":[\"Kanalnamn\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Ange ett nytt lösenord.\"],\"AU7IRi\":[\"Textkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Röstkanal\"],\"BHsrDx\":[\"Inbjudningar\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Meddelandet skickades på en annan plattform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Se Kanal\"],\"CK7kdd\":[\"Rensa status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeskrivning\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Skicka Meddelanden\"],\"CkIs/i\":[\"Mjuta Medlemmar\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nuvarande Lösenord\"],\"DDpDsO\":[\"Inbjudningskod\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officiell kommunikation\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Klart\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Meddelandet har inte laddats, klicka för att hoppa\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Lämna förslag\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Sparka\"],\"EdQY6l\":[\"Inga\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konversationer\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Laddade upp bilagan\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Skapa kategori\"],\"F1uGNS\":[\"Hantera Smeknamn\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Ta Bort Avatarer\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktivera notifikationer på Skrivbordet\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiera kanal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gemensamma Grupper\"],\"GhCPk1\":[\"När det är borttaget så kommer det inte tillbaka.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ange ditt nuvarande lösenord.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Välj en metod för att autentisera din begäran.\"],\"HAKBY9\":[\"Ladda Upp Filer\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Sparade Anteckningar\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Skicka verifiering igen\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Flytta Medlemmar\"],\"ImOQa9\":[\"Svara\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Laddade upp bilagorna\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kan inte ta bort konto förrän servrar är borttagna eller flyttade\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Bekräfta åtgärd\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Visa äldre uppdateringar\"],\"JUJmXm\":[\"Vänligen bekräfta denna åtgärd med den valda metoden.\"],\"JW8mxK\":[\"Spara till dina anteckningar\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Välkommen till\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kan också högerklicka på användarikonen uppe till vänster, eller vänsterklicka om du redan är på hem-menyn.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Radera meddelande\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Innehåll bryter mot en eller flera lagar\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Ljud\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiell Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Ta bort vän\"],\"LcET2C\":[\"Integritetspolicy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Vi har skickat dig ett verifikationsmejl. Tillåt upp till 10 minuter för det att anlända.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernamn\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Lämna\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Visa aktuella felrapporter här.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Berätta för oss om hur vi kan förbättra vår app genom att ge oss feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ditt konto har blivit verifierat!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-post\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du har inte behörighet att skicka meddelanden i denna kanal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Återställ\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rollnamn\"],\"PWOA0E\":[\"Endast omnämnander\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Skicka Inbäddningar\"],\"PnzsrT\":[\"Källkod\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Hoppa till senaste\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redigera meddelande\"],\"QqoBlW\":[\"Kolla din e-post!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Återställ lösenord\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Buggspårare\"],\"S3bIKF\":[\"Kopiera ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Vänligen skanna eller använd token nedan i din autentisering-app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Ta bort Autentiserare\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Hantera Meddelanden\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Hantera Roller\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Inställningar\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Bjud in alla dina vänner, några coola bottar och arrangera en stor fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Ändra Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Meddelande skickat\"],\"VJScHU\":[\"Anledning\"],\"VKsaTi\":[\"Svarar på\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Döva Medlemmar\"],\"VsHxv+\":[\"Kopiera text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifierar ditt konto…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externa länkar kan vara farliga!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientinställningar\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentiseringsapp\"],\"YcVBkL\":[\"Meddelande mottaget\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Det gick inte att verifiera!\"],\"Yp+Hi/\":[\"Öppna inställningar\"],\"Z5HWHd\":[\"På\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Dina återvinningskoder\"],\"aAIQg2\":[\"Utseende\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Du kan inte ångra detta.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Av\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Inaktivera Konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Läs Meddelandehistorik\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bannlys medlem\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Hantera Behörigheter\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inbjudare\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Radera\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Avbryt\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Skapa en ny bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Bjud In Andra\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Osynlig\"],\"ekfzWq\":[\"Användarinställningar\"],\"etgedT\":[\"Emotikonar\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Hantera anpassningar\"],\"fTMMeD\":[\"Skapa inbjudan\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrera\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Avbryt vänförfrågan\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Tilldela Roller\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapportera\"],\"gkBHk/\":[\"Skapa kanal\"],\"gkmjYT\":[\"Lämna server\"],\"go1IWB\":[\"Användaren har blockerat dig.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Radera kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ange din e-postadress.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Skapa\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hem\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikationer\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Anslut\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Nämn\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Tillbaka till inloggningssidan\"],\"jpJ5AL\":[\"Återställningskod\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Välkommen!\"],\"knjY+b\":[\"Du kan öppna den senare igen, men den kommer att försvinna för er båda.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Lägg till vän\"],\"lSGjX7\":[\"Användare gick med samtal\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaler\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppnamn\"],\"mAYvqA\":[\"Hej!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du kommer inte kunna nå ditt konto såvida du inte kontaktar supporten - däremot kommer inte din data att försvinna.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Anpassad status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Gemensamma Vänner\"],\"nbzz1A\":[\"Ange kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Detta är starten av dina anteckningar.\"],\"o+XJ9D\":[\"Ändra\"],\"oB4OOq\":[\"Bannlys Medlemmar\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Sparka Medlemmar\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logga ut\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Gå till början\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Användare gick ur samtal\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mitt Konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alla meddelanden\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"En person har reagerat\"],\"rxaY+5\":[\"Stör ej\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avancerat\"],\"t43mBk\":[\"Rapportera server\"],\"tBmnPU\":[\"Vänner\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Hantera Webhooks\"],\"tdTuUv\":[\"Blockera användare\"],\"tfDRzk\":[\"Spara\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blockerad Användare\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gå till vår testserver\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Sparka medlem\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Radera Roll\"],\"utrCh2\":[\"Pausa Medlemmar\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Om\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeskrivning\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Stöd projektet genom att donera - tack!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redigera identitet\"],\"vXIe7J\":[\"Språk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Spara dem på en säker plats.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Meddelanden\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Fortsätt\"],\"wL3cK8\":[\"Senaste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Medlemmar\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerad\"],\"xDAtGP\":[\"Meddela\"],\"xGVfLh\":[\"Fortsätt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Förbud\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Användarvillkor\"],\"xpgPPI\":[\"Mina bottar\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopiera länk\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Jag bekräftar att jag är åtminstone 18 år gammal.\"],\"yDOdwQ\":[\"Användarhantering\"],\"yIBLq8\":[\"Tala\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Stäng\"],\"z0hW8A\":[\"Visa koder för återhämtning\"],\"z0t9bb\":[\"Logga in\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Det här är början av er konversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Äldsta\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/sv/messages.mjs b/components/i18n/catalogs/sv/messages.mjs
new file mode 100644
index 0000000..be21502
--- /dev/null
+++ b/components/i18n/catalogs/sv/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"Tystad\"],\"+YFgJi\":[\"Märken\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Markera som läst\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"Skapa en ny roll\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"Logga ut från alla andra sessioner\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Välj ett användarnamn som du vill att folk ska kunna hitta dig genom. Detta kan ändras senare via inställningarna.\"],\"/qQDwm\":[\"Genererar inbjudan…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Rapportera meddelande\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Skicka feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Kopiera meddelande-ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Lämna grupp\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"Du kan rapportera problem och diskutera förbättringar med oss direkt här.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blockerade\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"Du kommer inte kunna gå med igen om inte du blir inbjuden.\"],\"3QuNUr\":[\"Flera personer skriver…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Redan vän med användaren.\"],\"3T8ziB\":[\"Skapa ett konto\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"Sessioner\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Smeknamn\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"Välj ditt språk\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Hitta en gemenskap baserat på dina hobbyer eller intressen.\"],\"572q5a\":[\"Rapportera användare\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Markera som oläst\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Ändra Smeknamn\"],\"5dJK4M\":[\"Roller\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"Översikt\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"Offline\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"Användare\"],\"7SU2U9\":[\"Kopiera server-ID\"],\"7VpPHA\":[\"Bekräfta\"],\"7dZnmw\":[\"Relevans\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"Användarnamn\"],\"7vhWI8\":[\"Nytt Lösenord\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Hantera Server\"],\"8FE4JE\":[\"Aktivera autentiseringsappen\"],\"8VGnad\":[\"Generera återställningskoder\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"Lösenord\"],\"8aTiea\":[\"Anpassning\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"Skriv in ditt önskade användarnamn.\"],\"9D85wC\":[\"Kopiera användar-ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Återställ Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"Behörigheter\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Bannlys\"],\"9nffag\":[\"Visar äldre meddelanden\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Avblockera användare\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"Skapa en grupp\"],\"A9Rhec\":[\"Kanalnamn\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Ange ett nytt lösenord.\"],\"AU7IRi\":[\"Textkanal\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"Röstkanal\"],\"BHsrDx\":[\"Inbjudningar\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Meddelandet skickades på en annan plattform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"Se Kanal\"],\"CK7kdd\":[\"Rensa status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"Kanalbeskrivning\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Skicka Meddelanden\"],\"CkIs/i\":[\"Mjuta Medlemmar\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"Nuvarande Lösenord\"],\"DDpDsO\":[\"Inbjudningskod\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Officiell kommunikation\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Klart\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Meddelandet har inte laddats, klicka för att hoppa\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Lämna förslag\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Sparka\"],\"EdQY6l\":[\"Inga\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"Konversationer\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"Laddade upp bilagan\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Skapa kategori\"],\"F1uGNS\":[\"Hantera Smeknamn\"],\"FEr96N\":[\"Tema\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Ta Bort Avatarer\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"Aktivera notifikationer på Skrivbordet\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Fokus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Kopiera kanal-ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Gemensamma Grupper\"],\"GhCPk1\":[\"När det är borttaget så kommer det inte tillbaka.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"Ange ditt nuvarande lösenord.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Välj en metod för att autentisera din begäran.\"],\"HAKBY9\":[\"Ladda Upp Filer\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"Sparade Anteckningar\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"Skicka verifiering igen\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Flytta Medlemmar\"],\"ImOQa9\":[\"Svara\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"Laddade upp bilagorna\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Kan inte ta bort konto förrän servrar är borttagna eller flyttade\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Bekräfta åtgärd\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"Visa äldre uppdateringar\"],\"JUJmXm\":[\"Vänligen bekräfta denna åtgärd med den valda metoden.\"],\"JW8mxK\":[\"Spara till dina anteckningar\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Välkommen till\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"Du kan också högerklicka på användarikonen uppe till vänster, eller vänsterklicka om du redan är på hem-menyn.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Radera meddelande\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Innehåll bryter mot en eller flera lagar\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"Ljud\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Officiell Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Ta bort vän\"],\"LcET2C\":[\"Integritetspolicy\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"Vi har skickat dig ett verifikationsmejl. Tillåt upp till 10 minuter för det att anlända.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"Servernamn\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Lämna\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"Visa aktuella felrapporter här.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Berätta för oss om hur vi kan förbättra vår app genom att ge oss feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Ditt konto har blivit verifierat!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"E-post\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"Du har inte behörighet att skicka meddelanden i denna kanal.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Återställ\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Rollnamn\"],\"PWOA0E\":[\"Endast omnämnander\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Skicka Inbäddningar\"],\"PnzsrT\":[\"Källkod\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"Hoppa till senaste\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"Inaktiv\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Redigera meddelande\"],\"QqoBlW\":[\"Kolla din e-post!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"Återställ lösenord\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Buggspårare\"],\"S3bIKF\":[\"Kopiera ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Vänligen skanna eller använd token nedan i din autentisering-app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"Ta bort Autentiserare\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Hantera Meddelanden\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Hantera Roller\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"Inställningar\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Bjud in alla dina vänner, några coola bottar och arrangera en stor fest.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Ändra Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"Meddelande skickat\"],\"VJScHU\":[\"Anledning\"],\"VKsaTi\":[\"Svarar på\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Döva Medlemmar\"],\"VsHxv+\":[\"Kopiera text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifierar ditt konto…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"Externa länkar kan vara farliga!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"Klientinställningar\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Autentiseringsapp\"],\"YcVBkL\":[\"Meddelande mottaget\"],\"YirHq7\":[\"Feedback\"],\"YlFpiA\":[\"Det gick inte att verifiera!\"],\"Yp+Hi/\":[\"Öppna inställningar\"],\"Z5HWHd\":[\"På\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Dina återvinningskoder\"],\"aAIQg2\":[\"Utseende\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"Du kan inte ångra detta.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"Av\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"Inaktivera Konto\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Läs Meddelandehistorik\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Bannlys medlem\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Hantera Behörigheter\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"Inbjudare\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Radera\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Avbryt\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Skapa en ny bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Bjud In Andra\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"Osynlig\"],\"ekfzWq\":[\"Användarinställningar\"],\"etgedT\":[\"Emotikonar\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Hantera anpassningar\"],\"fTMMeD\":[\"Skapa inbjudan\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"Registrera\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Avbryt vänförfrågan\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Tilldela Roller\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Rapportera\"],\"gkBHk/\":[\"Skapa kanal\"],\"gkmjYT\":[\"Lämna server\"],\"go1IWB\":[\"Användaren har blockerat dig.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Radera kanal\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"Ange din e-postadress.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Skapa\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"Hem\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"Notifikationer\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Anslut\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Nämn\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"Robot\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"Tillbaka till inloggningssidan\"],\"jpJ5AL\":[\"Återställningskod\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"Välkommen!\"],\"knjY+b\":[\"Du kan öppna den senare igen, men den kommer att försvinna för er båda.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Lägg till vän\"],\"lSGjX7\":[\"Användare gick med samtal\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"Kanaler\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"Gruppnamn\"],\"mAYvqA\":[\"Hej!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"Du kommer inte kunna nå ditt konto såvida du inte kontaktar supporten - däremot kommer inte din data att försvinna.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Anpassad status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Gemensamma Vänner\"],\"nbzz1A\":[\"Ange kod\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"Detta är starten av dina anteckningar.\"],\"o+XJ9D\":[\"Ändra\"],\"oB4OOq\":[\"Bannlys Medlemmar\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"Online\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Sparka Medlemmar\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"Standard\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"Logga ut\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"Gå till början\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"Användare gick ur samtal\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"Mitt Konto\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"Alla meddelanden\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"En person har reagerat\"],\"rxaY+5\":[\"Stör ej\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Avancerat\"],\"t43mBk\":[\"Rapportera server\"],\"tBmnPU\":[\"Vänner\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Hantera Webhooks\"],\"tdTuUv\":[\"Blockera användare\"],\"tfDRzk\":[\"Spara\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"Blockerad Användare\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"Gå till vår testserver\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Sparka medlem\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Radera Roll\"],\"utrCh2\":[\"Pausa Medlemmar\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"Om\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"Serverbeskrivning\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profil\"],\"vJum3e\":[\"Stöd projektet genom att donera - tack!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Redigera identitet\"],\"vXIe7J\":[\"Språk\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Spara dem på en säker plats.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Meddelanden\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"Fortsätt\"],\"wL3cK8\":[\"Senaste\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"Medlemmar\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Maskerad\"],\"xDAtGP\":[\"Meddela\"],\"xGVfLh\":[\"Fortsätt\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"Förbud\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"Användarvillkor\"],\"xpgPPI\":[\"Mina bottar\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Kopiera länk\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"Jag bekräftar att jag är åtminstone 18 år gammal.\"],\"yDOdwQ\":[\"Användarhantering\"],\"yIBLq8\":[\"Tala\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Stäng\"],\"z0hW8A\":[\"Visa koder för återhämtning\"],\"z0t9bb\":[\"Logga in\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"Ok\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"Det här är början av er konversation.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"Äldsta\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/sv/messages.po b/components/i18n/catalogs/sv/messages.po
new file mode 100644
index 0000000..5e52f95
--- /dev/null
+++ b/components/i18n/catalogs/sv/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: sv\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "En person har reagerat"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "Om"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "Lägg till vän"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "Avancerat"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "Alla meddelanden"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "Redan vän med användaren."
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "Utseende"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "Tilldela Roller"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "Autentiseringsapp"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "Avatar"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "Märken"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "Bannlys"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "Bannlys medlem"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "Bannlys Medlemmar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "Förbud"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "Blockera användare"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "Blockerade"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "Blockerad Användare"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "Robot"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "Buggspårare"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "Avbryt vänförfrågan"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "Kan inte ta bort konto förrän servrar är borttagna eller flyttade"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "Ändra"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "Ändra Avatar"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "Ändra Smeknamn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "Kanalbeskrivning"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "Kanalnamn"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "Kanaler"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "Kolla din e-post!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "Rensa status"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "Klientinställningar"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "Stäng"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "Bekräfta"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "Bekräfta åtgärd"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "Anslut"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "Innehåll bryter mot en eller flera lagar"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "Fortsätt"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "Konversationer"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "Kopiera kanal-ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "Kopiera ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "Kopiera länk"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "Kopiera meddelande-ID"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "Kopiera server-ID"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "Kopiera text"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "Kopiera användar-ID"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "Skapa"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "Skapa en grupp"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "Skapa en ny bot"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "Skapa en ny roll"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "Skapa ett konto"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "Skapa kategori"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "Skapa kanal"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "Skapa inbjudan"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "Nuvarande Lösenord"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "Anpassad status"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "Anpassning"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "Döva Medlemmar"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "Standard"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "Radera"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "Radera kanal"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "Radera meddelande"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "Radera Roll"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "Inaktivera Konto"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "Stör ej"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "Klart"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "Redigera identitet"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "Redigera meddelande"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "E-post"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "Emotikonar"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "Aktivera autentiseringsappen"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "Aktivera notifikationer på Skrivbordet"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "Ange ett nytt lösenord."
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "Fortsätt"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "Ange kod"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "Ange ditt nuvarande lösenord."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "Skriv in ditt önskade användarnamn."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "Externa länkar kan vara farliga!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "Det gick inte att verifiera!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "Hitta en gemenskap baserat på dina hobbyer eller intressen."
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "Fokus"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "Vänner"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "Generera återställningskoder"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "Genererar inbjudan…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "Tillbaka till inloggningssidan"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "Gå till vår testserver"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "Gruppnamn"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "Hej!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "Hem"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "Jag bekräftar att jag är åtminstone 18 år gammal."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "Inaktiv"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "Osynlig"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "Bjud in alla dina vänner, några coola bottar och arrangera en stor fest."
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "Inbjudningskod"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "Bjud In Andra"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "Inbjudare"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "Inbjudningar"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "Hoppa till senaste"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "Gå till början"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "Sparka"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "Sparka medlem"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "Sparka Medlemmar"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "Språk"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "Senaste"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "Lämna"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "Lämna grupp"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "Lämna server"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "Berätta för oss om hur vi kan förbättra vår app genom att ge oss feedback."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "Logga ut"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "Logga ut från alla andra sessioner"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "Logga in"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "Hantera anpassningar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "Hantera Meddelanden"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "Hantera Smeknamn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "Hantera Behörigheter"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "Hantera Roller"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "Hantera Server"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "Hantera Webhooks"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "Markera som läst"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "Markera som oläst"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "Maskerad"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "Medlemmar"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "Nämn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "Endast omnämnander"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "Meddela"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "Meddelandet har inte laddats, klicka för att hoppa"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "Meddelande mottaget"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "Meddelande skickat"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "Meddelandet skickades på en annan plattform"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "Meddelanden"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "Flytta Medlemmar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "Mjuta Medlemmar"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "Tystad"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "Gemensamma Vänner"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "Gemensamma Grupper"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "Mitt Konto"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "Mina bottar"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "Nytt Lösenord"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "Smeknamn"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "Inga"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "Notifikationer"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "Av"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "Officiell kommunikation"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "Officiell Server"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "Offline"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "Ok"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "Äldsta"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "På"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "När det är borttaget så kommer det inte tillbaka."
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "Online"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "Öppna inställningar"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "Översikt"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "Lösenord"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "Behörigheter"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "Välj ett användarnamn som du vill att folk ska kunna hitta dig genom. Detta kan ändras senare via inställningarna."
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "Vänligen bekräfta denna åtgärd med den valda metoden."
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "Ange din e-postadress."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "Spara dem på en säker plats."
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "Vänligen skanna eller använd token nedan i din autentisering-app."
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "Välj en metod för att autentisera din begäran."
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "Integritetspolicy"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "Profil"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "Läs Meddelandehistorik"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "Anledning"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "Återställningskod"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "Registrera"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "Relevans"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "Ta bort Autentiserare"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "Ta Bort Avatarer"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "Ta bort vän"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "Svara"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "Svarar på"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "Rapportera"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "Rapportera meddelande"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "Rapportera server"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "Rapportera användare"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "Skicka verifiering igen"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "Återställ"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "Återställ lösenord"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr "Återställ Token"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "Rollnamn"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "Roller"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "Spara"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "Spara till dina anteckningar"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "Sparade Anteckningar"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "Välj ditt språk"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "Skicka Inbäddningar"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "Skicka Meddelanden"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "Laddade upp bilagan"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "Laddade upp bilagorna"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "Serverbeskrivning"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "Servernamn"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "Sessioner"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "Inställningar"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "Flera personer skriver…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "Ljud"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "Källkod"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "Tala"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "Lämna förslag"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "Skicka feedback"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "Stöd projektet genom att donera - tack!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "Användarvillkor"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "Textkanal"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "Tema"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "Det här är början av er konversation."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "Detta är starten av dina anteckningar."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "Användaren har blockerat dig."
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "Pausa Medlemmar"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "Avblockera användare"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "Ladda Upp Filer"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "Användare"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "Användare gick med samtal"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "Användare gick ur samtal"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "Användarhantering"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "Användarinställningar"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "Användarnamn"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "Verifierar ditt konto…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "Video"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "Se Kanal"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "Visa aktuella felrapporter här."
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "Visa äldre uppdateringar"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "Visa koder för återhämtning"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "Visar äldre meddelanden"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "Röstkanal"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "Vi har skickat dig ett verifikationsmejl. Tillåt upp till 10 minuter för det att anlända."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "Välkommen till"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "Välkommen!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "Du kan också högerklicka på användarikonen uppe till vänster, eller vänsterklicka om du redan är på hem-menyn."
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "Du kan öppna den senare igen, men den kommer att försvinna för er båda."
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "Du kan rapportera problem och diskutera förbättringar med oss direkt här."
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "Du kan inte ångra detta."
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "Du har inte behörighet att skicka meddelanden i denna kanal."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "Du kommer inte kunna nå ditt konto såvida du inte kontaktar supporten - däremot kommer inte din data att försvinna."
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "Du kommer inte kunna gå med igen om inte du blir inbjuden."
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "Ditt konto har blivit verifierat!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "Dina återvinningskoder"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/ta/messages.js b/components/i18n/catalogs/ta/messages.js
new file mode 100644
index 0000000..d62be68
--- /dev/null
+++ b/components/i18n/catalogs/ta/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"முடக்கப்பட்டது\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"புதிய பாத்திரத்தை உருவாக்கவும்\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"மற்ற அனைத்து அமர்வுகளிலிருந்தும் வெளியேறவும்\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"பலர் தட்டச்சு செய்கிறார்கள் …\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"கணக்கை உருவாக்க வேண்டும்\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"அமர்வுகள்\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"உங்கள் மொழியைத் தேர்ந்தெடுக்கவும்\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"பாத்திரங்கள்\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"அனுமதிகள்\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ஆஃப்லைன்\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"பயனர்\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"சம்பந்தம்\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"பயனர்பெயர்\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"கடவுச்சொல்\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"உங்களுக்கு விருப்பமான பயனர்பெயரை உள்ளிடவும்.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"அனுமதிகள்\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"பழைய செய்திகளைப் பார்க்கிறது\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"ஒரு குழுவை உருவாக்கவும்\"],\"A9Rhec\":[\"சேனல் பெயர்\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"உரை சேனல்\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"குரல் சேனல்\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"சேனல் விளக்கம்\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"தற்போதைய கடவுச்சொல்\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"ஒன்றுமில்லை\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"உரையாடல்கள்\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ஒரு இணைப்பு அனுப்பப்பட்டது\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"தீம்\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"டெஸ்க்டாப் அறிவிப்புகளை இயக்கவும்.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"உங்கள் தற்போதைய கடவுச்சொல்லை உள்ளிடவும்.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"சேமிக்கப்பட்ட குறிப்புகள்\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"சரிபார்ப்பு மீண்டும் அனுப்பிவும்\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"பல இணைப்புகள் அனுப்பப்பட்டன\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"உங்கள் குறிப்புகளில் சேமிக்கவும்\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ஒலிகள்\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"தனியுரிமை கொள்கை\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"அது வருவதற்கு தயவுசெய்து பத்து நிமிடங்கள் வரை அனுமதிக்கவும்.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"சர்வர் பெயர்\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"மின்னஞ்சல்\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"இந்தச் சேனலில் செய்திகளை அனுப்ப உங்களுக்கு அனுமதி இல்லை.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"குறிப்புகள் மட்டுமே\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"மூல குறியீடு\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"வழங்குவதற்கு செல்லவும்\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"சும்மா\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"உங்கள் மின்னஞ்சல் சரிபார்க்கவும்!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"கடவுச்சொல்லை மீட்டமைக்கவும்\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"அங்கீகாரத்தை அகற்று\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"அமைப்புகள்\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"தகவல் அனுப்பப்பட்டது\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"வாடிக்கையாளர் அமைப்புகள்\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"செய்தி பெறப்பட்டது\"],\"YirHq7\":[\"கருத்து\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"அமைப்புகளைத் திறக்கவும்\"],\"Z5HWHd\":[\"ஆன்\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"தோற்றம்\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"அஃப்\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"கணக்கு முடக்கப்பட்டது\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"அழைப்பாளர்\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"கண்ணுக்கு தெரியாத\"],\"ekfzWq\":[\"பயனர் அமைப்புகள்\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"பதிவு\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"உங்கள் மின்னஞ்சலை உள்ளிடவும்.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"வீடு\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ரோபோ\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"உள்நுழைவுக்கு திரும்பவும்\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"மீண்டும் வருக!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"பயனர் உரையாடலில் இணைந்தார்\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"பங்கேற்பாளர்கள்\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"குழு பெயர்\"],\"mAYvqA\":[\"வணக்கம்!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"இது உங்கள் குறிப்புகளின் தொடக்கம்.\"],\"o+XJ9D\":[\"மாற்றம்\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"நிகழ்நிலை\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"இயல்புநிலை\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"வெளியேறு\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"தொடக்கத்தில் குதிக்கவும்\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"பயனர் உரையாடலை விட்டு வெளியேறினார்\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"என் கணக்கு\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"அனைத்து செய்திகளும்\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"தொந்தரவு செய்யாதீர்\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"நண்பர்கள்\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"தடுக்கப்பட்ட பயனர்\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"சோதனையாளர் சேவையகத்திற்குச் செல்லவும்\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"பற்றி\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"சர்வரின் விளக்கம்\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"மொழி\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"சேனலை உள்ளிடவும்\"],\"wL3cK8\":[\"சமீபத்திய\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"உறுப்பினர்கள்\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"தடைகல்\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"சேவை விதிமுறைகள்\"],\"xpgPPI\":[\"என் போட்ஸ்\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"எனக்கு குறைந்தது 18 வயது என்று உறுதி செய்கிறேன்.\"],\"yDOdwQ\":[\"பயனர் மேலாண்மை\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"உள்நுழைய\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"இது உங்கள் உரையாடலின் ஆரம்பம்.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"பழமையான\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/ta/messages.mjs b/components/i18n/catalogs/ta/messages.mjs
new file mode 100644
index 0000000..54d1a0a
--- /dev/null
+++ b/components/i18n/catalogs/ta/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"முடக்கப்பட்டது\"],\"+YFgJi\":[\"Badges\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"Mark as read\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"புதிய பாத்திரத்தை உருவாக்கவும்\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"மற்ற அனைத்து அமர்வுகளிலிருந்தும் வெளியேறவும்\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"Pick a username that you want people to be able to find you by. This can be changed later in your user settings.\"],\"/qQDwm\":[\"Generating invite…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"Copy message ID\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"Leave group\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"You can report issues and discuss improvements with us directly here.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"Blocked\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"You won't be able to rejoin unless you are re-invited.\"],\"3QuNUr\":[\"பலர் தட்டச்சு செய்கிறார்கள் …\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"கணக்கை உருவாக்க வேண்டும்\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"அமர்வுகள்\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"Nickname\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"உங்கள் மொழியைத் தேர்ந்தெடுக்கவும்\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"Find a community based on your hobbies or interests.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"பாத்திரங்கள்\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"அனுமதிகள்\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ஆஃப்லைன்\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"பயனர்\"],\"7SU2U9\":[\"Copy server ID\"],\"7VpPHA\":[\"Confirm\"],\"7dZnmw\":[\"சம்பந்தம்\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"பயனர்பெயர்\"],\"7vhWI8\":[\"New Password\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"Manage Server\"],\"8FE4JE\":[\"Enable authenticator app\"],\"8VGnad\":[\"Generate Recovery Codes\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"கடவுச்சொல்\"],\"8aTiea\":[\"Customisation\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"உங்களுக்கு விருப்பமான பயனர்பெயரை உள்ளிடவும்.\"],\"9D85wC\":[\"Copy user ID\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"அனுமதிகள்\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"Ban\"],\"9nffag\":[\"பழைய செய்திகளைப் பார்க்கிறது\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"Unblock user\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"ஒரு குழுவை உருவாக்கவும்\"],\"A9Rhec\":[\"சேனல் பெயர்\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"Enter a new password.\"],\"AU7IRi\":[\"உரை சேனல்\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"குரல் சேனல்\"],\"BHsrDx\":[\"Invites\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"Message was sent on another platform\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"View Channel\"],\"CK7kdd\":[\"Clear status\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"சேனல் விளக்கம்\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"Send Messages\"],\"CkIs/i\":[\"Mute Members\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"தற்போதைய கடவுச்சொல்\"],\"DDpDsO\":[\"Invite Code\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"Official Communication\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"Done\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"Message not loaded, click to jump\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"Submit feature suggestion\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"Kick\"],\"EdQY6l\":[\"ஒன்றுமில்லை\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"உரையாடல்கள்\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ஒரு இணைப்பு அனுப்பப்பட்டது\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"Create category\"],\"F1uGNS\":[\"Manage Nicknames\"],\"FEr96N\":[\"தீம்\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"Remove Avatars\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"டெஸ்க்டாப் அறிவிப்புகளை இயக்கவும்.\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"Focus\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"Copy channel ID\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"Mutual Groups\"],\"GhCPk1\":[\"Once it's deleted, there's no going back.\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"உங்கள் தற்போதைய கடவுச்சொல்லை உள்ளிடவும்.\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"Please select a method to authenticate your request.\"],\"HAKBY9\":[\"Upload Files\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"சேமிக்கப்பட்ட குறிப்புகள்\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"சரிபார்ப்பு மீண்டும் அனுப்பிவும்\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"Move Members\"],\"ImOQa9\":[\"Reply\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"பல இணைப்புகள் அனுப்பப்பட்டன\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"Cannot delete account until servers are deleted or transferred\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"Confirm action\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"View older updates\"],\"JUJmXm\":[\"Please confirm this action using the selected method.\"],\"JW8mxK\":[\"உங்கள் குறிப்புகளில் சேமிக்கவும்\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"Welcome to\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"You can also right-click the user icon in the top left, or left click it if you're already home.\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"Delete message\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"Content breaks one or more laws\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"ஒலிகள்\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"Official Server\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"Remove friend\"],\"LcET2C\":[\"தனியுரிமை கொள்கை\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"அது வருவதற்கு தயவுசெய்து பத்து நிமிடங்கள் வரை அனுமதிக்கவும்.\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"சர்வர் பெயர்\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"Leave\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"View currently active bug reports here.\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"Let us know how we can improve our app by giving us feedback.\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"Your account has been verified!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"மின்னஞ்சல்\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"இந்தச் சேனலில் செய்திகளை அனுப்ப உங்களுக்கு அனுமதி இல்லை.\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"Reset\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"Reject friend request\"],\"PSP1MZ\":[\"Role Name\"],\"PWOA0E\":[\"குறிப்புகள் மட்டுமே\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"Send Embeds\"],\"PnzsrT\":[\"மூல குறியீடு\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"வழங்குவதற்கு செல்லவும்\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"சும்மா\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"Edit message\"],\"QqoBlW\":[\"உங்கள் மின்னஞ்சல் சரிபார்க்கவும்!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"கடவுச்சொல்லை மீட்டமைக்கவும்\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"Bug Tracker\"],\"S3bIKF\":[\"Copy ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"Please scan or use the token below in your authenticator app.\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"அங்கீகாரத்தை அகற்று\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"Manage Messages\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"Manage Roles\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"அமைப்புகள்\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"Invite all of your friends, some cool bots, and throw a big party.\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"Change Avatar\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"தகவல் அனுப்பப்பட்டது\"],\"VJScHU\":[\"Reason\"],\"VKsaTi\":[\"Replying to\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"Deafen Members\"],\"VsHxv+\":[\"Copy text\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"Verifying your account…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"External links can be dangerous!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"வாடிக்கையாளர் அமைப்புகள்\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"Authenticator App\"],\"YcVBkL\":[\"செய்தி பெறப்பட்டது\"],\"YirHq7\":[\"கருத்து\"],\"YlFpiA\":[\"Failed to verify!\"],\"Yp+Hi/\":[\"அமைப்புகளைத் திறக்கவும்\"],\"Z5HWHd\":[\"ஆன்\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"Your recovery codes\"],\"aAIQg2\":[\"தோற்றம்\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"You cannot undo this action.\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"அஃப்\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"கணக்கு முடக்கப்பட்டது\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"Read Message History\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"Ban member\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"Manage Permissions\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"அழைப்பாளர்\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"Delete\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"Cancel\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"Create a new bot\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"Invite Others\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"கண்ணுக்கு தெரியாத\"],\"ekfzWq\":[\"பயனர் அமைப்புகள்\"],\"etgedT\":[\"Emojis\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"Manage Customisation\"],\"fTMMeD\":[\"Create invite\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"பதிவு\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"Cancel friend request\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"Assign Roles\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"Report\"],\"gkBHk/\":[\"Create channel\"],\"gkmjYT\":[\"Leave server\"],\"go1IWB\":[\"This user has blocked you.\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"Delete channel\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"உங்கள் மின்னஞ்சலை உள்ளிடவும்.\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"Create\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"வீடு\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"Connect\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"Mention\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"ரோபோ\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"உள்நுழைவுக்கு திரும்பவும்\"],\"jpJ5AL\":[\"Recovery Code\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"Avatar\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"மீண்டும் வருக!\"],\"knjY+b\":[\"You can re-open it later, but it will disappear on both sides.\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"Add friend\"],\"lSGjX7\":[\"பயனர் உரையாடலில் இணைந்தார்\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"பங்கேற்பாளர்கள்\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"குழு பெயர்\"],\"mAYvqA\":[\"வணக்கம்!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"You won't be able to access your account unless you contact support - however, your data will not be deleted.\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"Custom status\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"Mutual Friends\"],\"nbzz1A\":[\"Enter Code\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"இது உங்கள் குறிப்புகளின் தொடக்கம்.\"],\"o+XJ9D\":[\"மாற்றம்\"],\"oB4OOq\":[\"Ban Members\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"நிகழ்நிலை\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"Kick Members\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"இயல்புநிலை\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"வெளியேறு\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"தொடக்கத்தில் குதிக்கவும்\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"பயனர் உரையாடலை விட்டு வெளியேறினார்\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"என் கணக்கு\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"அனைத்து செய்திகளும்\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"1 person reacted\"],\"rxaY+5\":[\"தொந்தரவு செய்யாதீர்\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"Advanced\"],\"t43mBk\":[\"Report server\"],\"tBmnPU\":[\"நண்பர்கள்\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"Manage Webhooks\"],\"tdTuUv\":[\"Block user\"],\"tfDRzk\":[\"Save\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"தடுக்கப்பட்ட பயனர்\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"சோதனையாளர் சேவையகத்திற்குச் செல்லவும்\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"Kick member\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"Delete Role\"],\"utrCh2\":[\"Timeout Members\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"பற்றி\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"சர்வரின் விளக்கம்\"],\"v1kQyJ\":[\"Webhooks\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"Profile\"],\"vJum3e\":[\"Support the project by donating - thank you!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"Video\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"Edit identity\"],\"vXIe7J\":[\"மொழி\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"Please save these to a safe location.\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"Messaging\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"சேனலை உள்ளிடவும்\"],\"wL3cK8\":[\"சமீபத்திய\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"உறுப்பினர்கள்\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"Masquerade\"],\"xDAtGP\":[\"Message\"],\"xGVfLh\":[\"Continue\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"தடைகல்\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"சேவை விதிமுறைகள்\"],\"xpgPPI\":[\"என் போட்ஸ்\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"Accept friend request\"],\"y1eoq1\":[\"Copy link\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"எனக்கு குறைந்தது 18 வயது என்று உறுதி செய்கிறேன்.\"],\"yDOdwQ\":[\"பயனர் மேலாண்மை\"],\"yIBLq8\":[\"Speak\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"Close\"],\"z0hW8A\":[\"View Recovery Codes\"],\"z0t9bb\":[\"உள்நுழைய\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"OK\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"இது உங்கள் உரையாடலின் ஆரம்பம்.\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"பழமையான\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/ta/messages.po b/components/i18n/catalogs/ta/messages.po
new file mode 100644
index 0000000..0b722c5
--- /dev/null
+++ b/components/i18n/catalogs/ta/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: ta\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "பற்றி"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "அனைத்து செய்திகளும்"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "தோற்றம்"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr ""
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "தடைகல்"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "தடுக்கப்பட்ட பயனர்"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "ரோபோ"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "மாற்றம்"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr ""
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "சேனல் விளக்கம்"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "சேனல் பெயர்"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "பங்கேற்பாளர்கள்"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "உங்கள் மின்னஞ்சல் சரிபார்க்கவும்!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "வாடிக்கையாளர் அமைப்புகள்"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "உரையாடல்கள்"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "ஒரு குழுவை உருவாக்கவும்"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr ""
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "புதிய பாத்திரத்தை உருவாக்கவும்"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "கணக்கை உருவாக்க வேண்டும்"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "தற்போதைய கடவுச்சொல்"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "இயல்புநிலை"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "கணக்கு முடக்கப்பட்டது"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "தொந்தரவு செய்யாதீர்"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "மின்னஞ்சல்"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "டெஸ்க்டாப் அறிவிப்புகளை இயக்கவும்."
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "சேனலை உள்ளிடவும்"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "உங்கள் தற்போதைய கடவுச்சொல்லை உள்ளிடவும்."
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "உங்களுக்கு விருப்பமான பயனர்பெயரை உள்ளிடவும்."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "கருத்து"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "நண்பர்கள்"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr ""
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "உள்நுழைவுக்கு திரும்பவும்"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "சோதனையாளர் சேவையகத்திற்குச் செல்லவும்"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "குழு பெயர்"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "வணக்கம்!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "வீடு"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "எனக்கு குறைந்தது 18 வயது என்று உறுதி செய்கிறேன்."
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "சும்மா"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "கண்ணுக்கு தெரியாத"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "அழைப்பாளர்"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "வழங்குவதற்கு செல்லவும்"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "தொடக்கத்தில் குதிக்கவும்"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "மொழி"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "சமீபத்திய"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr ""
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "வெளியேறு"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "மற்ற அனைத்து அமர்வுகளிலிருந்தும் வெளியேறவும்"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "உள்நுழைய"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "உறுப்பினர்கள்"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "குறிப்புகள் மட்டுமே"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "செய்தி பெறப்பட்டது"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "தகவல் அனுப்பப்பட்டது"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "முடக்கப்பட்டது"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr ""
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "என் கணக்கு"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "என் போட்ஸ்"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "ஒன்றுமில்லை"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "அறிவிப்புகள்"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "அஃப்"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "ஆஃப்லைன்"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "பழமையான"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "ஆன்"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "நிகழ்நிலை"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "அமைப்புகளைத் திறக்கவும்"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "அனுமதிகள்"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "கடவுச்சொல்"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "அனுமதிகள்"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "உங்கள் மின்னஞ்சலை உள்ளிடவும்."
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "தனியுரிமை கொள்கை"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "பதிவு"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "சம்பந்தம்"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "அங்கீகாரத்தை அகற்று"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "சரிபார்ப்பு மீண்டும் அனுப்பிவும்"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr ""
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "கடவுச்சொல்லை மீட்டமைக்கவும்"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "பாத்திரங்கள்"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "உங்கள் குறிப்புகளில் சேமிக்கவும்"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "சேமிக்கப்பட்ட குறிப்புகள்"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "உங்கள் மொழியைத் தேர்ந்தெடுக்கவும்"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "ஒரு இணைப்பு அனுப்பப்பட்டது"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "பல இணைப்புகள் அனுப்பப்பட்டன"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "சர்வரின் விளக்கம்"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "சர்வர் பெயர்"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "அமர்வுகள்"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "அமைப்புகள்"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "பலர் தட்டச்சு செய்கிறார்கள் …"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "ஒலிகள்"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "மூல குறியீடு"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "சேவை விதிமுறைகள்"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "உரை சேனல்"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "தீம்"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "இது உங்கள் உரையாடலின் ஆரம்பம்."
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "இது உங்கள் குறிப்புகளின் தொடக்கம்."
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr ""
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr ""
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "பயனர்"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "பயனர் உரையாடலில் இணைந்தார்"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "பயனர் உரையாடலை விட்டு வெளியேறினார்"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "பயனர் மேலாண்மை"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "பயனர் அமைப்புகள்"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "பயனர்பெயர்"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "பழைய செய்திகளைப் பார்க்கிறது"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "குரல் சேனல்"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "அது வருவதற்கு தயவுசெய்து பத்து நிமிடங்கள் வரை அனுமதிக்கவும்."
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "மீண்டும் வருக!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr ""
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr ""
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "இந்தச் சேனலில் செய்திகளை அனுப்ப உங்களுக்கு அனுமதி இல்லை."
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/th/messages.js b/components/i18n/catalogs/th/messages.js
new file mode 100644
index 0000000..1990f41
--- /dev/null
+++ b/components/i18n/catalogs/th/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"ปิดการแจ้งเตือน\"],\"+YFgJi\":[\"ป้าย\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"ทำเครื่องหมายว่าอ่านแล้ว\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"สร้างบทบาทใหม่\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"ออกจากระบบในเซสชันอื่นๆ ทั้งหมด\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"เลือกชื่อผู้ใช้ของคุณเพื่อให้ผู้อื่นสามารถค้นหาคุณได้ คุณสามารถเปลี่ยนแปลงได้ภายหลังในการตั้งค่า\"],\"/qQDwm\":[\"กำลังสร้างคำเชิญ…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"รายงานข้อความ\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"ส่งข้อเสนอแนะ\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"คัดลอก ID ข้อความ\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"ออกจากกลุ่ม\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"รายงานปัญหาหรือพูดคุยกับพวกเราโดยตรงได้ที่นี่\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ถูกบล็อค\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"คุณจะไม่สามารถเข้าร่วมได้อีก เว้นแต่คุณจะได้รับเชิญอีกครั้ง\"],\"3QuNUr\":[\"ผู้ใช้หลายคนกำลังพิมพ์…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"เป็นเพื่อนกับผู้ใช้นี้แล้ว\"],\"3T8ziB\":[\"สร้างบัญชี\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"เซสชัน\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"ชื่อเล่น\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"เลือกภาษาของคุณ\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"หาชุมชนที่เหมาะสมกับงานอดิเรกหรือความสนใจของคุณ\"],\"572q5a\":[\"รายงานผู้ใช้\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"ทำเครื่องหมายว่ายังไม่ได้อ่าน\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"เปลี่ยนชื่อเล่น\"],\"5dJK4M\":[\"บทบาท\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"ภาพรวม\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ออฟไลน์\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"ผู้ใช้\"],\"7SU2U9\":[\"คัดลอก ID เซิร์ฟเวอร์\"],\"7VpPHA\":[\"ยืนยัน\"],\"7dZnmw\":[\"เกี่ยวข้อง\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ชื่อผู้ใช้\"],\"7vhWI8\":[\"รหัสผ่านใหม่\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"จัดการเซิร์ฟเวอร์\"],\"8FE4JE\":[\"เปิดใช้แอพยืนยันตัวตน\"],\"8VGnad\":[\"สร้างรหัสกู้คืน\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"รหัสผ่าน\"],\"8aTiea\":[\"การปรับแต่ง\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"กรอกชื่อผู้ใช้ของคุณ\"],\"9D85wC\":[\"คัดลอก ID ผู้ใช้\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"สิทธิ์\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"แบน\"],\"9nffag\":[\"คุณกำลังดูข้อความเก่า\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ปลดบล็อกผู้ใช้\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"สร้างกลุ่ม\"],\"A9Rhec\":[\"ชื่อช่อง\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"ใส่รหัสผ่านใหม่\"],\"AU7IRi\":[\"ช่องข้อความ\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ช่องเสียง\"],\"BHsrDx\":[\"คำเชิญ\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"ข้อความถูกส่งจากแพลตฟอร์มอื่น\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"ดูช่อง\"],\"CK7kdd\":[\"ล้างสถานะ\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"คำอธิบายช่อง\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ส่งข้อความ\"],\"CkIs/i\":[\"ปิดเสียงผู้ใช้อื่น\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"รหัสผ่านปัจจุบัน\"],\"DDpDsO\":[\"รหัสเชิญ\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"ช่องทางติดต่ออย่างเป็นทางการ\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"เรียบร้อย\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"ข้อความไม่ได้โหลด คลิกที่นี่เพื่อกระโดด\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ส่งข้อเสนอแนะคุณสมบัติ\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"เตะ\"],\"EdQY6l\":[\"ไม่มี\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"บทสนทนา\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ส่งไฟล์แนบ\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"สร้างหมวดหมู่\"],\"F1uGNS\":[\"จัดการชื่อเล่น\"],\"FEr96N\":[\"ธีม\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"ลบภาพโปรไฟล์\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"เปิดใช้งานการแจ้งเตือนบนเดสก์ท็อป\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"โฟกัส\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"คัดลอก ID ช่อง\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"กลุ่มร่วมกัน\"],\"GhCPk1\":[\"เมื่อลบแล้ว คุณเปลี่ยนใจอีกไม่ได้นะ\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"กรอกรหัสผ่านปัจจุบันของคุณ\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"กรุณาเลือกวิธีการยืนยันตัวตน\"],\"HAKBY9\":[\"อัพโหลดไฟล์\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"โน้ตที่บันทึกไว้\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"ส่งการยืนยันอีกครั้ง\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"ย้ายผู้ใช้อื่น\"],\"ImOQa9\":[\"ตอบกลับ\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ส่งไฟล์แนบหลายไฟล์\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"ไม่สามารถลบบัญชีได้จนกว่าจะลบหรือโอนเซิร์ฟเวอร์\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"ยืนยันการกระทำ\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"ดูอัพเดตเก่า\"],\"JUJmXm\":[\"กรุณายืนยันตัวตนด้วยวิธีการที่เลือกไป\"],\"JW8mxK\":[\"บันทึกลงในโน๊ตของคุณ\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"ยินดีต้อนรับสู่\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"นอกจากนี้คุณยังสามารถเปิดหน้าตั้งค่าได้ด้วยการคลิกขวาที่ไอคอนผู้ใช้มุมซ้ายบน หรือคลิกซ้ายหากอยู่หน้าจอหลัก\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"ลบข้อความ\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"เนื้อหาผิดกฎหมาย\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"เสียง\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"เซิร์ฟเวอร์ทางการ\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"ลบเพื่อน\"],\"LcET2C\":[\"นโยบายความเป็นส่วนตัว\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"เราได้ส่งอีเมล์ยืนยันแล้ว กรุณารออีเมล์ไม่เกิน 10 นาที\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"ชื่อเซิร์ฟเวอร์\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"ออก\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"ดูรายงานบั๊กในปัจจุบันที่นี่\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"อยากให้เราปรับปรุง Revolt ยังไง ก็ส่งข้อเสนอแนะทางนี้ได้เลย\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"บัญชีของคุณได้รับการยืนยันแล้ว!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"อีเมล\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"คุณไม่มีสิทธิ์ที่จะส่งข้อความในช่องนี้\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"รีเซ็ต\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"ปฏิเสธคำขอเป็นเพื่อน\"],\"PSP1MZ\":[\"ชื่อบทบาท\"],\"PWOA0E\":[\"เฉพาะการกล่าวถึง\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ส่งลิงก์ฝัง\"],\"PnzsrT\":[\"ซอร์สโค้ด\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"กระโดดไปข้อความปัจจุบัน\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"ไม่อยู่\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"แก้ไขข้อความ\"],\"QqoBlW\":[\"โปรดตรวจสอบอีเมล์ของคุณ!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"ตั้งรหัสผ่านใหม่\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"ตัวติดตามบั๊ก\"],\"S3bIKF\":[\"คัดลอก ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"กรุณาสแกนหรือพิมพ์ข้อความโทเคนข้างล่างในแอพยืนยันตัวตนของคุณ\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"ลบตัวยืนยัน\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"จัดการข้อความ\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"จัดการบทบาท\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"การตั้งค่า\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"ชวนเพื่อนๆ ของคุณหรือบอทเจ๋งๆ แล้วปาร์ตี้โลด\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"เปลี่ยนภาพโปรไฟล์\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"ส่งข้อความ\"],\"VJScHU\":[\"เหตุผล\"],\"VKsaTi\":[\"ตอบกลับถึง\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"ปิดการได้ยินผู้ใช้อื่น\"],\"VsHxv+\":[\"คัดลอกข้อความ\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"กำลังยืนยันบัญชี…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"ลิงก์ภายนอกอาจเป็นอันตรายต่อคุณ!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"การตั้งค่าแอป\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"แอพยืนยันตัวตน\"],\"YcVBkL\":[\"ได้รับข้อความ\"],\"YirHq7\":[\"ข้อเสนอแนะ\"],\"YlFpiA\":[\"ไม่สามารถยืนยันได้!\"],\"Yp+Hi/\":[\"เปิดการตั้งค่า\"],\"Z5HWHd\":[\"เปิด\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"รหัสกู้คืนของคุณ\"],\"aAIQg2\":[\"การแสดงผล\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"คุณยกเลิกการกระทำนี้ไม่ได้\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"ปิด\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"ปิดการใช้งานบัญชี\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"อ่านประวัติข้อความ\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"แบนสมาชิก\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"จัดการสิทธิ์\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"ผู้เชิญ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"ลบ\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"ยกเลิก\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"สร้างบอทใหม่\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"เชิญคนอื่น\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"ล่องหน\"],\"ekfzWq\":[\"การตั้งค่าผู้ใช้\"],\"etgedT\":[\"อีโมจิ\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"จัดการการปรับแต่ง\"],\"fTMMeD\":[\"สร้างคำเชิญ\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"สมัครสมาชิก\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"ยกเลิกคำขอ\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ตั้งบทบาท\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"รายงาน\"],\"gkBHk/\":[\"สร้างช่อง\"],\"gkmjYT\":[\"ออกจากเซิร์ฟเวอร์\"],\"go1IWB\":[\"ผู้ใช้นี้บล็อกคุณ\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"ลบช่อง\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"กรอกอีเมลของคุณ\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"สร้าง\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"หน้าหลัก\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"เชื่อมต่อ\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"กล่าวถึง\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"บอท\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"กลับไปหน้าเข้าสู่ระบบ\"],\"jpJ5AL\":[\"รหัสกู้คืน\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"รูปโปรไฟล์\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"ยินดีต้อนรับ!\"],\"knjY+b\":[\"คุณสามารถเปิดใหม่ได้ในภายหลัง แต่ข้อความทั้งหมดของทั้งสองฝ่ายจะหายไป\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"เพิ่มเพื่อน\"],\"lSGjX7\":[\"ผู้ใช้เข้าร่วมการโทร\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"ช่อง\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"ชื่อกลุ่ม\"],\"mAYvqA\":[\"สวัสดี!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"คุณจะไม่สามารถใช้บัญชีได้จนกว่าคุณจะติดต่อฝ่ายสนับสนุน - อย่างไรก็ตาม ข้อมูลของคุณจะไม่ถูกลบ\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"กำหนดสถานะเอง\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"เพื่อนร่วมกัน\"],\"nbzz1A\":[\"ใส่รหัส\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"นี่คือจุดเริ่มต้นของโน้ตของคุณ\"],\"o+XJ9D\":[\"เปลี่ยน\"],\"oB4OOq\":[\"แบนสมาชิก\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"ออนไลน์\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"เตะสมาชิก\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"ค่าตั้งต้น\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"ออกจากระบบ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"กระโดดไปจุดเริ่มต้น\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"ผู้ใช้ออกจากการโทร\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"บัญชีของฉัน\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"ข้อความทั้งหมด\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"มีคนตอบสนองหนึ่งคน\"],\"rxaY+5\":[\"ห้ามรบกวน\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"ขั้นสูง\"],\"t43mBk\":[\"รายงานเซิร์ฟเวอร์\"],\"tBmnPU\":[\"เพื่อน\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"จัดการเว็บฮุก\"],\"tdTuUv\":[\"บล็อกผู้ใช้\"],\"tfDRzk\":[\"บันทึก\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ผู้ใช้ที่ถูกบล็อก\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"ไปยังเซิร์ฟเวอร์ผู้ทดสอบ\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"เตะสมาชิก\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"ลบบทบาท\"],\"utrCh2\":[\"หยุดสมาชิกไว้ชั่วคราว\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"เกี่ยวกับ\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"คำอธิบายเซิร์ฟเวอร์\"],\"v1kQyJ\":[\"เว็บฮุก\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"ประวัติโดยย่อ\"],\"vJum3e\":[\"ถ้าอยากสนับสนุนให้ Revolt ก็บริจาคมาได้เลย ขอบคุณนะ!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ใช้วีดิโอ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"แก้ไขตัวตน\"],\"vXIe7J\":[\"ภาษา\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"กรุณาเก็บไว้ในที่ปลอดภัย\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"ส่งข้อความ\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"เข้าช่อง\"],\"wL3cK8\":[\"ล่าสุด\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"สมาชิก\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ใช้นามแฝง\"],\"xDAtGP\":[\"ข้อความ\"],\"xGVfLh\":[\"ดำเนินการต่อ\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"แบน\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"ข้อกำหนดในการให้บริการ\"],\"xpgPPI\":[\"บอทของฉัน\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"ยอมรับคำขอเป็นเพื่อน\"],\"y1eoq1\":[\"คัดลอกลิงก์\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"ฉันยืนยันว่าฉันอายุอย่างน้อย 18 ปี\"],\"yDOdwQ\":[\"การจัดการผู้ใช้\"],\"yIBLq8\":[\"พูด\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"ปิด\"],\"z0hW8A\":[\"ดูรหัสกู้คืน\"],\"z0t9bb\":[\"เข้าสู่ระบบ\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"ตกลง\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"นี่คือจุดเริ่มต้นของการสนทนาของคุณ\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"เก่าสุด\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}")};
\ No newline at end of file
diff --git a/components/i18n/catalogs/th/messages.mjs b/components/i18n/catalogs/th/messages.mjs
new file mode 100644
index 0000000..017d5df
--- /dev/null
+++ b/components/i18n/catalogs/th/messages.mjs
@@ -0,0 +1 @@
+/*eslint-disable*/export const messages=JSON.parse("{\"+IJm1Z\":[\"ปิดการแจ้งเตือน\"],\"+YFgJi\":[\"ป้าย\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"ทำเครื่องหมายว่าอ่านแล้ว\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"สร้างบทบาทใหม่\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"ออกจากระบบในเซสชันอื่นๆ ทั้งหมด\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"เลือกชื่อผู้ใช้ของคุณเพื่อให้ผู้อื่นสามารถค้นหาคุณได้ คุณสามารถเปลี่ยนแปลงได้ภายหลังในการตั้งค่า\"],\"/qQDwm\":[\"กำลังสร้างคำเชิญ…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"รายงานข้อความ\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"ส่งข้อเสนอแนะ\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"คัดลอก ID ข้อความ\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"ออกจากกลุ่ม\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"รายงานปัญหาหรือพูดคุยกับพวกเราโดยตรงได้ที่นี่\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"ถูกบล็อค\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"คุณจะไม่สามารถเข้าร่วมได้อีก เว้นแต่คุณจะได้รับเชิญอีกครั้ง\"],\"3QuNUr\":[\"ผู้ใช้หลายคนกำลังพิมพ์…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"เป็นเพื่อนกับผู้ใช้นี้แล้ว\"],\"3T8ziB\":[\"สร้างบัญชี\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"เซสชัน\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"ชื่อเล่น\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"เลือกภาษาของคุณ\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"หาชุมชนที่เหมาะสมกับงานอดิเรกหรือความสนใจของคุณ\"],\"572q5a\":[\"รายงานผู้ใช้\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"ทำเครื่องหมายว่ายังไม่ได้อ่าน\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"เปลี่ยนชื่อเล่น\"],\"5dJK4M\":[\"บทบาท\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"ภาพรวม\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"ออฟไลน์\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<0/> updated the group description\"],\"7PzzBU\":[\"ผู้ใช้\"],\"7SU2U9\":[\"คัดลอก ID เซิร์ฟเวอร์\"],\"7VpPHA\":[\"ยืนยัน\"],\"7dZnmw\":[\"เกี่ยวข้อง\"],\"7fepVf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" blocked message\"],\"other\":[\"#\",\" blocked messages\"]}]],\"7sNhEz\":[\"ชื่อผู้ใช้\"],\"7vhWI8\":[\"รหัสผ่านใหม่\"],\"7z6mLt\":[\"Suggest new Stoat features on GitHub discussions.\"],\"8AY507\":[\"จัดการเซิร์ฟเวอร์\"],\"8FE4JE\":[\"เปิดใช้แอพยืนยันตัวตน\"],\"8VGnad\":[\"สร้างรหัสกู้คืน\"],\"8Vns2b\":[\"Server Icon\"],\"8XsV2J\":[\"Retry sending\"],\"8ZmOn9\":[\"Sync appearance options, such as chosen emoji pack and message density.\"],\"8ZsakT\":[\"รหัสผ่าน\"],\"8aTiea\":[\"การปรับแต่ง\"],\"8gE33P\":[\"12 hours\"],\"8u3L/H\":[\"กรอกชื่อผู้ใช้ของคุณ\"],\"9D85wC\":[\"คัดลอก ID ผู้ใช้\"],\"9PefQY\":[[\"usernames\"],\" reacted\"],\"9PqD/J\":[\"Reset Token\"],\"9aXylH\":[\"Your user has already been created? Try logging in again or refreshing the app.\"],\"9cDpsw\":[\"สิทธิ์\"],\"9dDhA/\":[\"Create and edit webhooks\"],\"9kwf8d\":[\"แบน\"],\"9nffag\":[\"คุณกำลังดูข้อความเก่า\"],\"9npOH9\":[\"Open file\"],\"9wZI9E\":[\"ปลดบล็อกผู้ใช้\"],\"9zb2WA\":[\"Connecting\"],\"A1AdWg\":[\"สร้างกลุ่ม\"],\"A9Rhec\":[\"ชื่อช่อง\"],\"ADVQ46\":[\"Log In\"],\"ALmSzh\":[\"ใส่รหัสผ่านใหม่\"],\"AU7IRi\":[\"ช่องข้อความ\"],\"Ab4Bao\":[\"Pin message\"],\"B5Ha0r\":[\"Your role ranking is too low to take this action.\"],\"B7ik4i\":[\"Instead of closing, Stoat will hide in your tray.\"],\"BBqGS9\":[\"Desktop\"],\"BGw+Qc\":[\"ช่องเสียง\"],\"BHsrDx\":[\"คำเชิญ\"],\"BOsWyI\":[[\"0\"],\" was kicked\"],\"BakXLg\":[\"Reconnecting\"],\"BdNgHC\":[\"You are banned from this server.\"],\"Bf272I\":[\"Users will be asked to confirm their age before joining this channel.\"],\"Bgk5D1\":[\"ข้อความถูกส่งจากแพลตฟอร์มอื่น\"],\"Btd5Px\":[\"American (MM/DD/YYYY)\"],\"BusuTg\":[\"Go to the Stoat Lounge\"],\"ByG9SL\":[\"Are you sure you want to go to \"],\"C0JYiF\":[\"Edit and delete channel\"],\"CBd8nH\":[\"ดูช่อง\"],\"CK7kdd\":[\"ล้างสถานะ\"],\"CLcA06\":[\"This group is too large, you can have up to \",[\"0\"],\" users.\"],\"CQKBqI\":[\"New to the server\"],\"CS7QO7\":[\"คำอธิบายช่อง\"],\"CWFzr4\":[\"Scams or fraud\"],\"CWe7wB\":[\"Changelog\"],\"CXs+oi\":[\"Pardon User\"],\"CaQg4F\":[\"You've been signed out of Stoat!\"],\"CeIodI\":[\"ส่งข้อความ\"],\"CkIs/i\":[\"ปิดเสียงผู้ใช้อื่น\"],\"CsekCi\":[\"Normal\"],\"Cvctq3\":[\"Add new members to the group\"],\"CxcGIF\":[\"Something went wrong! \",[\"error\"]],\"CyRtEa\":[[\"0\"],\" pinned a message\"],\"D+NlUC\":[\"System\"],\"D/FMH3\":[\"Create and edit server roles\"],\"DCKkhU\":[\"รหัสผ่านปัจจุบัน\"],\"DDpDsO\":[\"รหัสเชิญ\"],\"DEPqYw\":[\"You've been invited to join this server.<0/>Would you like to join?\"],\"DF+Ypt\":[\"Remove all reactions\"],\"DIqs2u\":[\"ช่องทางติดต่ออย่างเป็นทางการ\"],\"DNLekL\":[\"Send messages in channel\"],\"DPfwMq\":[\"เรียบร้อย\"],\"DUHw+c\":[\"Copy Invite URL\"],\"DZW4ic\":[\"You can't have more than \",[\"0\"],\" channels on this server.\"],\"Dbhas/\":[\"This channel is about...\"],\"De3gk3\":[\"Traditional (DD/MM/YYYY)\"],\"DgDwdJ\":[\"Message Size\"],\"DlxO+8\":[\"Deafen lower-ranking members in voice call\"],\"DrJ0Om\":[\"Set your status\"],\"DtwpxX\":[[\"0\"],\"'s roles\"],\"Dvbuou\":[\"ข้อความไม่ได้โหลด คลิกที่นี่เพื่อกระโดด\"],\"E/QGRL\":[\"Disabled\"],\"E9SV2w\":[\"ส่งข้อเสนอแนะคุณสมบัติ\"],\"ENCIQz\":[\"Copy Link\"],\"ENTWKu\":[\"Grants \",[\"0\"],\" permissions and denies \",[\"1\"],\" permissions\"],\"EWPtMO\":[\"Code\"],\"EY4XVW\":[\"เตะ\"],\"EdQY6l\":[\"ไม่มี\"],\"ElnSyM\":[\"Discover Stoat\"],\"EnJuK0\":[\"บทสนทนา\"],\"EojDHM\":[\"Change identity on \",[\"0\"]],\"EqWYax\":[\"ส่งไฟล์แนบ\"],\"EwnHnJ\":[\"Receive notifications while the app is open and in the background.\"],\"EwoMtl\":[\"สร้างหมวดหมู่\"],\"F1uGNS\":[\"จัดการชื่อเล่น\"],\"FEr96N\":[\"ธีม\"],\"FHt0ec\":[\"You have this user blocked.\"],\"FKU8Yv\":[\"Reset Recovery Codes\"],\"FgAQOk\":[\"Keep as is\"],\"FgK7kh\":[\"<0/> updated the group icon \"],\"FgKhxB\":[\"ลบภาพโปรไฟล์\"],\"FgSBCL\":[\"For 15 minutes\"],\"FluZmp\":[\"เปิดใช้งานการแจ้งเตือนบนเดสก์ท็อป\"],\"FmOTFK\":[\"(changes are being saved…)\"],\"FmwES3\":[\"Ban Member\"],\"Fsd1Wl\":[\"โฟกัส\"],\"FuoLq+\":[\"Ban lower-ranking members from the server\"],\"G0jqRb\":[\"Able to speak in voice call\"],\"G3nfo8\":[\"Logs you out of all sessions except this device.\"],\"G3zom+\":[\"Rename Session\"],\"G744eD\":[\"คัดลอก ID ช่อง\"],\"GAaBUQ\":[\"Mention everyone and online members inside the server\"],\"GMy0r8\":[\"Here is your new invite code: <0>\",[\"0\"],\"0>\"],\"GUw7IE\":[\"Create a group or server\"],\"GVSvRw\":[[\"0\"],\" was added by \",[\"1\"]],\"GWDMZY\":[\"Add friends to group\"],\"GXKMbZ\":[\"กลุ่มร่วมกัน\"],\"GhCPk1\":[\"เมื่อลบแล้ว คุณเปลี่ยนใจอีกไม่ได้นะ\"],\"GrnHKn\":[\"irrelevant joke badge 1\"],\"H/BGLa\":[\"กรอกรหัสผ่านปัจจุบันของคุณ\"],\"H4IzoH\":[[\"0\"],\" unpinned a message\"],\"H7/Osf\":[\"กรุณาเลือกวิธีการยืนยันตัวตน\"],\"HAKBY9\":[\"อัพโหลดไฟล์\"],\"HJGZCZ\":[\"Server Banner\"],\"HPEWo/\":[\"โน้ตที่บันทึกไว้\"],\"HSPrFO\":[\"By creating this bot, you agree to the <0>Acceptable Use Policy0>.\"],\"HT2UjS\":[\"ส่งการยืนยันอีกครั้ง\"],\"HWAICJ\":[\"Open \",[\"0\"]],\"HmsJGM\":[\"Use a code or invite link\"],\"Hq0bRw\":[\"Display & Text\"],\"HrhuFQ\":[\"Are you sure you want to delete this?\"],\"Hz0fNl\":[\"<0/> left the server\"],\"I/D357\":[\"Mention Roles\"],\"I1V8ji\":[\"Spam or similar platform abuse\"],\"I6KMzG\":[\"User Banned\"],\"I6bw/h\":[\"Ban User\"],\"IC4qe8\":[\"Fruit Salad\"],\"ICZy08\":[\"Uncaught Stoat error: \",[\"0\"]],\"IDeApW\":[\"Unmark this channel as mature?\"],\"IIeRiI\":[\"Delete Server\"],\"IVSi8w\":[\"Drugs or illegal goods\"],\"IW5PBo\":[\"Copy Token\"],\"IZQ1Nc\":[\"Read past messages sent in channel\"],\"IcMmvx\":[\"<0/> has been banned from the server\"],\"Ihqqm5\":[\"Allow others to add your bot to their servers from Discover\"],\"IkN4uI\":[\"ย้ายผู้ใช้อื่น\"],\"ImOQa9\":[\"ตอบกลับ\"],\"IoAuJG\":[\"Sending...\"],\"ItAGEw\":[\"ส่งไฟล์แนบหลายไฟล์\"],\"Iv8J9I\":[\"You cannot give yourself missing permissions.\"],\"IvkbIT\":[\"Read More\"],\"Ixp6O/\":[\"ไม่สามารถลบบัญชีได้จนกว่าจะลบหรือโอนเซิร์ฟเวอร์\"],\"J/BJve\":[\"By creating this server, you agree to the <0>Acceptable Use Policy0>.\"],\"J8MJJ1\":[\"This message is empty and has not been sent.\"],\"JCzHqi\":[\"ยืนยันการกระทำ\"],\"JNzhsW\":[\"Hear other people and see their video\"],\"JPDHTs\":[\"Monospace Font\"],\"JQGQUd\":[\"ดูอัพเดตเก่า\"],\"JUJmXm\":[\"กรุณายืนยันตัวตนด้วยวิธีการที่เลือกไป\"],\"JW8mxK\":[\"บันทึกลงในโน๊ตของคุณ\"],\"Jfmexf\":[\"Registered since <0/>\"],\"JnlnD5\":[\"Nobody here right now!\"],\"Jt1WNL\":[\"ยินดีต้อนรับสู่\"],\"K1Tm4u\":[\"You can't have more than \",[\"0\"],\" emojis on this server.\"],\"K26Q16\":[\"นอกจากนี้คุณยังสามารถเปิดหน้าตั้งค่าได้ด้วยการคลิกขวาที่ไอคอนผู้ใช้มุมซ้ายบน หรือคลิกซ้ายหากอยู่หน้าจอหลัก\"],\"K4wEpA\":[\"<0>Be careful!0><1/>This is not the same as the link that was displayed:\"],\"KAXSwC\":[\"Voice\"],\"KDfTdX\":[\"ลบข้อความ\"],\"KETz5m\":[\"Change own nickname\"],\"KQ8CVu\":[\"เนื้อหาผิดกฎหมาย\"],\"KQTmt7\":[\"This password has previously appeared in security leaks, please use another password.\"],\"KSSL9f\":[\"Banner\"],\"KVzYER\":[\"Edit Identity\"],\"Ka0XKu\":[\"Using default speaker\"],\"Ka7c9y\":[\"Your message is too long, please remove some characters and try again.\"],\"Kgh8vb\":[\"Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages.\"],\"KtYF+t\":[\"เสียง\"],\"KyzmqC\":[\"Join call\"],\"L+22AW\":[\"เซิร์ฟเวอร์ทางการ\"],\"LD81I0\":[\"Don't ask me again for \"],\"LUzmzU\":[\"Show corrections and suggestions as you type.\"],\"LW1RJD\":[\"You cannot remove yourself.\"],\"LZlsoq\":[\"ลบเพื่อน\"],\"LcET2C\":[\"นโยบายความเป็นส่วนตัว\"],\"LsDQt2\":[\"Channel Settings\"],\"M1Ywzz\":[\"Start with Computer\"],\"MD2O7X\":[\"Profile Bio\"],\"MDnT0x\":[\"Tell us what's wrong with this message\"],\"MHFv7m\":[\"เราได้ส่งอีเมล์ยืนยันแล้ว กรุณารออีเมล์ไม่เกิน 10 นาที\"],\"MKFJJj\":[\"This has already been sent.\"],\"MRZxAn\":[\"Edited\"],\"MXw7Fr\":[\"ชื่อเซิร์ฟเวอร์\"],\"MfK0xw\":[\"See what we're currently working on.\"],\"Mj6oCJ\":[[\"0\"],\" is typing…\"],\"MlE0za\":[\"Don't notify others that you've left\"],\"MtknRQ\":[\"Browser Echo Cancellation\"],\"Mv8CyJ\":[\"ออก\"],\"MxbyFq\":[\"Are you sure you want to go to <0>\",[\"0\"],\"0>?\"],\"MyjAbr\":[\"Resend\"],\"N40H+G\":[\"All\"],\"NEmwgu\":[\"Edit the server's information and settings\"],\"NFe4b1\":[\"Would you like to create a new group or server?\"],\"NG6+qd\":[\"ดูรายงานบั๊กในปัจจุบันที่นี่\"],\"NG98W1\":[\"Kick lower-ranking members from the server\"],\"Nar+Yz\":[\"Missing permission\"],\"NbRKyS\":[\"Enter your current password...\"],\"NcHUaT\":[\"New to Stoat\"],\"NdK37b\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Member\"],\"other\":[\"#\",\" Members\"]}]],\"NdQG5C\":[\"อยากให้เราปรับปรุง Revolt ยังไง ก็ส่งข้อเสนอแนะทางนี้ได้เลย\"],\"NexPDe\":[\"<0/> has been added by <1/>\"],\"Ng063n\":[\"Donate\"],\"Nqw9Fh\":[\"Trending GIFs\"],\"Nwo3hz\":[\"<0/> started a call\"],\"O/gffD\":[\"บัญชีของคุณได้รับการยืนยันแล้ว!\"],\"O/hGeo\":[\"Change login password\"],\"O3oNi5\":[\"อีเมล\"],\"O4tIqG\":[\"Create Bot\"],\"O8cm2i\":[\"<0/> left the group\"],\"O95Dg8\":[\"Let Stoat use its own custom titlebar.\"],\"OEEQKT\":[\"Good\"],\"OFYCau\":[[\"0\"],\" renamed the channel\"],\"ONcudw\":[\"Change login email\"],\"OUh/U1\":[\"Send attachments to chat\"],\"OVDb+J\":[\"Create a channel before inviting others!\"],\"OX0KxY\":[\"คุณไม่มีสิทธิ์ที่จะส่งข้อความในช่องนี้\"],\"Oa/lY3\":[\"Edit channel-specific role and default permissions\"],\"OcdmE9\":[\"Whether other users can edit these settings\"],\"OeE+Fx\":[[\"0\"],\" was banned\"],\"OfhWJH\":[\"รีเซ็ต\"],\"OrpsFP\":[\"Remove reaction\"],\"P25zlZ\":[\"Setup recovery codes\"],\"P6F38F\":[\"Subscriptions\"],\"PB9oxZ\":[\"Mute lower-ranking members in voice call\"],\"PNsAfL\":[\"ปฏิเสธคำขอเป็นเพื่อน\"],\"PSP1MZ\":[\"ชื่อบทบาท\"],\"PWOA0E\":[\"เฉพาะการกล่าวถึง\"],\"PchgXN\":[\"Created <0/>\"],\"PkFCdv\":[\"ส่งลิงก์ฝัง\"],\"PnzsrT\":[\"ซอร์สโค้ด\"],\"PuK7a+\":[\"View members\"],\"Q3ryt9\":[\"Create server emoji\"],\"Q7hk79\":[\"Copy category ID\"],\"Q7zdlb\":[\"Unmute Channel\"],\"QCNGi7\":[\"Output Volume\"],\"QDEWii\":[\"Verified\"],\"QHcLEN\":[\"Connected\"],\"QOF7H+\":[\"กระโดดไปข้อความปัจจุบัน\"],\"QRuWK2\":[\"Interface Font\"],\"QSdio+\":[\"Join the voice channel\"],\"QSzGDE\":[\"ไม่อยู่\"],\"QeVmvt\":[\"Provided email or password is wrong.\"],\"QgQV6q\":[\"Recovery Codes\"],\"QjH+ZX\":[\"แก้ไขข้อความ\"],\"QqoBlW\":[\"โปรดตรวจสอบอีเมล์ของคุณ!\"],\"R7SsBE\":[\"Mute\"],\"RFMfX/\":[\"Developer Documentation\"],\"RGaLS9\":[\"You do not have permission to do this.\"],\"RfwZxd\":[\"ตั้งรหัสผ่านใหม่\"],\"RoyYUE\":[\"Create Role\"],\"RriyZ+\":[\"ตัวติดตามบั๊ก\"],\"S3bIKF\":[\"คัดลอก ID\"],\"S6nbNv\":[\"You can't be in more than \",[\"0\"],\" servers, please leave one and try again.\"],\"SAGRK3\":[\"กรุณาสแกนหรือพิมพ์ข้อความโทเคนข้างล่างในแอพยืนยันตัวตนของคุณ\"],\"SWs9bI\":[\"Stoat for Desktop\"],\"SbiE6f\":[\"Connect to voice channel\"],\"SuSAW1\":[\"Select audio output\"],\"SvSQsF\":[\"ลบตัวยืนยัน\"],\"SynpeZ\":[\"<0/> transferred group ownership to <1/>\"],\"TBK3Ey\":[\"Switch to this voice channel\"],\"TJjaBp\":[\"Click on the items below to learn more about different changes!\"],\"TOZ5f+\":[\"This channel is marked as mature.\"],\"TRDppN\":[\"Webhook\"],\"Tb2euV\":[\"Users will be asked to confirm their age before opening this channel.\"],\"Tbe8DB\":[\"Leave \",[\"0\"],\"?\"],\"TctyuA\":[\"จัดการข้อความ\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"TjyEoA\":[\"จัดการบทบาท\"],\"To5L7V\":[\"Emoji Name\"],\"Tr3jPK\":[\"Cancel message\"],\"Tz0i8g\":[\"การตั้งค่า\"],\"U3pytU\":[\"Admin\"],\"U6eaI7\":[\"ชวนเพื่อนๆ ของคุณหรือบอทเจ๋งๆ แล้วปาร์ตี้โลด\"],\"UDb2YD\":[\"React\"],\"UQLJJO\":[\"Delete Bot\"],\"UbRKMZ\":[\"Pending\"],\"Uz/xvR\":[\"เปลี่ยนภาพโปรไฟล์\"],\"V2TE3y\":[[\"0\"],\" files exceed the maximum size limit of \",[\"maxSizeFormatted\"],\" and were not uploaded.\"],\"V3XhEA\":[\"Edit roles\"],\"V53lUY\":[\"Delete and pin messages sent by other members\"],\"V7DYWd\":[\"ส่งข้อความ\"],\"VJScHU\":[\"เหตุผล\"],\"VKsaTi\":[\"ตอบกลับถึง\"],\"VTzM7q\":[\"New messages since \",[\"0\"]],\"VaA9mu\":[\"24 hours\"],\"Vh21HH\":[\"Server Default\"],\"VlmvOd\":[\"ปิดการได้ยินผู้ใช้อื่น\"],\"VsHxv+\":[\"คัดลอกข้อความ\"],\"VskHIx\":[\"Delete category\"],\"VvdC4u\":[\"Monochrome\"],\"W5gWH3\":[\"กำลังยืนยันบัญชี…\"],\"W7oIej\":[\"Chat Input\"],\"WAakm9\":[\"Delete Channel\"],\"WAv+Jj\":[\"Able to access channels on this server\"],\"WJC869\":[\"You cannot timeout yourself.\"],\"WSSlyk\":[\"Extortion or blackmail\"],\"WTx+eB\":[\"Mute Server\"],\"WkGwgJ\":[[\"0\"],\" made \",[\"1\"],\" the new group owner\"],\"WnhbOj\":[\"ลิงก์ภายนอกอาจเป็นอันตรายต่อคุณ!\"],\"Wvdt8W\":[\"ISO Standard (YYYY-MM-DD)\"],\"Wwa7qY\":[\"<0/> started a call that lasted \"],\"X1985n\":[\"Remove other members' avatars\"],\"X6noYz\":[\"Unknown Server\"],\"X8nARN\":[\"Open server settings\"],\"XUe4cu\":[\"การตั้งค่าแอป\"],\"XnpLAI\":[\"Effective <0/> (<1/>)\"],\"XyOToQ\":[\"An error occurred.\"],\"XzhDzo\":[\"Stoat Desktop\"],\"YZWcQL\":[\"แอพยืนยันตัวตน\"],\"YcVBkL\":[\"ได้รับข้อความ\"],\"YirHq7\":[\"ข้อเสนอแนะ\"],\"YlFpiA\":[\"ไม่สามารถยืนยันได้!\"],\"Yp+Hi/\":[\"เปิดการตั้งค่า\"],\"Z5HWHd\":[\"เปิด\"],\"Z7f8Lz\":[\"Image by @fakurian\"],\"ZCcTyH\":[\"Join a server\"],\"ZYnwzF\":[\"Disconnected\"],\"Zn6Tz8\":[\"Are you sure you want to clear your sessions?\"],\"Zwfzke\":[\"Minimise to Tray\"],\"[Last] dddd [at] LT\":[\"[Last] dddd [at] LT\"],\"[Today at] LT\":[\"[Today at] LT\"],\"[Tomorrow at] LT\":[\"[Tomorrow at] LT\"],\"[Yesterday at] LT\":[\"[Yesterday at] LT\"],\"a1+Vx8\":[\"someone@example.com\"],\"a5WQGl\":[\"You've reached your personal bot limit.\"],\"a8e0AU\":[\"รหัสกู้คืนของคุณ\"],\"aAIQg2\":[\"การแสดงผล\"],\"aEnPeu\":[\"Invite Bot\"],\"aIXp8m\":[\"คุณยกเลิกการกระทำนี้ไม่ได้\"],\"aYjP9k\":[\"Continue to app\"],\"at1WI0\":[\"Unmute Server\"],\"az8lvo\":[\"ปิด\"],\"b/KwEM\":[\"Reduced\"],\"b0ScFs\":[\"ปิดการใช้งานบัญชี\"],\"bPl6q3\":[\"Unsent message\"],\"bPoVPN\":[\"Server Avatar\"],\"bUgYf5\":[\"Mark this channel as mature?\"],\"bajtZU\":[\"Assign lower-ranked roles to lower-ranking members\"],\"bhyRbj\":[\"You cannot report yourself.\"],\"bwRYCn\":[\"Mute Channel\"],\"c3OXEp\":[\"Choose username\"],\"c9JRcC\":[\"อ่านประวัติข้อความ\"],\"cKymxU\":[\"Send messages in channels\"],\"cNHZ0d\":[\"Change other members' nicknames\"],\"cOyir8\":[\"แบนสมาชิก\"],\"cPdGoI\":[\"The file \\\"\",[\"0\"],\"\\\" (\",[\"fileSize\"],\") exceeds the maximum size limit of \",[\"maxSizeFormatted\"],\".\"],\"cVbFyD\":[\"จัดการสิทธิ์\"],\"cY7gFi\":[[\"0\"],\"-\",[\"1\"],\" of \",[\"2\"]],\"cj+X1c\":[\"ผู้เชิญ\"],\"cmPDVh\":[\"You cannot join this call.\"],\"cnGeoo\":[\"ลบ\"],\"csCoda\":[\"Version:\"],\"cxb4R/\":[\"Mark as mature\"],\"dDoHhx\":[\"Acknowledge\"],\"dEgA5A\":[\"ยกเลิก\"],\"dHHNJ6\":[\"Would you like to create a new server or join an existing one?\"],\"dLRg2w\":[\"สร้างบอทใหม่\"],\"dddd [at] LT\":[\"dddd [at] LT\"],\"dkAPxi\":[\"Create Webhook\"],\"e+D9LC\":[\"Unmark as Mature\"],\"e4CAB7\":[\"เชิญคนอื่น\"],\"eAyeR8\":[\"Muted until <0/>\"],\"eMIuqg\":[\"Helped translate Stoat\"],\"eXlbBv\":[\"Something went wrong! Try again later.\"],\"edZkJt\":[\"ล่องหน\"],\"ekfzWq\":[\"การตั้งค่าผู้ใช้\"],\"etgedT\":[\"อีโมจิ\"],\"f+rzzY\":[\"Rep Stoat using Discord rich presence.\"],\"fMGfRR\":[\"จัดการการปรับแต่ง\"],\"fTMMeD\":[\"สร้างคำเชิญ\"],\"fTN7JI\":[\"Toggle main sidebar\"],\"fgLNSM\":[\"สมัครสมาชิก\"],\"fhYw6u\":[\"You were logged out!\"],\"fnH1fe\":[\"Select audio input\"],\"frVWKj\":[[\"0\",\"plural\",{\"one\":[\"Drop a file\"],\"other\":[\"Drop \",\"#\",\" files\"]}]],\"fzaZuT\":[\"Discord RPC\"],\"g1in8j\":[\"Admin Panel\"],\"g3UF2V\":[\"Accept\"],\"gFoGWm\":[\"Impersonation\"],\"gJJMuU\":[\"ยกเลิกคำขอ\"],\"gMvV24\":[\"Spellchecker\"],\"gRkJUI\":[\"ตั้งบทบาท\"],\"gVGZxt\":[\"Browser Noise Supression\"],\"geho5+\":[\"Move members between voice channels\"],\"ggOh4M\":[\"Stoat Founder\"],\"gjpdaf\":[\"รายงาน\"],\"gkBHk/\":[\"สร้างช่อง\"],\"gkmjYT\":[\"ออกจากเซิร์ฟเวอร์\"],\"go1IWB\":[\"ผู้ใช้นี้บล็อกคุณ\"],\"gx8H8Z\":[\"System message channels\"],\"h5+K3A\":[\"Copy role ID\"],\"h69WC6\":[\"Sent\"],\"h7+4yF\":[\"Please select a reason\"],\"hH3f+k\":[\"ลบช่อง\"],\"hMZucv\":[\"Copy webhook URL\"],\"hPfTol\":[\"That action had no effect.\"],\"hV+cYN\":[\"กรอกอีเมลของคุณ\"],\"hXtAtx\":[\"Tonal Spot\"],\"hYgDIe\":[\"สร้าง\"],\"hzQo5U\":[\"Add a new friend\"],\"i0qMbr\":[\"หน้าหลัก\"],\"i2CkSD\":[\"Silent\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iONOLk\":[\"This username is already taken.\"],\"iSLIjg\":[\"เชื่อมต่อ\"],\"iTf46S\":[\"Responsibly disclosed security issues\"],\"iZjytO\":[\"<0/> has been kicked from the server\"],\"iaM74K\":[\"กล่าวถึง\"],\"ilSVdI\":[\"Load file (\",[\"0\"],\")\"],\"inDEkK\":[\"This account is not activated! Please check your account's inbox and try again.\"],\"iqOVmX\":[\"Disable one-time password authenticator\"],\"ixkTse\":[\"บอท\"],\"j0nE0x\":[\"Stoat Developer\"],\"jARVSc\":[\"Revenge or underage pornography\"],\"jEmntx\":[\"Edit group name and description\"],\"jMiuH3\":[\"Malware or phishing\"],\"jZUk0D\":[\"กลับไปหน้าเข้าสู่ระบบ\"],\"jpJ5AL\":[\"รหัสกู้คืน\"],\"jtH9mh\":[\"Unmark as mature\"],\"jviGAq\":[\"This content is not available in your region.\"],\"k2oY8L\":[\"For 1 hour\"],\"kFyXAW\":[\"For 3 hours\"],\"kUz4ev\":[\"Give feedback on Stoat\"],\"kVHATU\":[\"Busy\"],\"kaXbCq\":[\"Reset \",[\"0\"],\"'s token?\"],\"kdktF9\":[\"Change own avatar\"],\"kfcRb0\":[\"รูปโปรไฟล์\"],\"khEQ02\":[\"Choose a username\"],\"klH6ct\":[\"ยินดีต้อนรับ!\"],\"knjY+b\":[\"คุณสามารถเปิดใหม่ได้ในภายหลัง แต่ข้อความทั้งหมดของทั้งสองฝ่ายจะหายไป\"],\"kvNfhr\":[\"Platform Moderator\"],\"l1vl1+\":[\"Rename category\"],\"lDjxmT\":[\"Failed to send\"],\"lICjHG\":[\"เพิ่มเพื่อน\"],\"lSGjX7\":[\"ผู้ใช้เข้าร่วมการโทร\"],\"lavCXh\":[\"<0/> updated the group name to <1>\",[\"0\"],\"1>\"],\"lfFsZ4\":[\"ช่อง\"],\"luDs4g\":[\"Create a new group\"],\"lz6ngN\":[\"You agree that your bot is subject to the Acceptable Usage Policy.\"],\"m0CPQM\":[\"Submit to Discover\"],\"m16xKo\":[\"Add\"],\"m2qesm\":[\"Get active recovery codes\"],\"m48LOH\":[\"Hardware Acceleration\"],\"m6X3ro\":[\"ชื่อกลุ่ม\"],\"mAYvqA\":[\"สวัสดี!\"],\"mD1zO3\":[\"You muted this user.\"],\"mErq7F\":[\"Sign Up\"],\"mIIVsO\":[\"You've sent too many friend requests, the maximum is \",[\"0\"]],\"mVr4m2\":[\"Edit your identity\"],\"ma6q0V\":[\"Last sync <0/>\"],\"maCbpW\":[[\"0\"],\" emoji slots remaining\"],\"mcKU3V\":[\"username#1234\"],\"mffBQe\":[\"คุณจะไม่สามารถใช้บัญชีได้จนกว่าคุณจะติดต่อฝ่ายสนับสนุน - อย่างไรก็ตาม ข้อมูลของคุณจะไม่ถูกลบ\"],\"mj8Zmd\":[\"Create invites for others to use\"],\"mn5eKP\":[\"Send embedded content such as link embeds or custom embeds\"],\"mujyHj\":[\"กำหนดสถานะเอง\"],\"n98CaP\":[\"You're already part of this group.\"],\"nCvhD0\":[\"Custom window frame\"],\"nSqogE\":[\"เพื่อนร่วมกัน\"],\"nbzz1A\":[\"ใส่รหัส\"],\"ncDewQ\":[\"Save file\"],\"ne6Rj8\":[\"Click to show spoiler\"],\"nmJMeQ\":[\"An internal error occurred. (\",[\"0\"],\")\"],\"nsca6t\":[\"Go to account settings to edit your username\"],\"nwzesb\":[\"Server Identities\"],\"nx4Nps\":[\"Create Invite\"],\"nzMeNW\":[\"นี่คือจุดเริ่มต้นของโน้ตของคุณ\"],\"o+XJ9D\":[\"เปลี่ยน\"],\"oB4OOq\":[\"แบนสมาชิก\"],\"oJOfyZ\":[\"<0/> unpinned <1/>\"],\"oXOSPE\":[\"ออนไลน์\"],\"oY64tV\":[\"Promotes harm\"],\"oZwna+\":[\"You're already part of this server.\"],\"ob334e\":[\"User's profile has inappropriate content\"],\"obqpwG\":[\"Sync your currently chosen language.\"],\"ofG8w+\":[\"Voice Processing\"],\"ofKdY9\":[\"Search for users...\"],\"ofmnM6\":[\"เตะสมาชิก\"],\"ohmwVN\":[\"Find your com<0/>munity,<1/>connect with the world.\"],\"ojptRu\":[\"Enable transparency glass/blur effects (slow on older machines)\"],\"ovBPCi\":[\"ค่าตั้งต้น\"],\"oyr8HG\":[\"Mark as Mature\"],\"p6NueD\":[\"NEW\"],\"pJZDVV\":[\"Server Roles\"],\"pQ0/u5\":[\"Webhook Icon\"],\"pW8Hyv\":[\"Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support.\"],\"paehRh\":[\"ออกจากระบบ\"],\"pfWVYe\":[\"Tell us what's wrong with this server\"],\"pqZJT2\":[\"Close chat\"],\"pqr+oY\":[\"Message \",[\"0\"]],\"proQUv\":[\"Neutral\"],\"psIkL7\":[\"This will invalidate the current token and stop any existing instances of the bot from running.\"],\"pvnfJD\":[\"Dark\"],\"pySJVB\":[\"กระโดดไปจุดเริ่มต้น\"],\"q0DiwX\":[\"<0/> has been removed by <1/>\"],\"qBQAYq\":[\"Message Group Spacing\"],\"qT9yXc\":[\"ผู้ใช้ออกจากการโทร\"],\"qaH0rj\":[\"Create a webhook\"],\"qbqToq\":[\"Click to show full description\"],\"qhwV2C\":[\"บัญชีของฉัน\"],\"qqRS2V\":[\"Channel Info\"],\"r4iPB9\":[\"Create server\"],\"rC7uyF\":[\"Mention Everyone\"],\"rDzECn\":[\"Enable Authenticator\"],\"rTmMQe\":[\"Help contribute to an existing or new language\"],\"rimT/D\":[\"ข้อความทั้งหมด\"],\"rnESNP\":[\"Search for groups...\"],\"rsj13C\":[\"This username is not allowed.\"],\"rsnDOl\":[\"มีคนตอบสนองหนึ่งคน\"],\"rxaY+5\":[\"ห้ามรบกวน\"],\"ryNfOF\":[\"Edit Global Profile\"],\"s3Lr9i\":[\"Database error, please contact support. (\",[\"0\"],\")\"],\"s8kB2v\":[\"User Left\"],\"sA/iAz\":[\"Configure one-time password authentication\"],\"sH0Ycr\":[\"Donate to Stoat\"],\"sRgRiT\":[[\"unknown\"],\" reacted\"],\"sWvnBI\":[\"Sent \",[\"0\"],\" attachments\"],\"sbEQ1t\":[\"This file type is not allowed.\"],\"sl/syq\":[\"Close conversation with \",[\"0\"],\"?\"],\"sqKUvS\":[\"Only mentions will notify you\"],\"ss8736\":[\"Start the call\"],\"sxkWRg\":[\"ขั้นสูง\"],\"t43mBk\":[\"รายงานเซิร์ฟเวอร์\"],\"tBmnPU\":[\"เพื่อน\"],\"tT69xn\":[\"This channel is not available in your region while we review options on legal compliance.\"],\"tW3S/e\":[\"จัดการเว็บฮุก\"],\"tdTuUv\":[\"บล็อกผู้ใช้\"],\"tfDRzk\":[\"บันทึก\"],\"tne1qE\":[\"Description provided by \",[\"0\"]],\"tny/yk\":[\"User Kicked\"],\"tpPP64\":[\"ผู้ใช้ที่ถูกบล็อก\"],\"tr+x7S\":[\"Configure a way to get back into your account in case your 2FA is lost\"],\"txDnh8\":[\"ไปยังเซิร์ฟเวอร์ผู้ทดสอบ\"],\"uAOcxa\":[\"I understand the consequences\"],\"uAQUqI\":[\"Status\"],\"uH/42m\":[\"Tell us what's wrong with this user\"],\"uJTQKq\":[\"With \",[\"0\"]],\"uKBxNr\":[\"เตะสมาชิก\"],\"uKsCnO\":[\"Please log in again.\"],\"uW1Vm6\":[\"Add status text\"],\"uc3jjU\":[\"ลบบทบาท\"],\"utrCh2\":[\"หยุดสมาชิกไว้ชั่วคราว\"],\"uu2ow3\":[\"Enter a new name for this session\"],\"uyJsf6\":[\"เกี่ยวกับ\"],\"v/QmhM\":[\"irrelevant joke badge 2\"],\"v13sNt\":[\"คำอธิบายเซิร์ฟเวอร์\"],\"v1kQyJ\":[\"เว็บฮุก\"],\"v44WYm\":[\"Temporarily prevent lower-ranking members from interacting\"],\"vCKKdA\":[\"View pinned messages\"],\"vERlcd\":[\"ประวัติโดยย่อ\"],\"vJum3e\":[\"ถ้าอยากสนับสนุนให้ Revolt ก็บริจาคมาได้เลย ขอบคุณนะ!\"],\"vOW6wG\":[\"You are about to ban \",[\"0\"]],\"vSJd18\":[\"ใช้วีดิโอ\"],\"vSpLqj\":[\"Using default microphone\"],\"vTzsKy\":[\"แก้ไขตัวตน\"],\"vXIe7J\":[\"ภาษา\"],\"vbiLHC\":[\"Multi-factor authentication is already enabled for this account.\"],\"ve7z/g\":[\"กรุณาเก็บไว้ในที่ปลอดภัย\"],\"vniHOS\":[\"Want to change username?\"],\"vtZ0lQ\":[\"ส่งข้อความ\"],\"vz2Mv5\":[\"Use the graphics card to improve performance.\"],\"vzX5FB\":[\"Delete Account\"],\"wD0+LG\":[\"More Contrast\"],\"wIPxjh\":[\"Send Request\"],\"wJp20b\":[\"เข้าช่อง\"],\"wL3cK8\":[\"ล่าสุด\"],\"wQMpfT\":[\"Default Permissions\"],\"wlQNTg\":[\"สมาชิก\"],\"wpLdYk\":[\"Review policy changes\"],\"wtxSXD\":[\"Setup one-time password authenticator\"],\"wvaz2C\":[\"Donated to Stoat\"],\"x2cCA3\":[\"ใช้นามแฝง\"],\"xDAtGP\":[\"ข้อความ\"],\"xGVfLh\":[\"ดำเนินการต่อ\"],\"xI4nbx\":[\"Select members to add\"],\"xJH2T8\":[\"Private Channel\"],\"xNX5ts\":[\"Cannot edit this message.\"],\"xWHwwQ\":[\"แบน\"],\"xcs1iQ\":[\"Launch Stoat when you log into your computer.\"],\"xgBgdK\":[\"Something is wrong with your request, \",[\"0\"],\".\"],\"xglsJ0\":[\"Delete Invite\"],\"xowcRf\":[\"ข้อกำหนดในการให้บริการ\"],\"xpgPPI\":[\"บอทของฉัน\"],\"xuqzv2\":[\"Show send message button\"],\"xzQnGO\":[\"ยอมรับคำขอเป็นเพื่อน\"],\"y1eoq1\":[\"คัดลอกลิงก์\"],\"y2Agdb\":[\"Failed to process the image you provided.\"],\"y5kWr1\":[\"User Joined\"],\"y6uLO1\":[\"ฉันยืนยันว่าฉันอายุอย่างน้อย 18 ปี\"],\"yDOdwQ\":[\"การจัดการผู้ใช้\"],\"yIBLq8\":[\"พูด\"],\"yMVe+Q\":[\"Unsolicited advertising or spam\"],\"yc8XoJ\":[\"Illegal hacking or cracking\"],\"yd5o8J\":[\"<0/> pinned <1/>\"],\"yz7wBu\":[\"ปิด\"],\"z0hW8A\":[\"ดูรหัสกู้คืน\"],\"z0t9bb\":[\"เข้าสู่ระบบ\"],\"zAENri\":[\"Change username\"],\"zQK0ao\":[\"High Contrast\"],\"zR1hDe\":[\"Ban evasion\"],\"zga9sT\":[\"ตกลง\"],\"zp5Vve\":[\"The password is too short.\"],\"zqaa5E\":[\"นี่คือจุดเริ่มต้นของการสนทนาของคุณ\"],\"zrca+u\":[\"Create a new category\"],\"zsJUbn\":[\"เก่าสุด\"],\"zwlCOi\":[\"React to messages with emoji\"],\"zxB685\":[\"One of the first 1000 users!\"]}");
\ No newline at end of file
diff --git a/components/i18n/catalogs/th/messages.po b/components/i18n/catalogs/th/messages.po
new file mode 100644
index 0000000..014f837
--- /dev/null
+++ b/components/i18n/catalogs/th/messages.po
@@ -0,0 +1,3187 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2025-09-29 18:29-0500\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: th\n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Plural-Forms: \n"
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Yesterday at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Today at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Tomorrow at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "[Last] dddd [at] LT"
+msgstr ""
+
+#. js-lingui-explicit-id
+#: components/i18n/dayjs.tsx
+msgid "dddd [at] LT"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "(changes are being saved…)"
+msgstr ""
+
+#. placeholder {0}: props.count
+#: components/ui/components/features/messaging/elements/BlockedMessage.tsx
+msgid "{0, plural, one {# blocked message} other {# blocked messages}}"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#~ msgid "{0, plural, one {# Member} other {# Members}}"
+#~ msgstr ""
+
+#. placeholder {0}: items().length
+#: components/ui/components/utils/files/FileDropAnywhereCollector.tsx
+msgid "{0, plural, one {Drop a file} other {Drop # files}}"
+msgstr ""
+
+#. placeholder {0}: users() .slice(0, -1) .map((user) => user!.username) .join(", ")
+#. placeholder {1}: users().slice(-1)[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} and {1} are typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel description"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelEditSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} changed the channel icon"
+msgstr ""
+
+#. placeholder {0}: CONFIGURATION.MAX_EMOJI - props.server.emojis.length
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "{0} emoji slots remaining"
+msgstr ""
+
+#. placeholder {0}: rejectedFiles.length
+#: src/interface/channels/text/Composition.tsx
+msgid "{0} files exceed the maximum size limit of {maxSizeFormatted} and were not uploaded."
+msgstr ""
+
+#. placeholder {0}: users()[0]!.username
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "{0} is typing…"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).from?.username
+#. placeholder {1}: (message.systemMessage as ChannelOwnershipChangeSystemMessage).to?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} made {1} the new group owner"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} pinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as ChannelRenamedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} renamed the channel"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as MessagePinnedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} unpinned a message"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was added by {1}"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was banned"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserSystemMessage).user?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was kicked"
+msgstr ""
+
+#. placeholder {0}: (message.systemMessage as UserModeratedSystemMessage).user?.username
+#. placeholder {1}: (message.systemMessage as UserModeratedSystemMessage).by?.username
+#: components/client/NotificationsWorker.tsx
+msgid "{0} was removed by {1}"
+msgstr ""
+
+#. placeholder {0}: page() * itemsPerPage() + 1
+#. placeholder {1}: Math.min( props.itemCount!, page() * itemsPerPage() + itemsPerPage(), )
+#. placeholder {2}: props.itemCount
+#: components/ui/components/design/DataTable.tsx
+msgid "{0}-{1} of {2}"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "{0}'s roles"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{unknown} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} and {unknown} others reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "{usernames} reacted"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been added by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been banned from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been kicked from the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> has been removed by <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> joined the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the group"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> left the server"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> pinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> started a call that lasted "
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> transferred group ownership to <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> unpinned <1/>"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group description"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group icon "
+msgstr ""
+
+#. placeholder {0}: (props.systemMessage as ChannelRenamedSystemMessage).name
+#: components/ui/components/features/messaging/elements/SystemMessage.tsx
+msgid "<0/> updated the group name to <1>{0}1>"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "<0>Be careful!0><1/>This is not the same as the link that was displayed:"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Reactions.tsx
+msgid "1 person reacted"
+msgstr "มีคนตอบสนองหนึ่งคน"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "12 hours"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "24 hours"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access channels on this server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to access this channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Able to speak in voice call"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "About"
+msgstr "เกี่ยวกับ"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Accept"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Accept friend request"
+msgstr "ยอมรับคำขอเป็นเพื่อน"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Acknowledge"
+msgstr ""
+
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddBot.tsx
+msgid "Add"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Add a new friend"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Add friend"
+msgstr "เพิ่มเพื่อน"
+
+#: src/interface/channels/ChannelHeader.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Add friends to group"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Add new members to the group"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Add status text"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Admin"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Admin Panel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Advanced"
+msgstr "ขั้นสูง"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Affects all roles and users"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "All"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "All Messages"
+msgstr "ข้อความทั้งหมด"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Allow members to change name and avatar per-message"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Allow others to add your bot to their servers from Discover"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Already friends with this user."
+msgstr "เป็นเพื่อนกับผู้ใช้นี้แล้ว"
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "American (MM/DD/YYYY)"
+msgstr ""
+
+#: components/modal/modals/Error2.tsx
+msgid "An error occurred."
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "An internal error occurred. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Appearance"
+msgstr "การแสดงผล"
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "Are you sure you want to clear your sessions?"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Are you sure you want to go to "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Are you sure you want to go to <0>{0}0>?"
+#~ msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign lower-ranked roles to lower-ranking members"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Assign Roles"
+msgstr "ตั้งบทบาท"
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Authenticator App"
+msgstr "แอพยืนยันตัวตน"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Avatar"
+msgstr "รูปโปรไฟล์"
+
+#: src/interface/channels/AgeGate.tsx
+#: src/interface/channels/AgeGate.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowCreate.tsx
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Back"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Badges"
+msgstr "ป้าย"
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "Ban"
+msgstr "แบน"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Ban evasion"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban member"
+msgstr "แบนสมาชิก"
+
+#: components/modal/modals/BanMember.tsx
+msgid "Ban Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Ban Members"
+msgstr "แบนสมาชิก"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Ban user"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "Ban User"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Banner"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Bans"
+msgstr "แบน"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Block user"
+msgstr "บล็อกผู้ใช้"
+
+#: src/interface/Friends.tsx
+msgid "Blocked"
+msgstr "ถูกบล็อค"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Blocked User"
+msgstr "ผู้ใช้ที่ถูกบล็อก"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Bot"
+msgstr "บอท"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Echo Cancellation"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Browser Noise Supression"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Bug Tracker"
+msgstr "ตัวติดตามบั๊ก"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Busy"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "By creating this bot, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "By creating this server, you agree to the <0>Acceptable Use Policy0>."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/ReportContent.tsx
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/KickMember.tsx
+#: components/modal/modals/Invite.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/modal/modals/AddBot.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Cancel"
+msgstr "ยกเลิก"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Cancel friend request"
+msgstr "ยกเลิกคำขอ"
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Cancel message"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Cannot delete account until servers are deleted or transferred"
+msgstr "ไม่สามารถลบบัญชีได้จนกว่าจะลบหรือโอนเซิร์ฟเวอร์"
+
+#: components/i18n/errors.ts
+msgid "Cannot edit this message."
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+msgid "Change"
+msgstr "เปลี่ยน"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Avatar"
+msgstr "เปลี่ยนภาพโปรไฟล์"
+
+#. placeholder {0}: props.member.server!.name
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Change identity on {0}"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Change login email"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+msgid "Change login password"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change Nickname"
+msgstr "เปลี่ยนชื่อเล่น"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change other members' nicknames"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own avatar"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Change own nickname"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+msgid "Change username"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Change your profile per-server"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+msgid "Changelog"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Description"
+msgstr "คำอธิบายช่อง"
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Info"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Channel Name"
+msgstr "ชื่อช่อง"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Channel Settings"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Channels"
+msgstr "ช่อง"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Chat Input"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "Check your mail!"
+msgstr "โปรดตรวจสอบอีเมล์ของคุณ!"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Choose a username"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Choose username"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Clear status"
+msgstr "ล้างสถานะ"
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Click on the items below to learn more about different changes!"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Click to show full description"
+msgstr ""
+
+#: components/ui/components/utils/Spoiler.tsx
+msgid "Click to show spoiler"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Client Settings"
+msgstr "การตั้งค่าแอป"
+
+#: components/modal/modals/UserProfileRoles.tsx
+#: components/modal/modals/UserProfileMutualGroups.tsx
+#: components/modal/modals/UserProfileMutualFriends.tsx
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/PolicyChange.tsx
+#: components/modal/modals/LinkWarning.tsx
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/ChannelInfo.tsx
+#: components/modal/modals/Changelog.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+#: components/modal/modals/AddFriend.tsx
+msgid "Close"
+msgstr "ปิด"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Close chat"
+msgstr ""
+
+#. placeholder {0}: props.channel.recipient?.displayName
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Close conversation with {0}?"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Code"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure a way to get back into your account in case your 2FA is lost"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Configure one-time password authentication"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Confirm"
+msgstr "ยืนยัน"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Confirm action"
+msgstr "ยืนยันการกระทำ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect"
+msgstr "เชื่อมต่อ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Connect to voice channel"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connected"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Connecting"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Content breaks one or more laws"
+msgstr "เนื้อหาผิดกฎหมาย"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+#: components/modal/modals/LinkWarning.tsx
+msgid "Continue"
+msgstr "ดำเนินการต่อ"
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Continue to app"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Contribute a language"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Conversations"
+msgstr "บทสนทนา"
+
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Copy category ID"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy channel ID"
+msgstr "คัดลอก ID ช่อง"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy ID"
+msgstr "คัดลอก ID"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Invite URL"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Copy link"
+msgstr "คัดลอกลิงก์"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Copy Link"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy message ID"
+msgstr "คัดลอก ID ข้อความ"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Copy role ID"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Copy server ID"
+msgstr "คัดลอก ID เซิร์ฟเวอร์"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Copy text"
+msgstr "คัดลอกข้อความ"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Copy Token"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: components/app/menus/UserContextMenu.tsx
+msgid "Copy user ID"
+msgstr "คัดลอก ID ผู้ใช้"
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Copy webhook URL"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Could not find what you requested."
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/modal/modals/CreateServer.tsx
+#: components/modal/modals/CreateRole.tsx
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/CreateChannel.tsx
+#: components/modal/modals/CreateCategory.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Create"
+msgstr "สร้าง"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create a channel before inviting others!"
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "Create a group"
+#~ msgstr "สร้างกลุ่ม"
+
+#: src/interface/Home.tsx
+msgid "Create a group or server"
+msgstr ""
+
+#: components/modal/modals/CreateBot.tsx
+msgid "Create a new bot"
+msgstr "สร้างบอทใหม่"
+
+#: components/modal/modals/CreateCategory.tsx
+msgid "Create a new category"
+msgstr ""
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: components/modal/modals/CreateGroup.tsx
+msgid "Create a new group"
+msgstr ""
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create a new role"
+msgstr "สร้างบทบาทใหม่"
+
+#: components/modal/modals/CreateWebhook.tsx
+msgid "Create a webhook"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Create an account"
+msgstr "สร้างบัญชี"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit server roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create and edit webhooks"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Create Bot"
+msgstr ""
+
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Create category"
+msgstr "สร้างหมวดหมู่"
+
+#: components/modal/modals/CreateChannel.tsx
+#: components/app/menus/ServerSidebarContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Create channel"
+msgstr "สร้างช่อง"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Create invite"
+msgstr "สร้างคำเชิญ"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Create Invite"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create invites for others to use"
+msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Create Role"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+msgid "Create server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Create server emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/WebhooksList.tsx
+msgid "Create Webhook"
+msgstr ""
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Created <0/>"
+msgstr ""
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Current Password"
+msgstr "รหัสผ่านปัจจุบัน"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Current Session"
+msgstr ""
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Custom status"
+msgstr "กำหนดสถานะเอง"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Custom window frame"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Customisation"
+msgstr "การปรับแต่ง"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Dark"
+msgstr ""
+
+#. placeholder {0}: err.location
+#: components/i18n/errors.ts
+msgid "Database error, please contact support. ({0})"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Deafen Members"
+msgstr "ปิดการได้ยินผู้ใช้อื่น"
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Default"
+msgstr "ค่าตั้งต้น"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Default Permissions"
+msgstr ""
+
+#: components/modal/modals/EmojiPreview.tsx
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteMessage.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete"
+msgstr "ลบ"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.role.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Delete {0}?"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Delete Account"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Delete and pin messages sent by other members"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Delete Bot"
+msgstr ""
+
+#: components/modal/modals/DeleteCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Delete category"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Delete channel"
+msgstr "ลบช่อง"
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Delete Channel"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Delete Invite"
+msgstr ""
+
+#: components/modal/modals/DeleteMessage.tsx
+#: components/app/menus/MessageContextMenu.tsx
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Delete message"
+msgstr "ลบข้อความ"
+
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Delete Role"
+msgstr "ลบบทบาท"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Delete Server"
+msgstr ""
+
+#. placeholder {0}: props.invite.username
+#: components/modal/modals/AddBot.tsx
+msgid "Description provided by {0}"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Desktop"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Developer Documentation"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable Account"
+msgstr "ปิดการใช้งานบัญชี"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Disable one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Disabled"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Disconnected"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Discord RPC"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Discover Stoat"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Display & Text"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Display Name"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Do Not Disturb"
+msgstr "ห้ามรบกวน"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "Don't ask me again for "
+msgstr ""
+
+#: components/modal/modals/LinkWarning.tsx
+#~ msgid "Don't ask me again for <0>{0}0>"
+#~ msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+msgid "Don't notify others that you've left"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Donate"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Donate to Stoat"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Donated to Stoat"
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Done"
+msgstr "เรียบร้อย"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Drugs or illegal goods"
+msgstr ""
+
+#. placeholder {0}: props.member.displayName
+#: components/modal/modals/UserProfileRoles.tsx
+msgid "Edit {0}'s roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit and delete channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit any permissions on the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit channel-specific role and default permissions"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Edit Global Profile"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit group name and description"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit identity"
+msgstr "แก้ไขตัวตน"
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Edit Identity"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Edit message"
+msgstr "แก้ไขข้อความ"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Edit roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Edit the server's information and settings"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Edit your identity"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Edited"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Effective <0/> (<1/>)"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Email"
+msgstr "อีเมล"
+
+#: components/app/interface/settings/server/emojis/EmojiList.tsx
+msgid "Emoji Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Emoji Pack (affects your messages only)"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Emojis"
+msgstr "อีโมจิ"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Enable Authenticator"
+msgstr ""
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enable authenticator app"
+msgstr "เปิดใช้แอพยืนยันตัวตน"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Enable Desktop Notifications"
+msgstr "เปิดใช้งานการแจ้งเตือนบนเดสก์ท็อป"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Enable transparency glass/blur effects (slow on older machines)"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Enter a new name for this session"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "Enter a new password."
+msgstr "ใส่รหัสผ่านใหม่"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "Enter Channel"
+msgstr "เข้าช่อง"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Enter Code"
+msgstr "ใส่รหัส"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your current password."
+msgstr "กรอกรหัสผ่านปัจจุบันของคุณ"
+
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/EditPassword.tsx
+#: components/modal/modals/EditEmail.tsx
+msgid "Enter your current password..."
+msgstr ""
+
+#: components/auth/src/flows/Form.tsx
+msgid "Enter your preferred username."
+msgstr "กรอกชื่อผู้ใช้ของคุณ"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "External links can be dangerous!"
+msgstr "ลิงก์ภายนอกอาจเป็นอันตรายต่อคุณ!"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extortion or blackmail"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Extreme violence, gore or animal cruelty"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Failed to process the image you provided."
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Failed to send"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Failed to verify!"
+msgstr "ไม่สามารถยืนยันได้!"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Feedback"
+msgstr "ข้อเสนอแนะ"
+
+#: src/interface/Home.tsx
+msgid "Find a community based on your hobbies or interests."
+msgstr "หาชุมชนที่เหมาะสมกับงานอดิเรกหรือความสนใจของคุณ"
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Find your com<0/>munity,<1/>connect with the world."
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Focus"
+msgstr "โฟกัส"
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 1 hour"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 15 minutes"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 24 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 3 hours"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "For 8 hours"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Friends"
+msgstr "เพื่อน"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Fruit Salad"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Generate a new token if it gets lost or compromised"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Generate Recovery Codes"
+msgstr "สร้างรหัสกู้คืน"
+
+#: components/modal/modals/CreateInvite.tsx
+msgid "Generating invite…"
+msgstr "กำลังสร้างคำเชิญ…"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get a new set of recovery codes"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Get active recovery codes"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Give feedback on Stoat"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Give us some detail"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowVerify.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Go back to login"
+msgstr "กลับไปหน้าเข้าสู่ระบบ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Go to account settings to edit your username"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Go to the Stoat Lounge"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#~ msgid "Go to the testers server"
+#~ msgstr "ไปยังเซิร์ฟเวอร์ผู้ทดสอบ"
+
+#: components/modal/modals/Onboarding.tsx
+msgid "Good"
+msgstr ""
+
+#. placeholder {0}: countBits(props.context.rolePermissions![role.id].a)
+#. placeholder {1}: countBits(props.context.rolePermissions![role.id].d)
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "Grants {0} permissions and denies {1} permissions"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Group Name"
+msgstr "ชื่อกลุ่ม"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Harassment or cyberbullying"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Hardware Acceleration"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Hear other people and see their video"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Hello!"
+msgstr "สวัสดี!"
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Help contribute to an existing or new language"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Helped translate Stoat"
+msgstr ""
+
+#. placeholder {0}: link()
+#: components/modal/modals/CreateInvite.tsx
+msgid "Here is your new invite code: <0>{0}0>"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "High Contrast"
+msgstr ""
+
+#: src/interface/Home.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+msgid "Home"
+msgstr "หน้าหลัก"
+
+#: src/interface/channels/AgeGate.tsx
+msgid "I confirm that I am at least 18 years old."
+msgstr "ฉันยืนยันว่าฉันอายุอย่างน้อย 18 ปี"
+
+#: components/modal/modals/LinkWarning.tsx
+msgid "I understand the consequences"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Idle"
+msgstr "ไม่อยู่"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Illegal hacking or cracking"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Image by @fakurian"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Impersonation"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Instead of closing, Stoat will hide in your tray."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Interface Font"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Invisible"
+msgstr "ล่องหน"
+
+#: src/interface/Home.tsx
+msgid "Invite all of your friends, some cool bots, and throw a big party."
+msgstr "ชวนเพื่อนๆ ของคุณหรือบอทเจ๋งๆ แล้วปาร์ตี้โลด"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Invite Bot"
+msgstr ""
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Invite Code"
+msgstr "รหัสเชิญ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Invite Others"
+msgstr "เชิญคนอื่น"
+
+#: components/app/interface/settings/server/invites/ListServerInvites.tsx
+msgid "Inviter"
+msgstr "ผู้เชิญ"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Invites"
+msgstr "คำเชิญ"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 1"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "irrelevant joke badge 2"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "ISO Standard (YYYY-MM-DD)"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+#: components/modal/modals/Invite.tsx
+msgid "Join"
+msgstr ""
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Join a server"
+msgstr ""
+
+#: src/interface/channels/ChannelHeader.tsx
+#~ msgid "Join call"
+#~ msgstr ""
+
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Join the Stoat Lounge"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Join the voice channel"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileJoined.tsx
+#: components/ui/components/features/messaging/elements/Invite.tsx
+msgid "Joined"
+msgstr ""
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Jump to present"
+msgstr "กระโดดไปข้อความปัจจุบัน"
+
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "Jump to the beginning"
+msgstr "กระโดดไปจุดเริ่มต้น"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Keep as is"
+msgstr ""
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick"
+msgstr "เตะ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick lower-ranking members from the server"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Kick member"
+msgstr "เตะสมาชิก"
+
+#: components/modal/modals/KickMember.tsx
+msgid "Kick Member"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Kick Members"
+msgstr "เตะสมาชิก"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Language"
+msgstr "ภาษา"
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Last sync <0/>"
+msgstr ""
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Latest"
+msgstr "ล่าสุด"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Launch Stoat when you log into your computer."
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "Learn more about how to create bots on Stoat."
+msgstr ""
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave"
+msgstr "ออก"
+
+#. placeholder {0}: props.server.name
+#. placeholder {0}: props.channel.name
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "Leave {0}?"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Leave group"
+msgstr "ออกจากกลุ่ม"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Leave server"
+msgstr "ออกจากเซิร์ฟเวอร์"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Let Stoat use its own custom titlebar."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Let us know how we can improve our app by giving us feedback."
+msgstr "อยากให้เราปรับปรุง Revolt ยังไง ก็ส่งข้อเสนอแนะทางนี้ได้เลย"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Light"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Listen"
+msgstr ""
+
+#. placeholder {0}: humanFileSize(props.file.size ?? 0)
+#: components/ui/components/features/messaging/elements/TextFile.tsx
+msgid "Load file ({0})"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Log In"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out"
+msgstr "ออกจากระบบ"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Log out of all other sessions"
+msgstr "ออกจากระบบในเซสชันอื่นๆ ทั้งหมด"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Log Out Other Sessions"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Login"
+msgstr "เข้าสู่ระบบ"
+
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Logs you out of all sessions except this device."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Malware or phishing"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Customisation"
+msgstr "จัดการการปรับแต่ง"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Messages"
+msgstr "จัดการข้อความ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Nicknames"
+msgstr "จัดการชื่อเล่น"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Permissions"
+msgstr "จัดการสิทธิ์"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Roles"
+msgstr "จัดการบทบาท"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Server"
+msgstr "จัดการเซิร์ฟเวอร์"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Manage Webhooks"
+msgstr "จัดการเว็บฮุก"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Mark as Mature"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/ChannelContextMenu.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Mark as read"
+msgstr "ทำเครื่องหมายว่าอ่านแล้ว"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Mark as unread"
+msgstr "ทำเครื่องหมายว่ายังไม่ได้อ่าน"
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Mark this channel as mature?"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Masquerade"
+msgstr "ใช้นามแฝง"
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Members"
+msgstr "สมาชิก"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mention"
+msgstr "กล่าวถึง"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Everyone"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention everyone and online members inside the server"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention Roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mention specific roles"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mentions"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mentions Only"
+msgstr "เฉพาะการกล่าวถึง"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Message"
+msgstr "ข้อความ"
+
+#. placeholder {0}: props.channel.recipient?.username
+#. placeholder {0}: props.channel.name
+#: src/interface/channels/text/Composition.tsx
+#: src/interface/channels/text/Composition.tsx
+msgid "Message {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Group Spacing"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Message not loaded, click to jump"
+msgstr "ข้อความไม่ได้โหลด คลิกที่นี่เพื่อกระโดด"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Received"
+msgstr "ได้รับข้อความ"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Message Sent"
+msgstr "ส่งข้อความ"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Message Size"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Message was sent on another platform"
+msgstr "ข้อความถูกส่งจากแพลตฟอร์มอื่น"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Messaging"
+msgstr "ส่งข้อความ"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Minimise to Tray"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+#: components/ui/components/features/voice/callCard/VoiceCallCardActions.tsx
+msgid "Missing permission"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monochrome"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Monospace Font"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "More Contrast"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move Members"
+msgstr "ย้ายผู้ใช้อื่น"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Move members between voice channels"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Multi-factor authentication is already enabled for this account."
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Mute"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Mute Channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute lower-ranking members in voice call"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Mute Members"
+msgstr "ปิดเสียงผู้ใช้อื่น"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Mute Server"
+msgstr ""
+
+#: src/interface/navigation/servers/ServerList.tsx
+msgid "Muted"
+msgstr "ปิดการแจ้งเตือน"
+
+#: src/interface/navigation/servers/ServerList.tsx
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Muted until <0/>"
+msgstr ""
+
+#: components/modal/modals/UserProfileMutualFriends.tsx
+msgid "Mutual Friends"
+msgstr "เพื่อนร่วมกัน"
+
+#: components/modal/modals/UserProfileMutualGroups.tsx
+msgid "Mutual Groups"
+msgstr "กลุ่มร่วมกัน"
+
+#: components/app/interface/settings/user/_AccountCard.tsx
+msgid "My Account"
+msgstr "บัญชีของฉัน"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "My Bots"
+msgstr "บอทของฉัน"
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/CreateCategory.tsx
+msgid "Name"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Neutral"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageDivider.tsx
+msgid "NEW"
+msgstr ""
+
+#. placeholder {0}: dayjs(decodeTime(props.lastId()!)).fromNow()
+#: components/ui/components/features/messaging/bars/NewMessages.tsx
+msgid "New messages since {0}"
+msgstr ""
+
+#: components/modal/modals/EditPassword.tsx
+#: components/auth/src/flows/Form.tsx
+msgid "New Password"
+msgstr "รหัสผ่านใหม่"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to Stoat"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "New to the server"
+msgstr ""
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Nickname"
+msgstr "ชื่อเล่น"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsOverview.tsx
+msgid "No permissions set yet"
+msgstr ""
+
+#: src/interface/Friends.tsx
+msgid "Nobody here right now!"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "None"
+msgstr "ไม่มี"
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Normal"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Not of minimum age to use the platform"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Notifications"
+msgstr "การแจ้งเตือน"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Off"
+msgstr "ปิด"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Official Communication"
+msgstr "ช่องทางติดต่ออย่างเป็นทางการ"
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Official Server"
+msgstr "เซิร์ฟเวอร์ทางการ"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Offline"
+msgstr "ออฟไลน์"
+
+#: components/modal/modals/SignedOut.tsx
+#: components/modal/modals/Error2.tsx
+#: components/modal/modals/CreateInvite.tsx
+#: components/auth/src/flows/FlowHome.tsx
+msgid "OK"
+msgstr "ตกลง"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Oldest"
+msgstr "เก่าสุด"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "On"
+msgstr "เปิด"
+
+#: components/modal/modals/DeleteServer.tsx
+#: components/modal/modals/DeleteRole.tsx
+#: components/modal/modals/DeleteChannel.tsx
+#: components/modal/modals/DeleteCategory.tsx
+#: components/modal/modals/DeleteBot.tsx
+msgid "Once it's deleted, there's no going back."
+msgstr "เมื่อลบแล้ว คุณเปลี่ยนใจอีกไม่ได้นะ"
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "One of the first 1000 users!"
+msgstr ""
+
+#: src/interface/Friends.tsx
+#: src/interface/navigation/servers/UserMenu.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/text/MemberSidebar.tsx
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Online"
+msgstr "ออนไลน์"
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "Only mentions will notify you"
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "Open"
+msgstr ""
+
+#. placeholder {0}: provider()![0]
+#: components/auth/src/flows/MailProvider.tsx
+msgid "Open {0}"
+msgstr ""
+
+#: components/app/menus/ChannelContextMenu.tsx
+msgid "Open channel settings"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Open file"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Open server settings"
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Open settings"
+msgstr "เปิดการตั้งค่า"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Other"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Output Volume"
+msgstr ""
+
+#: components/app/interface/settings/ServerSettings.tsx
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Overview"
+msgstr "ภาพรวม"
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Pardon User"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Password"
+msgstr "รหัสผ่าน"
+
+#: src/interface/Friends.tsx
+msgid "Pending"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Permissions"
+msgstr "สิทธิ์"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Pick a username that you want people to be able to find you by. This can be changed later in your user settings."
+msgstr "เลือกชื่อผู้ใช้ของคุณเพื่อให้ผู้อื่นสามารถค้นหาคุณได้ คุณสามารถเปลี่ยนแปลงได้ภายหลังในการตั้งค่า"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Pin message"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Platform Moderator"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please confirm this action using the selected method."
+msgstr "กรุณายืนยันตัวตนด้วยวิธีการที่เลือกไป"
+
+#: components/auth/src/flows/Form.tsx
+msgid "Please enter your email."
+msgstr "กรอกอีเมลของคุณ"
+
+#: components/i18n/errors.ts
+msgid "Please log in again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Please save these to a safe location."
+msgstr "กรุณาเก็บไว้ในที่ปลอดภัย"
+
+#: components/modal/modals/MFAEnableTOTP.tsx
+msgid "Please scan or use the token below in your authenticator app."
+msgstr "กรุณาสแกนหรือพิมพ์ข้อความโทเคนข้างล่างในแอพยืนยันตัวตนของคุณ"
+
+#: components/modal/modals/MFAFlow.tsx
+msgid "Please select a method to authenticate your request."
+msgstr "กรุณาเลือกวิธีการยืนยันตัวตน"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Please select a reason"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Privacy Policy"
+msgstr "นโยบายความเป็นส่วนตัว"
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Private Channel"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Profile"
+msgstr "ประวัติโดยย่อ"
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Profile Bio"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Promotes harm"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Provided email or password is wrong."
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Raid or spam attack"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "React to messages with emoji"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read Message History"
+msgstr "อ่านประวัติข้อความ"
+
+#: components/modal/modals/Changelog.tsx
+msgid "Read More"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Read past messages sent in channels"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "Reason"
+msgstr "เหตุผล"
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Receive notifications while the app is open and in the background."
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardStatus.tsx
+msgid "Reconnecting"
+msgstr ""
+
+#: components/modal/modals/MFAFlow.tsx
+#: components/modal/modals/MFAFlow.tsx
+msgid "Recovery Code"
+msgstr "รหัสกู้คืน"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Reduced"
+msgstr ""
+
+#: components/auth/src/flows/FlowCreate.tsx
+msgid "Register"
+msgstr "สมัครสมาชิก"
+
+#: components/modal/modals/AddBot.tsx
+msgid "Registered since <0/>"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Reject friend request"
+msgstr "ปฏิเสธคำขอเป็นเพื่อน"
+
+#: src/interface/channels/text/TextSearchSidebar.tsx
+msgid "Relevance"
+msgstr "เกี่ยวข้อง"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove all reactions"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Remove Authenticator"
+msgstr "ลบตัวยืนยัน"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove Avatars"
+msgstr "ลบภาพโปรไฟล์"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Remove friend"
+msgstr "ลบเพื่อน"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Remove other members' avatars"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Remove reaction"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+#: components/modal/modals/EditCategory.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+#: components/app/interface/settings/user/Sessions.tsx
+msgid "Rename"
+msgstr ""
+
+#: components/modal/modals/EditCategory.tsx
+#: components/app/menus/CategoryContextMenu.tsx
+msgid "Rename category"
+msgstr ""
+
+#: components/modal/modals/RenameSession.tsx
+msgid "Rename Session"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Rep Stoat using Discord rich presence."
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Reply"
+msgstr "ตอบกลับ"
+
+#: components/ui/components/features/messaging/composition/MessageReplyPreview.tsx
+msgid "Replying to"
+msgstr "ตอบกลับถึง"
+
+#: components/modal/modals/ServerInfo.tsx
+#: components/modal/modals/ReportContent.tsx
+msgid "Report"
+msgstr "รายงาน"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Report message"
+msgstr "รายงานข้อความ"
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Report server"
+msgstr "รายงานเซิร์ฟเวอร์"
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Report user"
+msgstr "รายงานผู้ใช้"
+
+#: components/auth/src/flows/FlowResend.tsx
+msgid "Resend"
+msgstr ""
+
+#: components/auth/src/flows/FlowResend.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Resend verification"
+msgstr "ส่งการยืนยันอีกครั้ง"
+
+#: components/ui/components/utils/Form2.tsx
+#: components/modal/modals/ResetBotToken.tsx
+#: components/modal/modals/MFARecovery.tsx
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset"
+msgstr "รีเซ็ต"
+
+#. placeholder {0}: props.bot.user!.username
+#: components/modal/modals/ResetBotToken.tsx
+msgid "Reset {0}'s token?"
+msgstr ""
+
+#: components/auth/src/flows/FlowReset.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#: components/auth/src/flows/FlowConfirmReset.tsx
+msgid "Reset password"
+msgstr "ตั้งรหัสผ่านใหม่"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Reset Recovery Codes"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Reset Token"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Responsibly disclosed security issues"
+msgstr ""
+
+#: components/app/menus/DraftMessageContextMenu.tsx
+msgid "Retry sending"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Revenge or underage pornography"
+msgstr ""
+
+#: components/modal/modals/PolicyChange.tsx
+msgid "Review policy changes"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "Roadmap"
+#~ msgstr ""
+
+#: components/modal/modals/CreateRole.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+msgid "Role Name"
+msgstr "ชื่อบทบาท"
+
+#: components/ui/components/features/profiles/ProfileRoles.tsx
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "Roles"
+msgstr "บทบาท"
+
+#: components/modal/modals/ServerIdentity.tsx
+#: components/modal/modals/CustomStatus.tsx
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+#: components/app/interface/settings/server/Overview.tsx
+#: components/app/interface/settings/server/roles/ServerRoleEditor.tsx
+#: components/app/interface/settings/channel/Overview.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Save"
+msgstr "บันทึก"
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Save file"
+msgstr ""
+
+#: src/interface/channels/text/Composition.tsx
+msgid "Save to your notes"
+msgstr "บันทึกลงในโน๊ตของคุณ"
+
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/navigation/channels/HomeSidebar.tsx
+#: src/interface/channels/ChannelHeader.tsx
+msgid "Saved Notes"
+msgstr "โน้ตที่บันทึกไว้"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Scams or fraud"
+msgstr ""
+
+#: components/modal/modals/AddBot.tsx
+msgid "Search for groups..."
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+#: components/modal/modals/AddMembersToGroup.tsx
+msgid "Search for users..."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+#~ msgid "See what we're currently working on."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio input"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Select audio output"
+msgstr ""
+
+#: components/modal/modals/CreateGroup.tsx
+msgid "Select members to add"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+msgid "Select your language"
+msgstr "เลือกภาษาของคุณ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send attachments to chat"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "Send email"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send embedded content such as link embeds or custom embeds"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Embeds"
+msgstr "ส่งลิงก์ฝัง"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send Messages"
+msgstr "ส่งข้อความ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channel"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Send messages in channels"
+msgstr ""
+
+#: components/modal/modals/AddFriend.tsx
+msgid "Send Request"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Sending..."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+#: components/ui/components/features/messaging/elements/Container.tsx
+msgid "Sent"
+msgstr ""
+
+#. placeholder {0}: message.attachments!.length
+#: components/client/NotificationsWorker.tsx
+msgid "Sent {0} attachments"
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent an attachment"
+msgstr "ส่งไฟล์แนบ"
+
+#: components/ui/components/features/messaging/elements/MessageReply.tsx
+msgid "Sent multiple attachments"
+msgstr "ส่งไฟล์แนบหลายไฟล์"
+
+#: components/modal/modals/ServerIdentity.tsx
+msgid "Server Avatar"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Banner"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Server Default"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Description"
+msgstr "คำอธิบายเซิร์ฟเวอร์"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Icon"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/EditProfile.tsx
+msgid "Server Identities"
+msgstr ""
+
+#: components/modal/modals/CreateServer.tsx
+#: components/app/interface/settings/server/Overview.tsx
+msgid "Server Name"
+msgstr "ชื่อเซิร์ฟเวอร์"
+
+#: components/app/interface/settings/server/roles/ServerRoleOverview.tsx
+msgid "Server Roles"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Sessions"
+msgstr "เซสชัน"
+
+#: components/modal/modals/CustomStatus.tsx
+msgid "Set your status"
+msgstr ""
+
+#: components/modal/modals/ServerInfo.tsx
+msgid "Settings"
+msgstr "การตั้งค่า"
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup one-time password authenticator"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Setup recovery codes"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/TypingIndicator.tsx
+msgid "Several people are typing…"
+msgstr "ผู้ใช้หลายคนกำลังพิมพ์…"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Share camera or screen in voice call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Show corrections and suggestions as you type."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Show send message button"
+msgstr ""
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Sign into Stoat"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Sign Up"
+msgstr ""
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Silent"
+msgstr ""
+
+#: components/modal/modals/EditEmail.tsx
+msgid "someone@example.com"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Something cool about me..."
+msgstr ""
+
+#. placeholder {0}: err.error
+#: components/i18n/errors.ts
+msgid "Something is wrong with your request, {0}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Something went wrong! {error}"
+msgstr ""
+
+#: components/i18n/errors.ts
+#~ msgid "Something went wrong! Try again later."
+#~ msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "Sounds"
+msgstr "เสียง"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Source Code"
+msgstr "ซอร์สโค้ด"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Spam or similar platform abuse"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Speak"
+msgstr "พูด"
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Spellchecker"
+msgstr ""
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Start the call"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Start with Computer"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileStatus.tsx
+msgid "Status"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+#~ msgid "Stoat Desktop"
+#~ msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Developer"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Stoat for Desktop"
+msgstr ""
+
+#: components/ui/components/features/profiles/ProfileBadges.tsx
+msgid "Stoat Founder"
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime."
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feature suggestion"
+msgstr "ส่งข้อเสนอแนะคุณสมบัติ"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Submit feedback"
+msgstr "ส่งข้อเสนอแนะ"
+
+#: components/app/interface/settings/user/bots/ViewBot.tsx
+msgid "Submit to Discover"
+msgstr ""
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "Subscriptions"
+msgstr ""
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "Suggest new Stoat features on GitHub discussions."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "Support the project by donating - thank you!"
+msgstr "ถ้าอยากสนับสนุนให้ Revolt ก็บริจาคมาได้เลย ขอบคุณนะ!"
+
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "Switch to this voice channel"
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync appearance options, such as chosen emoji pack and message density."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your chosen theme, colours, and any custom CSS."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Sync your currently chosen language."
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "System"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "System message channels"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this server"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Tell us what's wrong with this user"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Temporarily prevent lower-ranking members from interacting"
+msgstr ""
+
+#: components/auth/src/AuthPage.tsx
+msgid "Terms of Service"
+msgstr "ข้อกำหนดในการให้บริการ"
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Text Channel"
+msgstr "ช่องข้อความ"
+
+#: components/i18n/errors.ts
+msgid "That action had no effect."
+msgstr ""
+
+#. placeholder {0}: file.name
+#: src/interface/channels/text/Composition.tsx
+msgid "The file \"{0}\" ({fileSize}) exceeds the maximum size limit of {maxSizeFormatted}."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "The password is too short."
+msgstr ""
+
+#: components/app/interface/settings/user/Sync.tsx
+msgid "Theme"
+msgstr "ธีม"
+
+#: components/i18n/errors.ts
+msgid "This account is not activated! Please check your account's inbox and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This bot is private and can only be added by the creator."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "This channel is about..."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is marked as mature."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This channel is not available in your region while we review options on legal compliance."
+msgstr ""
+
+#: src/interface/channels/AgeGate.tsx
+msgid "This content is not available in your region."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This feature is currently disabled."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This file type is not allowed."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "This group is too large, you can have up to {0} users."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This has already been sent."
+msgstr ""
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your conversation."
+msgstr "นี่คือจุดเริ่มต้นของการสนทนาของคุณ"
+
+#: components/ui/components/features/messaging/elements/ConversationStart.tsx
+msgid "This is the start of your notes."
+msgstr "นี่คือจุดเริ่มต้นของโน้ตของคุณ"
+
+#: components/i18n/errors.ts
+msgid "This message is already pinned."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This message is empty and has not been sent."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This password has previously appeared in security leaks, please use another password."
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "This server is about..."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This user has blocked you."
+msgstr "ผู้ใช้นี้บล็อกคุณ"
+
+#: components/modal/modals/BanNonMember.tsx
+msgid "This user is not part of the server and may already be banned"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is already taken."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "This username is not allowed."
+msgstr ""
+
+#: components/modal/modals/ResetBotToken.tsx
+msgid "This will invalidate the current token and stop any existing instances of the bot from running."
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Timeout Members"
+msgstr "หยุดสมาชิกไว้ชั่วคราว"
+
+#: src/interface/common/CommonHeader.tsx
+msgid "Toggle main sidebar"
+msgstr ""
+
+#: components/app/interface/settings/user/appearance/AppearanceMenu.tsx
+msgid "Tonal Spot"
+msgstr ""
+
+#: components/app/interface/settings/user/Language.tsx
+#: components/app/interface/settings/user/Language.tsx
+msgid "Traditional (DD/MM/YYYY)"
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/picker/GifPicker.tsx
+msgid "Trending GIFs"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Unblock user"
+msgstr "ปลดบล็อกผู้ใช้"
+
+#. placeholder {0}: err.type
+#: components/i18n/errors.ts
+msgid "Uncaught Stoat error: {0}"
+msgstr ""
+
+#: components/markdown/plugins/anchors.tsx
+msgid "Unknown Server"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark as mature"
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Unmark as Mature"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Unmark this channel as mature?"
+msgstr ""
+
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Unmute Channel"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+msgid "Unmute Server"
+msgstr ""
+
+#: components/app/menus/MessageContextMenu.tsx
+msgid "Unpin message"
+msgstr ""
+
+#: components/app/interface/channels/text/DraftMessage.tsx
+msgid "Unsent message"
+msgstr ""
+
+#: components/modal/modals/ReportContent.tsx
+msgid "Unsolicited advertising or spam"
+msgstr ""
+
+#: components/app/menus/ServerContextMenu.tsx
+#: components/app/menus/shared/NotificationContextMenu.tsx
+msgid "Until I turn it back on"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Upload Files"
+msgstr "อัพโหลดไฟล์"
+
+#: components/modal/modals/JoinServer.tsx
+msgid "Use a code or invite link"
+msgstr ""
+
+#: components/app/interface/settings/user/Native.tsx
+msgid "Use the graphics card to improve performance."
+msgstr ""
+
+#: components/app/interface/settings/server/bans/ListBans.tsx
+msgid "User"
+msgstr "ผู้ใช้"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Banned"
+msgstr ""
+
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "User broke a certain rule…"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Joined"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Joined Call"
+msgstr "ผู้ใช้เข้าร่วมการโทร"
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Kicked"
+msgstr ""
+
+#: components/app/interface/settings/server/Overview.tsx
+msgid "User Left"
+msgstr ""
+
+#: components/app/interface/settings/user/Notifications.tsx
+msgid "User Left Call"
+msgstr "ผู้ใช้ออกจากการโทร"
+
+#: components/app/interface/settings/ServerSettings.tsx
+msgid "User Management"
+msgstr "การจัดการผู้ใช้"
+
+#: components/app/interface/settings/UserSettings.tsx
+msgid "User Settings"
+msgstr "การตั้งค่าผู้ใช้"
+
+#: components/modal/modals/ReportContent.tsx
+msgid "User's profile has inappropriate content"
+msgstr ""
+
+#: components/modal/modals/Onboarding.tsx
+#: components/modal/modals/EditUsername.tsx
+#: components/modal/modals/CreateBot.tsx
+#: components/modal/modals/AddFriend.tsx
+#: components/auth/src/flows/Form.tsx
+#: components/app/interface/settings/user/Account.tsx
+msgid "Username"
+msgstr "ชื่อผู้ใช้"
+
+#: components/modal/modals/AddFriend.tsx
+msgid "username#1234"
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will be asked to confirm their age before joining this channel."
+msgstr ""
+
+#: components/app/interface/settings/channel/Overview.tsx
+msgid "Users will be asked to confirm their age before opening this channel."
+msgstr ""
+
+#: components/modal/modals/ChannelToggleMature.tsx
+msgid "Users will no longer be asked to confirm their age before joining this channel.<0/> Please ensure the content is appropriate for all ages."
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default microphone"
+msgstr ""
+
+#: components/app/interface/settings/user/voice/VoiceInputOptions.tsx
+msgid "Using default speaker"
+msgstr ""
+
+#: src/interface/navigation/channels/ServerSidebar.tsx
+msgid "Verified"
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Verifying your account…"
+msgstr "กำลังยืนยันบัญชี…"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/user/Native.tsx
+msgid "Version:"
+msgstr ""
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Video"
+msgstr "ใช้วีดิโอ"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "View Channel"
+msgstr "ดูช่อง"
+
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "View currently active bug reports here."
+msgstr "ดูรายงานบั๊กในปัจจุบันที่นี่"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View members"
+msgstr ""
+
+#: components/modal/modals/Changelog.tsx
+#~ msgid "View older updates"
+#~ msgstr "ดูอัพเดตเก่า"
+
+#: src/interface/channels/ChannelHeader.tsx
+msgid "View pinned messages"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "View Recovery Codes"
+msgstr "ดูรหัสกู้คืน"
+
+#: components/ui/components/features/messaging/bars/JumpToBottom.tsx
+msgid "Viewing older messages"
+msgstr "คุณกำลังดูข้อความเก่า"
+
+#: components/app/interface/settings/UserSettings.tsx
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Voice"
+msgstr ""
+
+#: components/modal/modals/CreateChannel.tsx
+msgid "Voice Channel"
+msgstr "ช่องเสียง"
+
+#: components/app/interface/settings/user/voice/VoiceProcessingOptions.tsx
+msgid "Voice Processing"
+msgstr ""
+
+#: components/app/menus/UserContextMenu.tsx
+msgid "Volume"
+msgstr ""
+
+#: components/app/interface/settings/user/profile/UserProfileEditor.tsx
+msgid "Want to change username?"
+msgstr ""
+
+#: components/auth/src/flows/FlowCheck.tsx
+msgid "We've sent you a verification email. Please allow up to 10 minutes for it to arrive."
+msgstr "เราได้ส่งอีเมล์ยืนยันแล้ว กรุณารออีเมล์ไม่เกิน 10 นาที"
+
+#: components/app/interface/channels/text/Message.tsx
+msgid "Webhook"
+msgstr ""
+
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Icon"
+msgstr ""
+
+#: components/modal/modals/CreateWebhook.tsx
+#: components/app/interface/settings/channel/webhooks/ViewWebhook.tsx
+msgid "Webhook Name"
+msgstr ""
+
+#: components/app/interface/settings/ChannelSettings.tsx
+msgid "Webhooks"
+msgstr "เว็บฮุก"
+
+#: src/interface/Home.tsx
+#: components/auth/src/flows/FlowLogin.tsx
+#~ msgid "Welcome to"
+#~ msgstr "ยินดีต้อนรับสู่"
+
+#: components/auth/src/flows/FlowLogin.tsx
+msgid "Welcome!"
+msgstr "ยินดีต้อนรับ!"
+
+#: components/app/interface/settings/channel/permissions/ChannelPermissionsEditor.tsx
+msgid "Whether other users can edit these settings"
+msgstr ""
+
+#. placeholder {0}: names.join(", ")
+#: components/ui/components/features/voice/callCard/VoiceCallCardPreview.tsx
+msgid "With {0}"
+msgstr ""
+
+#: components/modal/modals/CreateGroupOrServer.tsx
+msgid "Would you like to create a new group or server?"
+msgstr ""
+
+#: components/modal/modals/CreateOrJoinServer.tsx
+msgid "Would you like to create a new server or join an existing one?"
+msgstr ""
+
+#: components/app/interface/settings/user/bots/MyBots.tsx
+msgid "You agree that your bot is subject to the Acceptable Usage Policy."
+msgstr ""
+
+#. placeholder {0}: props.user?.username
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/BanNonMember.tsx
+#: components/modal/modals/BanMember.tsx
+msgid "You are about to ban {0}"
+msgstr ""
+
+#. placeholder {0}: props.member.user?.username
+#: components/modal/modals/KickMember.tsx
+msgid "You are about to kick {0}"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You are banned from this server."
+msgstr ""
+
+#: src/interface/Home.tsx
+msgid "You can also click the gear icon in the bottom left."
+msgstr ""
+
+#: src/interface/Home.tsx
+#~ msgid "You can also right-click the user icon in the top left, or left click it if you're already home."
+#~ msgstr "นอกจากนี้คุณยังสามารถเปิดหน้าตั้งค่าได้ด้วยการคลิกขวาที่ไอคอนผู้ใช้มุมซ้ายบน หรือคลิกซ้ายหากอยู่หน้าจอหลัก"
+
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You can re-open it later, but it will disappear on both sides."
+msgstr "คุณสามารถเปิดใหม่ได้ในภายหลัง แต่ข้อความทั้งหมดของทั้งสองฝ่ายจะหายไป"
+
+#: src/interface/Home.tsx
+#: src/interface/Home.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+#: components/app/interface/settings/user/Feedback.tsx
+msgid "You can report issues and discuss improvements with us directly here."
+msgstr "รายงานปัญหาหรือพูดคุยกับพวกเราโดยตรงได้ที่นี่"
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't be in more than {0} servers, please leave one and try again."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} channels on this server."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You can't have more than {0} emojis on this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot give yourself missing permissions."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot join this call."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot remove yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot report yourself."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You cannot timeout yourself."
+msgstr ""
+
+#: components/modal/modals/SignOutSessions.tsx
+msgid "You cannot undo this action."
+msgstr "คุณยกเลิกการกระทำนี้ไม่ได้"
+
+#. placeholder {0}: props.display
+#: components/modal/modals/LinkWarning.tsx
+msgid "You clicked on \"{0}\""
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You do not have permission to do this."
+msgstr ""
+
+#: components/ui/components/features/messaging/composition/MessageBox.tsx
+msgid "You don't have permission to send messages in this channel."
+msgstr "คุณไม่มีสิทธิ์ที่จะส่งข้อความในช่องนี้"
+
+#: components/i18n/errors.ts
+msgid "You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You have this user blocked."
+msgstr ""
+
+#: components/ui/components/features/voice/VoiceStatefulUserIcons.tsx
+msgid "You muted this user."
+msgstr ""
+
+#: components/auth/src/flows/FlowHome.tsx
+msgid "You were logged out!"
+msgstr ""
+
+#: src/interface/navigation/servers/UserMenu.tsx
+msgid "You will not receive any notifications"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "You won't be able to access your account unless you contact support - however, your data will not be deleted."
+msgstr "คุณจะไม่สามารถใช้บัญชีได้จนกว่าคุณจะติดต่อฝ่ายสนับสนุน - อย่างไรก็ตาม ข้อมูลของคุณจะไม่ถูกลบ"
+
+#: components/modal/modals/LeaveServer.tsx
+#: components/modal/modals/DeleteChannel.tsx
+msgid "You won't be able to rejoin unless you are re-invited."
+msgstr "คุณจะไม่สามารถเข้าร่วมได้อีก เว้นแต่คุณจะได้รับเชิญอีกครั้ง"
+
+#: components/i18n/errors.ts
+msgid "You're already part of this group."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+#: components/i18n/errors.ts
+msgid "You're already part of this server."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've already sent a request to this user."
+msgstr ""
+
+#: components/modal/modals/Invite.tsx
+msgid "You've been invited to join this server.<0/>Would you like to join?"
+msgstr ""
+
+#: components/modal/modals/SignedOut.tsx
+msgid "You've been signed out of Stoat!"
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "You've reached your personal bot limit."
+msgstr ""
+
+#. placeholder {0}: err.max
+#: components/i18n/errors.ts
+msgid "You've sent too many friend requests, the maximum is {0}"
+msgstr ""
+
+#: components/app/interface/settings/user/Account.tsx
+msgid "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
+msgstr ""
+
+#: components/auth/src/flows/FlowVerify.tsx
+msgid "Your account has been verified!"
+msgstr "บัญชีของคุณได้รับการยืนยันแล้ว!"
+
+#: components/i18n/errors.ts
+msgid "Your discriminator change has been ratelimited, please try again later."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your message is too long, please remove some characters and try again."
+msgstr ""
+
+#: components/modal/modals/MFARecovery.tsx
+msgid "Your recovery codes"
+msgstr "รหัสกู้คืนของคุณ"
+
+#: components/i18n/errors.ts
+msgid "Your role ranking is too low to take this action."
+msgstr ""
+
+#: components/i18n/errors.ts
+msgid "Your user has already been created? Try logging in again or refreshing the app."
+msgstr ""
diff --git a/components/i18n/catalogs/tokipona/messages.js b/components/i18n/catalogs/tokipona/messages.js
new file mode 100644
index 0000000..ee4ebff
--- /dev/null
+++ b/components/i18n/catalogs/tokipona/messages.js
@@ -0,0 +1 @@
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"+IJm1Z\":[\"weka tan lukin\"],\"+YFgJi\":[\"sitelen pi suli jan\"],\"+YLOgs\":[\"This message is already pinned.\"],\"+YvyYS\":[\"Until I turn it back on\"],\"+au1ux\":[\"Sign into Stoat\"],\"+bdmu3\":[\"Stoat is one of the best ways to stay connected with your friends and community, anywhere, anytime.\"],\"+s1J8k\":[\"sitelen ni li sin ala\"],\"/4K7+A\":[\"Current Session\"],\"/7l3Ud\":[\"o pali e poki jan\"],\"/FwtWh\":[\"Generate a new token if it gets lost or compromised\"],\"/IX/7x\":[\"Other\"],\"/JJAEu\":[[\"0\"],\" was removed by \",[\"1\"]],\"/LDg0A\":[\"Listen\"],\"/QRdA3\":[\"o weka e ilo ante\"],\"/bZzdR\":[\"Mentions\"],\"/cF7Rs\":[\"Volume\"],\"/cPXPW\":[\"Edit any permissions on the server\"],\"/gaSVU\":[\"Roadmap\"],\"/ovEwK\":[\"o pali e nimi. jan li ken alasa e sina kepeken nimi ni. sina ken ante e ni lon tenpo kama.\"],\"/qQDwm\":[\"mi pali e nimi kama…\"],\"0/BoBb\":[\"Webhook Name\"],\"03Y3fJ\":[\"Join the Stoat Lounge\"],\"06wLxz\":[\"Change your profile per-server\"],\"0Omj69\":[\"You have been locked out for entering a wrong password multiple times. Please wait a couple minutes and try again.\"],\"0S+a+/\":[[\"0\"],\" changed the channel icon\"],\"0gS7M5\":[\"Display Name\"],\"0lcpCZ\":[\"Report message\"],\"0vCLzN\":[\"This server is about...\"],\"0wdd7X\":[\"Join\"],\"0y3xb0\":[\"Share camera or screen in voice call\"],\"1FQ/C2\":[\"No permissions set yet\"],\"1LvYFz\":[\"Harassment or cyberbullying\"],\"1MjXH/\":[[\"usernames\"],\" and \",[\"unknown\"],\" others reacted\"],\"1QyHvD\":[\"Something cool about me...\"],\"1S+lXN\":[\"<0/> joined the server\"],\"1TNIig\":[\"Open\"],\"1Xl18j\":[\"You clicked on \\\"\",[\"0\"],\"\\\"\"],\"1e699+\":[\"Could not find what you requested.\"],\"1hG1IQ\":[\"Raid or spam attack\"],\"1m23cy\":[\"This user is not part of the server and may already be banned\"],\"1m41/U\":[\"Submit feedback\"],\"1njn7W\":[\"Light\"],\"1pIupL\":[\"Sync your chosen theme, colours, and any custom CSS.\"],\"1v5otA\":[\"Give us some detail\"],\"29CYN+\":[\"This bot is private and can only be added by the creator.\"],\"2AKdMl\":[\"Manage Channel\"],\"2AgUnk\":[\"o jo e nanpa pi toki ni lon ilo sama\"],\"2KKpX0\":[\"Mention specific roles\"],\"2LD8h0\":[\"Unpin message\"],\"2cZEKe\":[\"Allow members to change name and avatar per-message\"],\"2gC56n\":[\"o weka tan kulupu\"],\"2gMuHR\":[\"Joined\"],\"2v8IKv\":[\"sina wile toki lon pakala la o toki tawa mi lon ni.\"],\"2wxgft\":[\"Rename\"],\"32TndD\":[\"jan ike\"],\"3H/s4T\":[[\"0\"],\" joined\"],\"3QeDnN\":[\"sina wile kama sin lon tenpo kama la sina wile e nimi kama sin.\"],\"3QuNUr\":[\"jan mute li kama toki…\"],\"3QywKw\":[\"Open channel settings\"],\"3SvY3I\":[\"Already friends with this user.\"],\"3T8ziB\":[\"o pali e sijelo\"],\"3U2WPd\":[\"Contribute a language\"],\"3ZJgwc\":[\"Learn more about how to create bots on Stoat.\"],\"3ZWPSn\":[\"Log Out Other Sessions\"],\"3l/6lF\":[\"Able to access this channel\"],\"3y+d4K\":[\"Kick Member\"],\"4cEClj\":[\"ilo ante lon sijelo\"],\"4hAIF+\":[\"Affects all roles and users\"],\"4hfTrB\":[\"nimi\"],\"4hyK2W\":[\"Read past messages sent in channels\"],\"4nVJo5\":[\"You can also click the gear icon in the bottom left.\"],\"4q8P59\":[\"o kepeken toki sina\"],\"4ri7rI\":[\"Emoji Pack (affects your messages only)\"],\"5/6/hB\":[\"o alasa e kulupu pi ijo musi sina.\"],\"572q5a\":[\"Report user\"],\"57aFOk\":[\"For 24 hours\"],\"5E4aaY\":[\"Your discriminator change has been ratelimited, please try again later.\"],\"5GPcf9\":[\"Mark as unread\"],\"5KHDCi\":[[\"0\"],\" and \",[\"1\"],\" are typing…\"],\"5LQm/a\":[\"Extreme violence, gore or animal cruelty\"],\"5LoIOP\":[[\"0\"],\" changed the channel description\"],\"5UlsjU\":[\"Get a new set of recovery codes\"],\"5bgUxY\":[\"Change Nickname\"],\"5dJK4M\":[\"poki jan\"],\"5gqEFg\":[\"Edit \",[\"0\"],\"'s roles\"],\"5h+qLB\":[\"Don't ask me again for <0>\",[\"0\"],\"0>\"],\"5oopXz\":[\"This feature is currently disabled.\"],\"5thgFk\":[\"User broke a certain rule…\"],\"6/dCYd\":[\"ijo suli\"],\"648NC4\":[\"You will not receive any notifications\"],\"65dxv8\":[\"Send email\"],\"6Aih4U\":[\"lon ala\"],\"6DBrcH\":[\"Ban user\"],\"6MIiOI\":[[\"0\"],\" left\"],\"6SbL0M\":[\"You've already sent a request to this user.\"],\"6YtxFj\":[\"Name\"],\"6qWjm5\":[\"You are about to kick \",[\"0\"]],\"74QJjm\":[\"For 8 hours\"],\"7BiB6a\":[\"Not of minimum age to use the platform\"],\"7CtNua\":[\"<